为什么人们在 R 中使用括号包围函数和赋值?

问题描述 投票:0回答:1

最近我见过几个这样的例子:

(NCORES <- nb_cores())

或者:

(ldsc <- with(df_beta, snp_ldsc(ld, ld_size = nrow(map_ldref),
                                chi2 = (beta / beta_se)^2,
                                sample_size = n_eff,
                                ncores = NCORES)))

为什么人们使用外括号?

r parentheses
1个回答
0
投票

像这样将 R 代码括在括号中

(NCORES <- nb_cores())
确保函数
nb_cores()
的输出既分配给变量
NCORES
又打印到 R 控制台。

© www.soinside.com 2019 - 2024. All rights reserved.