パッケージearthを使用して、いくつかのモデルがあり、インデックス番号でモデルを呼び出したいと思います。
リストを使用しようとしましたが、これは機能しません。
a <- list(a)
a[1] <- earth(Volume ~ ., data = trees1)
a[2] <- earth(Volume ~ ., data = trees2)
a[3] <- earth(Volume ~ ., data = trees3)
あなたの助けに感謝します。
パッケージearthを使用して、いくつかのモデルがあり、インデックス番号でモデルを呼び出したいと思います。
リストを使用しようとしましたが、これは機能しません。
a <- list(a)
a[1] <- earth(Volume ~ ., data = trees1)
a[2] <- earth(Volume ~ ., data = trees2)
a[3] <- earth(Volume ~ ., data = trees3)
あなたの助けに感謝します。
これを試して:
a <- list(a)
a[[1]] <- earth(Volume ~ ., data = trees1)
a[[2]] <- earth(Volume ~ ., data = trees2)
a[[3]] <- earth(Volume ~ ., data = trees3)
通常は、"[[" を使用してコンテンツにアクセスすることもできます。
x<-1:5
y<-1:5
a<-lm(x~y)
b<-lm(y~x)
mylist<-list(a,b)
mylist