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