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
Convert the series to a dataframe and transpose it, then append normally.
srs = srs.to_frame().T df = df.append(srs)