È possibile aggiungere a un data frame vuoto che non contiene indici o colonne?
Ho provato a farlo, ma continuo a ottenere un dataframe vuoto alla fine.
per esempio
df = pd.DataFrame()
data = ['some kind of data here' --> I have checked the type already, and it is a dataframe]
df.append(data)
Il risultato è questo:
Empty DataFrame
Columns: []
Index: []
newDF = pd.DataFrame() #creates a new dataframe that's empty newDF = newDF.append(oldDF, ignore_index = True) # ignoring index is optional