I have a dataset in a folder and I would like to acceed to one of the contained variable just like R
allows to do that via the following equivalent syntax:
dataset[dataset$name_of_interested_variable,]
or
dataset1 = dataset%>%
select(name_of_interested_variable)
Can anyone elucidate how to do the same with Python