保理线性模型 - 用一个因子创建lm

时间:2015-10-15 08:13:13

标签: r lm factoring

此问题是this one的更具体和简化的版本。

我使用的数据集对于单lmspeedlm计算来说太大了。
我想将我的数据集拆分成较小的部分,但在这样做时,一列(或多列)只包含一个factor
下面的代码是重现我的例子的最小值。在问题的底部,我将为感兴趣的人提供我的测试脚本。

library(speedglm)

iris$Species <- factor(iris$Species)
i <- iris[1:20,]
summary(i)
speedlm(Sepal.Length ~ Sepal.Width + Species , i)

这会给我带来以下错误:

Error in `contrasts<-`(`*tmp*`, value = contr.funs[1 + isOF[nn]]) : 
  contrasts can be applied only to factors with 2 or more levels

我试图将iris$Species分解,但没有成功。我现在还不知道如何解决这个问题。

如何将Species纳入模型? (不增加样本量)

编辑:
我知道我只有一个级别:&#34; setosa&#34;但我仍然需要将它包含在线性模型中,因为我最终会用更多因素更新模型,如下面的示例脚本中所示

对于那些感兴趣的人,这里是我将用于实际数据集的示例脚本:

library(speedglm)

testfunction <- function(start.i, end.i) {
  return(iris[start.i:end.i,])
}

  lengthdata <- nrow(iris)
  stepsize <- 20

## attempt to factor
  iris$Species <- factor(iris$Species)

## Creates the iris dataset in split parts
  start.i <- seq(0, lengthdata, stepsize)
  end.i   <- pmin(start.i + stepsize, lengthdata)

  dat <- Map(testfunction, start.i + 1, end.i)

## Loops trough the split iris data
  for (i in dat) {
    if (!exists("lmfit")) {
      lmfit  <- speedlm(Sepal.Length ~ Sepal.Width + Species , i)
    } else if (!exists("lmfit2")) {
      lmfit2 <- updateWithMoreData(lmfit, i)
    } else {
      lmfit2 <- updateWithMoreData(lmfit2, i)
    }
  }
  print(summary(lmfit2))

1 个答案:

答案 0 :(得分:1)

可能有更好的方法,但如果重新排序行,每个拆分将包含更多级别,因此不会导致错误。我创建了一个随机订单,但您可能希望采用更系统的方式。

library(speedglm)

testfunction <- function(start.i, end.i) {
    return(iris.r[start.i:end.i,])
}

lengthdata <- nrow(iris)
stepsize <- 20

## attempt to factor
iris$Species <- factor(iris$Species)

##Random order
set.seed(1)
iris.r <- iris[sample(nrow(iris)),]

## Creates the iris dataset in split parts
start.i <- seq(0, lengthdata, stepsize)
end.i   <- pmin(start.i + stepsize, lengthdata)

dat <- Map(testfunction, start.i + 1, end.i)

## Loops trough the split iris data
for (i in dat) {
    if (!exists("lmfit")) {
        lmfit  <- speedlm(Sepal.Length ~ Sepal.Width + Species , i)
    } else if (!exists("lmfit2")) {
        lmfit2 <- updateWithMoreData(lmfit, i)
    } else {
        lmfit2 <- updateWithMoreData(lmfit2, i)
    }
}
print(summary(lmfit2))

修改 您可以使用模数除法以系统方式生成spred out索引向量,而不是随机顺序:

spred.i <- seq(1, by = 7, length.out = 150) %% 150 + 1
iris.r <- iris[spred.i,]