我想在不实际编译library(rethinking); data(Howell1)
库的情况下使用rethinking
。在CRAN上是not available。
当我克隆库并搜索数据集时,我很惊讶地发现没有定义:
git clone https://github.com/rmcelreath/rethinking.git
$ ack Howell
book_code_boxes.txt
235:data(Howell1)
236:d <- Howell1
321:data(Howell1)
322:d <- Howell1
391:data(Howell1)
392:d <- Howell1
567:data(Howell1)
568:d <- Howell1
628:plot( height ~ weight , data=Howell1 ,
1073:data(Howell1)
1074:d <- Howell1
1401:data(Howell1)
首先提到的是:
library(rethinking)
data(Howell1)
作为R新手,我很惊讶无法直接从源代码中提取数据及其来源。如何阅读代码以查找数据源?