📜  从 df 中选择特征和标签 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.011000             🧑  作者: Mango

代码示例1
#Select the features and labels
features=df.loc[:,df.columns!='label'].values[:,1:]
labels=df.loc[:,'label'].values