R中如何给变量赋值?

发布于 2024-12-10 10:39:36 字数 357 浏览 1 评论 0原文

我有:

for ( i in 1 :10){
    d= read.delim(paste("try",i,".txt",sep=""),head=T)
    assign(paste("try",i,sep=""),d)
}

然后我的代码中有 try1-try10

我想使用 try1-10:

if( j ==1){ myVar=try$j}

所以我的问题是:如何将 myVar 分配给 try$j ? ? (paste("try",j,sep="") 不起作用)

I have:

for ( i in 1 :10){
    d= read.delim(paste("try",i,".txt",sep=""),head=T)
    assign(paste("try",i,sep=""),d)
}

then I have try1-try10

later in my code I want to use try1-10:

if( j ==1){ myVar=try$j}

So my Question is: how can I assign myVar to try$j ?? (paste("try",j,sep="") does not work)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你不是我要的菜∠ 2024-12-17 10:39:36

请参阅相关问题和答案,此处:处理 R 中的重复任务

基本上,不要在工作区中放置多个数据框,而是将它们组合成一个数据框列表。然后你可以使用循环、lapply 等,而不必跳过语法圈。

See related question and answer, here: Dealing with repetitive tasks in R

Basically, instead of having multiple data frames in your workspace, combine them into a list of data frames. Then you can use loops, lapply, etc without having to jump through syntactic hoops.

忆伤 2024-12-17 10:39:36

你真正想要的是:

try = list()
for ( i in 1 :10){
    d= read.delim(paste("try",i,".txt",sep=""),head=T)
    try[[i]] = d
}

那么

if(j==1){ myVar=try[[j]]}

或者,因为 j==1 无论如何:

if(j==1){ myVar=try[[1]]}

简单!

What you really want is:

try = list()
for ( i in 1 :10){
    d= read.delim(paste("try",i,".txt",sep=""),head=T)
    try[[i]] = d
}

Then

if(j==1){ myVar=try[[j]]}

or, since j==1 anyway:

if(j==1){ myVar=try[[1]]}

simples!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文