R - 打印前五行矢量

时间:2015-11-02 04:36:58

标签: r printing rows head combn

   grade = c(75, 66, 63, 66, 73, 64, 63, 63, 72, 60, 66, 61, 68, 66, 66, 71, 60, 68, 67, 64, 71, 77, 70, 71, 60, 68, 68, 60, 71, 76)
   samples = combn(grade,7) 
   first_five = head(samples, n=5)

我需要R打印出前五个样本(即出现的"等级"前五个组合)。我该如何让R做到这一点?

通过输入上面的代码,显然它就像输出整个向量一样(即不输出五行(每个都有一个组合)就像它应该)。

编辑:对不起它应该更清楚:我正在尝试输出前五个ROWS。

如果我这样做:

   samples[,1:5]

我获得了第一个SEVEN行,但我需要五行:

1 个答案:

答案 0 :(得分:1)

  > samples = combn(grade,7)
  > samples = t(samples) # this missing. 
  > head(samples,5)