I am wrting a package called bibliospec.
I have a dataset in data/AminoAcids.tsv and would like to be able to
access it with

bibliospec::AminoAcids

from within my package code.

R CMD build gives me the error:
Error : 'AminoAcids' is not an exported object from 'namespace:bibliospec'

I am able to access the data in package code with
data(AminoAcids)
AminoAcids

but this will give me a NOTE with R CMD check

Also, after loading the packagepackage I am able to access the data with
bibliospec::AminoAcids

But I can't access it from the package bibliospec code.
So why can't I access bibliospec::AminoAcids from within package code?

Help appreciated

Witold
-- 
Witold Eryk Wolski

______________________________________________
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel

Reply via email to