Archived
1
0
Fork
You've already forked pubprint
0
R package to print results of statistical computing in a publishable way. Be aware that this project is not longer maintained and is only an archive. See https://github.com/crsh/papaja for a similar project.
This repository has been archived on 2020年11月14日. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • R 99.3%
  • Makefile 0.7%
Find a file
2016年05月26日 22:35:59 +02:00
inst new release: 0.2 2016年05月11日 20:28:43 +02:00
man added full lm.beta support 2016年05月26日 22:35:59 +02:00
man-roxygen added FAQ question 2016年05月26日 14:49:04 +02:00
R added full lm.beta support 2016年05月26日 22:35:59 +02:00
tests fixed problems in html output 2016年05月11日 14:49:27 +02:00
vignettes added FAQ question 2016年05月26日 14:49:04 +02:00
.hgignore managing collate by roxygen and put default functions in a seperate file 2015年03月29日 15:23:07 +02:00
.Rbuildignore remove out.names and put it into style.apa.character 2016年04月12日 12:09:06 +02:00
DESCRIPTION new release: 0.2.1 2016年05月24日 10:19:16 +02:00
DEVELOPMENT.md added full lm.beta support 2016年05月26日 22:35:59 +02:00
LICENSE release version 0.1.1 (comply to CRAN policy) 2016年01月28日 16:50:38 +01:00
Makefile added new bracket function for out.html 2016年05月11日 14:30:05 +02:00
NAMESPACE function to export character vectors to clipboard 2016年02月17日 20:27:27 +01:00
NEWS.md added full lm.beta support 2016年05月26日 22:35:59 +02:00
README.md new release: 0.2.1 2016年05月24日 10:19:16 +02:00

pubprint

Pubprint is an extension for the R programming language. This package takes the output of several statistical tests, collects the characteristic values and transforms it in a publish-friendly pattern. Currently only the APA (American Psychological Association) style is supported with output to HTML, LaTeX, Markdown and plain text. The pubprint package is easily customizable, extendable and can be used well with knitr. Additionally pubprint offers a memory system that allows to save and retrieve results of computations.

The package is still in alpha stage. This means that it should work reliable but that the interface of the functions may be subject to change.

The Markdown output is in pandoc flavour and HTML output complies to MathML. If pubprint is used in a document that is processed by knitr, output format will be automatically determined.

Installation

CRAN, stable versions

Using CRAN installation is possible with a simple

install.packages("pubprint")

in a R session.

Bitbucket, stable versions

Download the package from here and install it in a Linux/Unix shell:

R CMD INSTALL pubprint_0.2.1.tar.gz

Bitbucket, development versions

Just download the current repository or get a copy with Mercurial from here and execute the makefile in the source directory:

hg clone https://bitbucket.org/mutluyum/pubprint
cd pubprint/
make

Please note that development versions may contain some bugs.

Documentation

You can find some documentation in the package documentation, later there will be an more in detail documentation with example files as well.

Requirements

R

  • check DESCRIPTION file.

LaTeX

  • The amsmath package may be required if text is set above or below another text (see out.above() and out.below()).
  • The textgreek package for typesetting greek letters without switching to math mode.

Bugs and missing features

Of course, there aren't any bugs in the pubprint package. But you may encounter unexpected behaviour, missing features or cryptic error messages. If so, please report it to the issue tracker. Thank you!

Contribution

Any contribution to pubprint is appreciated! Have a look at the development page. Please notice that the package is published under the BSD 2-clause licence and you confirm it by contributing.