从'package:datasets'中屏蔽以下对象:

时间:2015-07-15 15:56:13

标签: r statistics packages effects

所以,我在Mac OS X 10.10.1上运行旧版本的R(2.14.0),我无法加载“效果”包。我花了足够长的时间来追踪安装效果所需的所有依赖项,但我仍然无法加载它。我有色彩空间,格子,网格,MASS和& NNET。但是当我输入library(effects)时,我得到以下输出:

Loading required package: lattice
Loading required package: grid
Loading required package: MASS
Loading required package: nnet
Loading required package: colorspace

Attaching package: ‘effects’

The following object(s) are masked from ‘package:datasets’:

    Titanic

当我搜索?Titanic时,我得到:

Help on topic ‘Titanic’ was found in the following packages:

Package               Library
effects               /Users/zoe/Dropbox/Zoe_Folder/IPE/R-2.14.0/library
datasets              /Users/zoe/Dropbox/Zoe_Folder/IPE/R-2.14.0/library

Choose one 

1: Survival of Passengers on the Titanic {effects}
2: Survival of passengers on the Titanic {datasets}

我该怎么办? (我不能使用R 3,因为我需要一个非常具体的统计生态统计包,只能在R 2上运行。)我真的很感激任何见解!

1 个答案:

答案 0 :(得分:1)

没什么不对的 - 装得很好!

这只是说你有两个在不同包中定义相同名称的数据集。我想它们是相同的,但如果你想使用其中一个,你可以使用:

effects::Titanic
datasets::Titanic

这将在函数和数据集中发生。从哪个包中选择哪个函数的方法相同。