行和未正确添加?

时间:2018-09-12 09:07:48

标签: r

我有一个存在缺席数据库,其中包含一堆零和一,但是当我使用rowums时,它似乎只计算一部分数据,然后停止。这是我的代码

site_matrix=read.csv("TriassicMatrix1.csv", header=T) # create object called site_matrix
summary(site_matrix) # get summary
head(site_matrix) # check out first few columns
tail(site_matrix) # check out last few columns
View(site_matrix) # take a look at whole dataset in new window

# here's the problematic line 

spp_rich=rowSums(site_matrix [,2:25]) # generate richness for sites

有25行数据,它给了我错误的输出,例如建议第一行只有7次出现,而只有7次出现。

我尝试将其更改为[,1,25],但由于第1行是我的标题行,因此它不起作用,所以我知道不是那样。当我查看R内的数据时,由于只有几百列,因此我可以轻松地转到第2行并计算出数据。

它似乎在列的一半处“截止”。

0 个答案:

没有答案