道歉,如果这是一个愚蠢的问题 - 但这是我第一次尝试使用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的回答)
答案 0 :(得分:17)
如果要一次为多个变量分配相同的值,请使用:
some <- thing <- and <- another <- thing <- vector('list', length(files))