熊猫:如何通过变量(列)将数据帧拆分为两个数据帧?

时间:2017-09-29 03:31:20

标签: python pandas

我的数据框有列"权重"," Rank","国家/#34;和"年龄",......和几个更多列,我需要将数据帧拆分为连续变量列(即权重,年龄)和离散变量列。

我希望按列名将数据帧划分为两个独立的数据帧。 这可能吗?

1 个答案:

答案 0 :(得分:0)

df = #your dataframe

df1 = df[['Weight','Age']].copy()

df2 = df[['Rank','Country']].copy()