R使安装软件包变得容易,例如
install.packages("rmarkdown")
这很好用,并结束了评论
The downloaded source packages are in
‘/tmp/Rtmpb9da02/downloaded_packages’`
但是在此之后,目录/usr/local/lib/R/site-library/rmarkdown/R
仅包含3个文件:rmarkdown
,rmarkdown.rdb
和rmarkdown.rdx
。
相反,刚刚下载的/tmp/Rtmpb9da02/downloaded_packages/rmarkdown_1.11.tar.gz
将为相应的目录rmarkdown/R
提供完整的源文件:
base64.R html_vignette.R render_html.R
beamer_presentation.R includes.R render.R
draft.R ioslides_presentation.R render_site.R
github_document.R knit_print.R rtf_document.R
html_dependencies.R latex_dependencies.R shiny_module.R
html_document_base.R list_builder.R shiny_prerendered.R
html_document.R md_document.R shiny.R
html_extras.R odt_document.R slidy_presentation.R
html_fragment.R output_format.R stack.R
html_notebook_output.R pandoc.R tufte_handout.R
html_notebook.R params.R util.R
html_paged.R pdf_document.R word_document.R
html_parser.R performance.R zzz.R
html_resource_copy.R powerpoint_presentation.R
html_resources.R relative_to.R
为什么隐瞒消息来源?
我应该如何获得它们?除了tar zxf
之外,还有“最佳实践”方法吗?我正在寻找一种安装程序,该安装程序将允许我修改一个或多个源文件,重新生成程序包并将其重新加载到R进程中。额外的好处是,可以与源代码(例如git)背后的源代码控制系统进行连接。
答案 0 :(得分:1)
您可以照原样下载源代码,根据需要修改R文件,然后重新安装:
install.packages('/path/to/my_rmarkdown_1.11', repos= NULL, type= 'source')