如何循环浏览值列表并将其添加到代码的指定区域中?
我有一个字符串值列表,
c("String1","String2","String3")
如何创建一个循环或使用lapply将列表值添加到我希望将其添加到的代码区域中的列表?
DataFrame_String1<- DataFrame %>%
filter(.,ID=="String1")
DataFrame_String2<- DataFrame %>%
filter(.,ID=="String2")
DataFrame_String3<- DataFrame %>%
filter(.,ID=="String3")
请注意,列表中的值添加在数据框的标题和ID部分中。
I have a list of string values
c("String1","String2","String3")
How do I create a loop or using lapply that would add the list values into areas of the code I want them to be added to?
DataFrame_String1<- DataFrame %>%
filter(.,ID=="String1")
DataFrame_String2<- DataFrame %>%
filter(.,ID=="String2")
DataFrame_String3<- DataFrame %>%
filter(.,ID=="String3")
Note that the values in the list are added in the title of the dataframe and in the ID section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我们需要一个循环,则使用
lapply
或purrr :: map
将其保存在
list
中可能是更好的选择。但是,我们可以从命名list
中使用list2env
创建对象。If we need a loop, then loop over the vector with
lapply
orpurrr::map
It may be better to keep it in a
list
. But, we can create objects withlist2env
from a namedlist