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

これを試して:

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 に答える
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 に答える