Dear friends – I still get some warning although the package runs just fine.
checking for missing documentation entries ... WARNING
Undocumented data sets:
'Cl' 'K' 'Na' 'TOTAL' 'WA' 'INPUT' 'Alb' 'Ca' 'Lact' 'Mg' 'PCO2' 'S1'
'Brom' 'pHOBS'
All user-level objects in a package shoul
Hi Adam,
I suspect these two lines in your YAML header are causing trouble
> %\usepackage[utf8]{inputenc}
> %\usepackage[table]{xcolor}
- this is LaTeX code, which you shouldn't need if you're producing an HTML
vignette.
Also, with more recent versions of R markdown you should use knitr::r
It's hard to be sure without seeing your package, but it *sounds* as
though you have a data set "Brom" (in /data ?) but you have
*documented* a data set named "brom". So you should either change the
name of the data set to "brom" or change your help file to document "Brom".
It is of course