nonplebe
0
Q:

drop the first column pandas

>>>df = pd.DataFrame(np.arange(12).reshape(3, 4), 
                     columns=['A', 'B', 'C', 'D'])
>>>df
   A  B   C   D
0  0  1   2   3
1  4  5   6   7
2  8  9  10  11

>>> df.drop(['B', 'C'], axis=1)
   A   D
0  0   3
1  4   7
2  8  11

OR

>>> df.drop(columns=['B', 'C'])
   A   D
0  0   3
1  4   7
2  8  11
16
df.drop(columns=['B', 'C'])
4
df = df.drop(df.columns[[0, 1, 3]], axis=1)  # df.columns is zero-based pd.Index 
0
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)
0
del df['column_name']
0
df.set_index['column'] # column refers to column to be set as index
-1

New to Communities?

Join the community