我正在尝试在R包中使用内置数据(此包here。
我已经使用usethis::use_data_raw()
和usethis::use_data()
(以前来自devtools包)来设置目录(和脚本)来处理原始数据和原始数据本身的目录(请参阅data-raw
和data
here。
但是,当我加载包然后输入数据的名称 - inaugural_addresses
时 - 它不会加载。但是,当我加载包并运行data("inaugural_addresses")
时,它会将data.frame
加载到环境中,例如:
> inaugural_addresses
Error: object 'inaugural_addresses' not found
> data("inaugural_addresses")
# this loads the data.frame into the environment
似乎我必须没有正确记录某些内容 - 但我无法找到答案。如何在不使用data()
函数的情况下加载内置数据?