Answers for "pandas read a csv file in collumns"

0

Column names reading csv file python

import pandas as pd
df = pd.read_csv('file.csv', names=['a', 'b', 'c'], header=None)
df.rename(columns = {'a':'A', 'b':'B', 'c':'C'}, inplace = True) 
df.to_csv('file.csv')
Posted by: Guest on October-30-2020
12

pandas read csv

import pandas as pd
cereal_df = pd.read_csv("/tmp/tmp07wuam09/data/cereal.csv")
cereal_df2 = pd.read_csv("data/cereal.csv")

# Are they the same?
print(pd.DataFrame.equals(cereal_df, cereal_df2))
Posted by: Guest on October-14-2020
2

read a csv file in pandas

you should be in the same dir as .py file 

df = pd.read_csv('your_file_name.csv')
Posted by: Guest on May-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language