1

Grateful for your help. Sorry, could not figure this out as I wasn't sure if I'm pivoting or unstacking.

My data looks like this:

Email Col1 Col2 Col3
si@si A 2 D
ad@ad A 5 C

I'm looking to pivot this to:

si@si ad@ad
Col1 A A
Col2 2 5
Col3 D C

Thanks so much!

1 Answer 1

1

Transpose the dataFrame.

df.set_index('Email').rename_axis(None).T 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.