r语言 如何将数据标准化

2024年11月18日 04:44
有2个网友回答
网友(1):

您好,这个语句就可以:
scale(data, center=T,scale=T),由于默认值均为T,简写成scale(data)即可标准化,data就是你导入的数据集的名称

网友(2):

x = rnorm(100)
x_standard = scale(x)