Pandas select columns by name code example
Example 1: python - subset specific columns name in a dataframe
columns = ['b', 'c']
df1 = pd.DataFrame(df, columns=columns)
Example 2: how to pick out separate columns from the pandas dataframe object
df1 = df.iloc[:, 0:2]
df1 = df[['a', 'b']]
Example 3: python: select specific columns in a data frame
df = df[["Column_Name1", "Column_Name2"]]
Example 4: pandas iloc select certain columns
dataframe.iloc[:,[1,2]]
Example 5: python select columns names from dataframe
import pandas as pd
data = pd.read_csv("nba.csv")
for col in data.columns:
print(col)
Example 6: pandas reorder columns by name
df.columns
Index(['A', 'B', 'C', 'D'],dtype='***')
new_col = ['D','C','B','A']
df = df[new_col]
df.columns
Index(['D', 'C', 'B', 'A'],dtype='***')