Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単一行の pandas DataFrame があります。
10 20 30 70 data1: 2.3 5 6 7
フレームのインデックスを再作成して、列の値 (10、20、30、70) がインデックス値になり、データが列になるようにします。
data1: 10 2.3 20 5.0 30 6.0 70 7.0
どうすればこれを達成できますか?
転置( T) メソッドを探しています。
T
In [11]: df Out[11]: 10 20 30 70 data1: 2.3 5 6 7 In [12]: df.T Out[12]: data1: 10 2.3 20 5.0 30 6.0 70 7.0