R中的质量变量声明和赋值?

时间:2012-11-14 18:05:22

标签: r variable-assignment

道歉,如果这是一个愚蠢的问题 - 但这是我第一次尝试使用R,我最终写了一些代码:

some <- vector('list', length(files))
thing <- vector('list', length(files))
and <- vector('list', length(files))
another <- vector('list', length(files))
thing <- vector('list', length(files))

R中有更好的(DRY)方法吗?

要改写,我想一次为多个变量分配相同的值(根据@Sven Hohenstein的回答)

1 个答案:

答案 0 :(得分:17)

如果要一次为多个变量分配相同的值,请使用:

some <- thing <- and <- another <- thing <- vector('list', length(files))