How can I add an empty column to my dataframe without introducing a header to it?
I am using pandas to work on a dataframe where I need to add an empty column without any header. I know that by using
df["New_Column_Name"] = ""
(where df is my dataframe) would add an empty column to the df. But, in my case I don't want that "New_Column_Name" there. Thanks.
df[''] = ''. Checkingdf.columnsafter that shows, that a new column has been created.