Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python empty dataframe

# Create Empty DataFrame with column names
df = pd.DataFrame(columns=['species','name','age'])
df.loc[1] = ['dog','Fido','3']  # Populate Row at index 1 (row 1)
df.loc[2] = ['cat','Felix','2'] # Populate Row at index 2 (row 2)
print(df) 
Source by pandas.pydata.org #
 
PREVIOUS NEXT
Tagged: #python #empty #dataframe
ADD COMMENT
Topic
Name
5+7 =