将数字向量转换为标准单位向量的函数
是否有一个函数,给定一个数字向量,返回另一个向量,其中每个值都有对应的标准单位?
其中标准单位:一个值与平均值相差多少个 SD
示例:
x <- c(1,3,4,5,7) # note: mean = 4, sd = 2
foo(x)
[1] -1.5 -0.5 0.0 0.5 1.5
这个虚构的“foo”函数是否已包含在包中?
Is there a function that given a vector of numbers, returns another vector with the standard units corresponding to each value?
where standard unit: how many SDs a value is + or - from the mean
Example:
x <- c(1,3,4,5,7) # note: mean = 4, sd = 2
foo(x)
[1] -1.5 -0.5 0.0 0.5 1.5
Is this fictitious "foo" function already included in a package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,
scale()
:yes,
scale()
:您正在寻找的函数是
scale
。请注意,答案与您在问题中发布的内容不同。原因是 x 的标准差实际上是 2.23,而不是 2。
The function you are looking for is
scale
.Note that the answers are not identical to what you posted in your question. The reason is that the standard deviation in your x is actually 2.23, not 2.
简单地
(x-mean(x))/sd(x)
怎么样,或者我在这里错过了一些微妙之处吗?How about simply
(x-mean(x))/sd(x)
, or am I missing some subtlety here?