pandas.DataFrame.T#
- property DataFrame.T[源代码]#
DataFrame 的转置。
- 返回:
- DataFrame
转置后的 DataFrame。
参见
DataFrame.transpose
转置索引和列。
例子
>>> df = pd.DataFrame({"col1": [1, 2], "col2": [3, 4]}) >>> df col1 col2 0 1 3 1 2 4
>>> df.T 0 1 col1 1 2 col2 3 4
DataFrame 的转置。
转置后的 DataFrame。
参见
DataFrame.transpose
转置索引和列。
例子
>>> df = pd.DataFrame({"col1": [1, 2], "col2": [3, 4]})
>>> df
col1 col2
0 1 3
1 2 4
>>> df.T
0 1
col1 1 2
col2 3 4