Answers for "python dataframe sort by index"

3

sort by index pandas

>>> df = pd.DataFrame([1, 2, 3, 4, 5], index=[100, 29, 234, 1, 150],
...                   columns=['A'])
>>> df.sort_index()
     A
1    4
29   2
100  1
150  5
234  3
Posted by: Guest on June-02-2021
-1

pandas sort dataframe by index

df.sort_index()
Posted by: Guest on December-11-2020
0

how to sort the dataframe in python by axis

import pandas as pd
import numpy as np

unsorted_df = pd.DataFrame(np.random.randn(10,2),index=[1,4,6,2,3,5,9,8,0,7],colu
   mns = ['col2','col1'])

sorted_df=unsorted_df.sort_index()
print sorted_df
Posted by: Guest on August-21-2020
0

pandas order dataframe by index of other dataframe

df2 = df2.reindex(df1.index) # reorder df2 by index of df1
Posted by: Guest on June-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language