Skip to content
Prev 85708 / 398506 Next

How to get all the data in a specific column from a dataframe?

test_frame[,"col3"]

or

subset(test_frame, select = col3)
Vincent Deng wrote: