生成表格
要求
1 元素类型不一致 所以不能用np.array
2 设置列名 由于默认按行输入 所以必须先设置行名再转置
3 不使用字典来设置列名
代码示例
my_tuple = (
range(3),
[True, False, True]
)
len_my_tuple = len(
my_tuple
)
list_len = ['col' + str(i) for i in range(len_my_tuple)]
my_df = pd.DataFrame(
data=my_tuple,
index=list_len
).T
my_df
标签:表格,tuple,转置,True,数据类型,len,df,my
From: https://blog.51cto.com/u_16055028/7009141