package - How to avoid (R CMD checks) warnings about undocumented objects when reexporting a symbol? -


suppose have r package a exports function f. package b imports f a, , exports it. more precisely, namespace file of b looks like:

importfrom(a, f) export(f) 

the problem when doing r cmd check of package b (with r-3.0.1) get:

* checking missing documentation entries ... warning undocumented code objects:   ‘f’ 

how avoid without duplicating documentation a::f ?


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -