r语言对dataframe的列标准化
时间: 2023-09-27 10:11:15 浏览: 144
数据标准化
可以使用scale()函数对dataframe的列进行标准化。
例如,假设有一个名为df的dataframe,其中有两列x和y:
```
df <- data.frame(x = c(1, 2, 3), y = c(4, 5, 6))
```
可以使用scale()函数对这两列进行标准化:
```
df_scaled <- as.data.frame(scale(df))
```
这将创建一个新的dataframe df_scaled,其中x和y列已经被标准化了。
阅读全文