1

使用包earth,我有许多模型,我想通过索引号调用模型。

我尝试过使用列表,但这不起作用。

a <- list(a)
a[1] <- earth(Volume ~ ., data = trees1)
a[2] <- earth(Volume ~ ., data = trees2)
a[3] <- earth(Volume ~ ., data = trees3)

我会很感激你的帮助。

4

2 回答 2

1
 x<-1:5
 y<-1:5
 a<-lm(x~y)
 b<-lm(y~x)
 mylist<-list(a,b)
 mylist
于 2012-05-10T15:27:18.373 回答
1

试试这个:

a <- list(a)
a[[1]] <- earth(Volume ~ ., data = trees1)
a[[2]] <- earth(Volume ~ ., data = trees2)
a[[3]] <- earth(Volume ~ ., data = trees3)

您通常也希望使用“[[”访问内容。

于 2012-05-10T15:48:17.407 回答