reverse pd based on index

Solutions on MaxInterview for reverse pd based on index by the best coders in the world

showing results for - "reverse pd based on index"
Filippo
11 Feb 2016
1data.iloc[::-1]
2
Lilya
27 Aug 2017
1data.reindex(index=data.index[::-1])
2