Answers for "create a new dataframe with column names"

2

initialize pandas dataframe with column names

column_names = ["a", "b", "c"]
df = pd.DataFrame(columns = column_names)
Posted by: Guest on October-19-2020
7

create dataframe with column names pandas

In [4]: import pandas as pd
In [5]: df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])
In [6]: df
Out[6]:
Empty DataFrame
Columns: [A, B, C, D, E, F, G]
Index: []
Posted by: Guest on May-15-2020

Code answers related to "create a new dataframe with column names"

Python Answers by Framework

Browse Popular Code Answers by Language