Answers for "how to move column name dataframe python"

10

change column name df

>>> df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
>>> df.rename(columns={"A": "a", "B": "c"})
   a  c
0  1  4
1  2  5
2  3  6
Posted by: Guest on February-29-2020
8

how to move a column in pandas dataframe

df = df.reindex(columns=column_names)
Posted by: Guest on August-20-2020

Code answers related to "how to move column name dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language