No Errors with Transpose Function and No Change In Result

No Errors with Transpose Function and No Change In Result

I am having difficulty making use of a transpose functions made available
through pandas and scipy:
My issue is that I am saving to a csv file in a single column with several
rows, when in fact it should be the other way around (several columns and
a single row).
Here is what I am working with (an average of values based on a pandas
setup - "pd"):
mid =
pd.read_csv("Experiment12.csv",usecols=[0,1,2],skiprows=[0,1,2,3,4,5,6,7]).mean()
Do the functions like mid.T work on pandas?
I receive no errors and when checking the results nothing has changed, I
still have the single column with all the values in rows.
Thanks for any insight.