Answers for "create an empty dataframe with specific columns"

3

create empty pandas dataframe

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

Code answers related to "create an empty dataframe with specific columns"

Python Answers by Framework

Browse Popular Code Answers by Language