Home > front end >  How to read all unnamed column on dataframe?
How to read all unnamed column on dataframe?

Time:01-12

I have dataframe value data like this

    acolumn     bcolumn
70  0.503462    0.6
71  0.480712    0.5
72  0.505440    0.5
73  0.553907    0.5
74  0.344214    0.5

How to read the first unnamed column at dataframe? I already tried using iloc(), columns[0] and still the output is acolumn, I want the output is like this

70, 71, 72, 73, 74

I want to use that data to labelling my graph at my website.

CodePudding user response:

I think what you want is the index of the dataframe.

Try:

df.index

Cheers.

  • Related