Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hofnerb/papeR
A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models.
https://github.com/hofnerb/papeR
cran knitr latex r-language r-package reporting reproducible reproducible-research sweave
Last synced: about 2 months ago
JSON representation
A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models.
- Host: GitHub
- URL: https://github.com/hofnerb/papeR
- Owner: hofnerb
- Created: 2014-11-27T17:21:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T15:43:55.000Z (almost 4 years ago)
- Last Synced: 2024-09-25T23:29:10.969Z (4 months ago)
- Topics: cran, knitr, latex, r-language, r-package, reporting, reproducible, reproducible-research, sweave
- Language: R
- Homepage: http://cran.r-project.org/package=papeR
- Size: 387 KB
- Stars: 29
- Watchers: 8
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
Awesome Lists containing this project
- jimsghstars - hofnerb/papeR - A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models. (R)
README
papeR
=====[![Build Status (Linux)](https://travis-ci.org/hofnerb/papeR.svg?branch=master)](https://travis-ci.org/hofnerb/papeR)
[![Build Status (Windows)](https://ci.appveyor.com/api/projects/status/t58j1j2hygy6evst/branch/master?svg=true)](https://ci.appveyor.com/project/hofnerb/paper/branch/master)
[![Coverage Status](https://coveralls.io/repos/hofnerb/papeR/badge.svg?branch=master&service=github)](https://coveralls.io/github/hofnerb/papeR?branch=master)
[![CRAN Status Badge](http://www.r-pkg.org/badges/version/papeR)](https://cran.r-project.org/package=papeR)
[![](http://cranlogs.r-pkg.org/badges/papeR)](https://cran.r-project.org/package=papeR)**papeR** provides a toolbox for writing knitr, Sweave or other LaTeX- or markdown-based papers and reports and to prettify the output of various estimated models.
## Installation:
- Current version (from CRAN):
```r
install.packages("papeR")
```- Latest development version from GitHub:
```r
library("devtools")
install_github("hofnerb/papeR")
```- To be able to use the `install_github()` command, one needs to install `devtools` first:
```r
install.packages("devtools")
```## Using papeR
Tutorials on how to use **papeR** can be found on CRAN:
- [Using papeR with Markdown](https://cran.r-project.org/package=papeR/vignettes/papeR_introduction.html)
- [Using papeR with LaTeX](https://cran.r-project.org/package=papeR/vignettes/papeR_with_latex.pdf)or within R via
```r
## introduction to papeR (in combination with Markdown)
vignette("papeR_introduction", package = "papeR")
## introduction to papeR with LaTeX
vignette("papeR_with_latex", package = "papeR")
```