如何使df [['col1']]系列化

时间:2018-12-18 13:56:09

标签: python pandas

d = {'col1': [33,34], 'col2': [5,6]}
d1 = {'col1': [33,34], 'col2': [5,6]}
df = pd.DataFrame(data=d)
type(df[['col1']])

上面的类型是一个数据框,我怎样才能使它成为变化最小的系列?

1 个答案:

答案 0 :(得分:1)

使用单个[]。

type(df['col1'])

输出:

pandas.core.series.Series