Create Empty pandas DataFrame in Python (2 Examples) | Initialize 0 Rows with & without Column Names

Published: 27 February 2023
on channel: Statistics Globe
307
10

How to initialize an empty DataFrame in the Python programming language. More details: https://statisticsglobe.com/create-em...
Python code of this video:

import pandas as pd # Load pandas

data_1 = pd.DataFrame() # Create empty DataFrame
print(data_1) # Print empty DataFrame
Empty DataFrame
Columns: []
Index: []

data_2 = pd.DataFrame(columns = ["x1", "x2", "x3"]) # Create empty DataFrame with column names
print(data_2) # Print empty DataFrame with column names
Empty DataFrame
Columns: [x1, x2, x3]
Index: []

Follow me on Social Media:
Facebook – Statistics Globe Page:   / statisticsglobecom  
Facebook – R Programming Group for Discussions & Questions:   / statisticsglobe  
Facebook – Python Programming Group for Discussions & Questions:   / statisticsglobepython  
LinkedIn – Statistics Globe Page:   / statisticsglobe  
LinkedIn – R Programming Group for Discussions & Questions:   / 12555223  
LinkedIn – Python Programming Group for Discussions & Questions:   / 12673534  
Twitter:   / joachimschork  

Music by bensound.com


Watch video Create Empty pandas DataFrame in Python (2 Examples) | Initialize 0 Rows with & without Column Names online, duration hours minute second in high quality that is uploaded to the channel Statistics Globe 27 February 2023. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 307 times and liked it 10 visitors.