Data set 'FA' not found in the drc package
I've been reading the d开发者_如何学Crc paper and on page six, it has the following commands:
> library(drc)
> data(FA)
However, I get the following error
In data(FA): data set 'FA' not found
Where can I get the FA
data set?
As mentioned in the comments in @Jack's answer, you can retrieve the FA
dataset from the old package version, but you can still use the latest version of the package.
- Download version 0.8-2 of the drc package from the archive web-page;
- Unzip the package and go to the directory
data
; - Copy the file
FA.rda
to somewhere sensible; - Now use the following command:
load("FA.rda")
This gives the data set on page 6 of the paper, i.e.
R> FA[1:5,] MEANLR MM 1 7.580 0 2 8.000 0 3 8.329 0 4 7.250 0 5 7.375 0
A preliminary search of the documentation for the drc library reveals no data set called FA
. My advice would be to contact the authors of the paper to see if they can provide you with the data set.
精彩评论