R create reference manual with R CMD check

前端 未结 4 1311
Happy的楠姐
Happy的楠姐 2020-12-02 16:55

I am writing an R package and would like to make a pdf reference manual of all functions in the package. I understood from here that R CMD check automatically c

4条回答
  •  一整个雨季
    2020-12-02 17:38

    Another workaround is to produce it with:

    build_manual(path=getwd())
    #or
    check(manual = TRUE, args="--output=~/folder/subfolder")
    

提交回复
热议问题