I realize Dataframe takes a map of {\'series_name\':Series(data, index)}. However, it automatically sorts that map even if the map is an OrderedDict().
Is there a simpl
You can first create an empty DataFrame and then use append() to it.
append()
df = pd.DataFrame()
then:
df = df.append(list_series)
I also like to make sure the previous script that created list_series won't mess my dataframe up:
df.drop_duplicates(inplace=True)