Answers for "extract columns from pandas dataframe"

0

extract one column from dataframe python

import pandas as pd

input_file = "C:\\....\\consumer_complaints.csv"
dataset = pd.read_csv(input_file)
df = pd.DataFrame(dataset)
cols = [1,2,3,4]
df = df[df.columns[cols]]
Posted by: Guest on October-24-2020
7

select columns pandas

df1 = df.iloc[:,0:2] # Remember that Python does not slice inclusive of the ending index.
Posted by: Guest on April-02-2020

Code answers related to "extract columns from pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language