-1
How do I display this df in reverse order ? I did the inversion by the index, but only the index reversed, the data of the dates without inversion remained in the same position. Basically I want to display the df from bottom to top, in the reverse order of the image, so the graphics will come out the way I want.
Use the
df.sort_index()
ordf.sort_index(ascending=False)
– Paulo Marques