Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 lme4 进行 LMM,并弹出此消息:
initializePtr() 中的错误:包“Rcpp”未提供函数“dataptr”
我应该怎么办?
过了一会儿,我明白了。
1)重新安装最新版本的Rcpp是解决办法。
2)如果你没有使用lme4,但你也有这个问题(“功能'dataptr'不是由包'Rcpp'提供”)结合dyn.load(),可能值得注意的是不要忘记包括
库(Rcpp)
或者
要求(Rcpp)
之前在你的代码上
dyn.load("your_shared_lib.so")
来源: building_shared_libs_with_Rcpp