gpt4 book ai didi

r - 如何在 R 中加载 MASS 库的数据集部分?

转载 作者:行者123 更新时间:2023-12-03 23:07:58 25 4
gpt4 key购买 nike

我正在阅读有关统计学习/机器学习和 R 的这本书。问题之一是:

To begin, load in the Boston data set. The Boston data set is part of the MASS library in R.


library (MASS)

Now the data set is contained in the object Boston.

Read about the data set:


?Boston
我不明白语法 library(MASS) .我如何从中获得波士顿数据集?我试过 Boston=library(MASS)但这给了我一系列的话:
"MASS" "stats"  "graphics"  "grDevices" "utils" "datasets" "methods"   "base" 

我也试过类似 Boston=library(MASS::Boston)但这似乎也无效。

最佳答案

您不必将数据分配给也称为 Boston 的新对象。 , data()加载对象 Boston进入全局环境:

> library(MASS)
> data(Boston)
> head(Boston)
crim zn indus chas nox rm age dis rad tax ptratio black lstat
1 0.00632 18 2.31 0 0.538 6.575 65.2 4.0900 1 296 15.3 396.90 4.98
2 0.02731 0 7.07 0 0.469 6.421 78.9 4.9671 2 242 17.8 396.90 9.14
3 0.02729 0 7.07 0 0.469 7.185 61.1 4.9671 2 242 17.8 392.83 4.03
4 0.03237 0 2.18 0 0.458 6.998 45.8 6.0622 3 222 18.7 394.63 2.94
5 0.06905 0 2.18 0 0.458 7.147 54.2 6.0622 3 222 18.7 396.90 5.33
6 0.02985 0 2.18 0 0.458 6.430 58.7 6.0622 3 222 18.7 394.12 5.21
medv
1 24.0
2 21.6
3 34.7
4 33.4
5 36.2
6 28.7
>

关于r - 如何在 R 中加载 MASS 库的数据集部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24872467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com