Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在遗传学包中找到了这样一行:
P <- D <- Dprime <- nobs <- chisq <- p.value <- corr <- R.2 <- P
noteP位于开头和结尾。这是什么意思?
P
此构造将 s 的值分配给具有 sP字符串中给定的每个其他名称的变量<-。该分配将在当前环境中进行。
<-
P因此,如果最右边命名的变量不在P当前环境中,则会在当前环境中创建一个新变量。
要查看实际情况,请从新的 R 会话中运行以下命令:
ls() # character(0) mean <- a <- b <- mean ls() # [1] "a" "b" "mean"