我正在学习一本名为“R 中的介绍性统计”的书,该书使用“ISwR”包中的数据。我的问题是我无法在工作区中加载数据。当我这样做时
install.packages("ISwR");
library(ISwR)
ls()
data(ISwR)
我什么也得不到。我错过了什么?
我正在学习一本名为“R 中的介绍性统计”的书,该书使用“ISwR”包中的数据。我的问题是我无法在工作区中加载数据。当我这样做时
install.packages("ISwR");
library(ISwR)
ls()
data(ISwR)
我什么也得不到。我错过了什么?
ISwR
是包的名称,而不是包中包含的数据集。
您可以使用R包中的 Introductory Statisticsdata(package = "ISwR")
查看数据集列表。
install.packages("ISLR") #install the package ISLR
library(ISLR)
data(package = "ISLR") #list the datasets in the package ISLR
car=as.data.frame(Auto) #read the dataset Auto in the package ISLR
car