0

我有平均发芽数据(每个 n=50 种子的 3 个重复),我正在重新安排这些数据以适应 R 包 DRC 中的事件时间模型(Ritz et al. 2013)。我的一些计数变为负数,我认为这就是为什么当我尝试使用 drm 功能时出现错误的原因。为什么计数是负数,这是我的 drm 错误背后的问题吗?

使用繁缕数据集似乎可以正常工作。

library(drc)

# Data
time<-c(6, 19, 33, 47, 62, 75, 89)
count<-c(0, 1.66, 3.33, 1.33, 0, 0, 0)
data<-data.frame(time, count)

#From Ritz (2013)
germ <- data.frame(start = c(0, data$time), end = c(data$time, Inf)) 
germ$count <- c(0, diff(data$count), 50 - tail(data$count, 1))
head(germ)
tail(germ)

## Fitting the event-time model (by specifying the argument type explicitly)
germ.m1 <- drm(count~start+end, data = germ, fct = LL.3(), type = "event")
summary(germ.m1)

我预计所有计数都是正数,但有几个是负数。非常感谢任何帮助!

4

1 回答 1

0

我不知道这个问题,但我确实找到了一个简单(但也许很笨拙)的解决方案。

# Same as in question
germ <- data.frame(start = c(0, data$time), end = c(data$time, Inf))

# Substitute for germ$count from question
cnt <- c(data$count) # cnt = count
rem<-50-sum(data$count) # 50 = number of seeds sown; 
                        # rem = remainder(# of seeds that did not germinate)
germ$count<-c(cnt, rem)

通过这项工作,计数结果全部为正,模型已安装!!!

于 2019-03-08T21:21:56.460 回答