rescale(scales)
rescale()所属R语言包:scales
Rescale numeric vector to have specified minimum and maximum.
重缩放数值向量所指定的最小值和最大值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Rescale numeric vector to have specified minimum and maximum.
重缩放数值向量所指定的最小值和最大值。
用法----------Usage----------
rescale(x, to = c(0, 1), from = range(x, na.rm = TRUE))
参数----------Arguments----------
参数:x
numeric vector of values to manipulate.
数值向量的值来操作。
参数:to
output range (numeric vector of length two)
输出范围(数字向量长度2)
参数:from
input range (numeric vector of length two). If not given, is calculated from the range of x
输入范围(数字矢量的长度为2)。如果没有给出,计算从x的范围
实例----------Examples----------
rescale(1:100)
rescale(runif(50))
rescale(1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|