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