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.
R中参数的含义是什么~.?
~.
例如plot(~.,xyz..)
plot(~.,xyz..)
我已经看到这个论点在各种情况下多次使用,并且由于很难在 google 上有意义地搜索符号,所以我几乎没有成功。
这是一个公式,用简写表示。尝试这个:
plot( mpg ~ cyl, data= mtcars )
左手是因变量,右手是自变量。很像 y = bx + c 意味着 y ~ x。
公式是 R 的基石之一,您需要了解它们才能有效地使用 R。最常见的是,公式用于各种建模,例如,您可以使用
lm( mpg ~ wt, data= mtcars )
...查看每加仑行驶里程如何取决于重量。看看?formula更多的解释。
?formula
点表示“数据中未使用的任何列”。谷歌“R 公式”以获取更多信息。