I created a Series object.
for index, entry in a_data_frame.iterrows():
...
Then I would like to concatenate this series to a new/another data frame. My goal is to build up the new data frame based on some unique recombination of the rows in the previous one.
a_new_frame = pandas.concat((a_new_frame, a_series))
The series will be appended to the end of the columns disregarding the value of the axis parameter.
Why?