Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbryer/maker
An R package to help manage R projects (e.g. Sweave reports) where multiple versions are created based upon a single source repository. For example, a monthly report where each versions is identitcal with the exception of easily definable parameters (e.g. date ranges for data extraction, title, etc.). This package is not meant to assist with package development or more complex data analysis projects. For those types of projects, consider devtools or ProjectTemplate, respectively.
https://github.com/jbryer/maker
Last synced: about 2 months ago
JSON representation
An R package to help manage R projects (e.g. Sweave reports) where multiple versions are created based upon a single source repository. For example, a monthly report where each versions is identitcal with the exception of easily definable parameters (e.g. date ranges for data extraction, title, etc.). This package is not meant to assist with package development or more complex data analysis projects. For those types of projects, consider devtools or ProjectTemplate, respectively.
- Host: GitHub
- URL: https://github.com/jbryer/maker
- Owner: jbryer
- Created: 2012-01-05T14:14:33.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2019-03-20T16:41:07.000Z (almost 6 years ago)
- Last Synced: 2024-08-08T23:28:30.264Z (5 months ago)
- Language: R
- Homepage:
- Size: 1.67 MB
- Stars: 24
- Watchers: 8
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# makeR
#### An R package for managing document templates and versions`makeR` is an R package to help manage R projects (e.g. Sweave reports) where multiple versions are created based upon a single source repository. For example, a monthly report where each versions is identitcal with the exception of easily definable parameters (e.g. date ranges for data extraction, title, etc.). This package is not meant to assist with package development or more complex data analysis projects. For those types of projects, consider [`devtools`](http://github.com/hadley/devtools) or [`ProjectTemplate`](http://projecttemplate.net), respectively.
To install the latest development version using `devtools`, type following in R:
require(devtools)
install_github("jbryer/makeR")The `rbloggers` demo provides a tour of the package.
require(makeR)
demo('rbloggers')### Development
The `makeR` package was developing using the `devtools` package. The following commands provide an easy and efficient approach to package development.setwd("~/Project") #Change to your working directory
document("makeR")
check_doc("makeR")
build("makeR")
install("makeR")
check("makeR")
library(makeR)
ls('package:makeR')