I have some data I\'m trying to organize into a DataFrame in Pandas. I was trying to make each row a Series and append it to the Da
DataFrame
Pandas
Series
Da
DataFrame.append does not modify the DataFrame in place. You need to do df = df.append(...) if you want to reassign it back to the original variable.
df = df.append(...)