👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.
How to create an empty dataframe with Pandas / Python?
In Python, to create an empty dataframe with Pandas simply call pd.DataFrame()
:
import pandas as pd
my_Dataframe = pd.DataFrame()