Could you please help me?
I'm building an R package for the final assignment of Coursera's Building R Packages.
So far, I've followed all steps to add a vignette described in the courses's readings, chapter 16.7 of R Markdown Cookbook, and chapter 11 of R Packages, which are basically:
First, add a vignette with:
usethis::use_vignette("mypackage")
Second, edit the YAML heading of the RMD file created in the directory vignettes
.
Third, edit the content of the vignette.
However, after installing and loading the package, the vignette cannot be found using the command:
browseVignettes("mypackage")
I get this error:
No vignettes found by browseVignettes("mypackage")
My package is already available in this GitHub repo, if you want to take a look at the files.
What is missing, please? Thanks!