标签: r dataframe
我在R中的数据框中工作,我想访问数据帧中特定列的最后5个对象。我该怎么做?
答案 0 :(得分:3)
一个选项是tail(dataframe$column, 5)
tail(dataframe$column, 5)