我有一个存储索引值的变量。我正在尝试根据存储在此变量中的值来过滤数据框。
以下是值的显示方式:
var = 2 <-- this stores the value for the variable. Now I am trying to create a copy of the Dataframe with only this column.
以下是我的数据框的显示方式:
0,1,2,3,4
apple,4,3,4,5
orange,3,4,5,6
bananas,5,3,5,6
由于变量值为var = 2
,因此我试图创建仅具有第二列的新数据框。以下是预期的输出:
2
3
4
3