【发布时间】:2020-03-04 09:06:06
【问题描述】:
我正在 Rstudio 中加载数据集 Ionosphere:
你能帮我解决错误object 'Ionosphere' not found吗?
这很奇怪,因为代码在Rdocumentation中运行良好
【问题讨论】:
-
需要先加载包含数据集的包,即
library(mlbench)。 -
一切都好 - 其他人已经逐步发布。随意接受。
我正在 Rstudio 中加载数据集 Ionosphere:
你能帮我解决错误object 'Ionosphere' not found吗?
这很奇怪,因为代码在Rdocumentation中运行良好
【问题讨论】:
library(mlbench)。
您好,您需要在该包中下载一个名为“mlbench”的包,您会发现该数据。
尝试执行以下操作:
install.packages("mlbench") #to install the package (use if not already installed)
library(mlbench) #to import the library
data(Ionosphere) #to import the data
【讨论】: