This is the image which i have generated using iplot in python
How can i show the corresponding data element name , when i am using iplot function . I have used the following commmand to create the plot
data_f = pd.DataFrame({'Third':val , 'Fourth':val2 , 'Sixth':val3 } )
data_f.iplot( )
Here val,val2,val3 are the Pandas.Series and the corresponding columns are 'Third' , 'Fourth' , 'Sixth' , and for these columns corresponding to the roll number of each student, i want to plot the graph using iplot , showing roll number instead of series of [1,2,3,.. ] in x -axis The corresponding roll numbers are present as series as roll_series.
Thank you in advance for help