标签: python dataframe data-science rfe
我正在尝试理解代码。
col = X_train.columns[rfe.support_] gives the indices of the columns.
在下面的代码X_train[col]中给出一个数据框。我不明白col是索引列表而不是列表本身如何传递给X_train? df[]可以使用列表或数组,但不能使用索引。
X_train[col]
col
X_train
df[]