Answers for "python create empty dataframe with column names"

2

pandas empty dataframe with column names

# Create empty dataframe with column names
df = pd.DataFrame(columns=['dog_name','dog_age']) 
# Create some Lists to populate df
dogNames = ['Blue','Atticus'] 
dogAges = [2,8] 
# loop through the lists
for n in range(0,1): 
	df.loc[n] = [dogNames[n], dogAges[n]]
Posted by: Guest on August-21-2021
3

create empty pandas dataframe

df = pd.DataFrame(columns=['a', 'b', 'c'])
Posted by: Guest on September-21-2020

Code answers related to "python create empty dataframe with column names"

Python Answers by Framework

Browse Popular Code Answers by Language