A "rapport" template published in Gergely Daróczi (2014): "Creating statistical reports in the past, present and future". Romanian Statistical Review. (?)?: ?-?
Placeholder for supplementary resources for the above BMS article.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> library(pander) | |
> str(Pandoc.brew(text='Pi equals to <%=pi%>.\nAnd here are some random data:\n<%=runif(10)%>')) | |
Pi equals to _3.142_. | |
And here are some random data: | |
_0.9281_, _0.7048_, _0.5285_, _0.469_, _0.4796_, _0.844_, _0.2564_, _0.8511_, _0.5924_ and _0.8484_ | |
List of 3 | |
$ :List of 4 | |
..$ type : chr "text" | |
..$ text :List of 2 | |
.. ..$ raw : chr "Pi equals to <%=pi%>.\nAnd here are some random data:\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## compile a list of available packages on CRAN | |
aps <- as.data.frame(available.packages()) | |
## get the list of Depends and clean up a bit | |
deps <- gdata::trim(unlist(strsplit(as.character(aps$Depends), ','))) | |
deps <- gsub('[ \\(].*|\\n', '', deps) | |
## freq table | |
depst <- table(deps) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Andrea Scarpino <[email protected]> | |
pkgname=kdeplasma-applets-applicationname | |
pkgver=1.7 | |
pkgrel=1 | |
pkgdesc="A QML plasmoid to display the application name of the focused window" | |
arch=('any') | |
url="https://github.com/ndr/applicationname-plasmoid" | |
license=('GPL') | |
depends=('kdebase-workspace') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```{r include=FALSE} | |
library(pander); library(xtable) | |
``` | |
# `pander` demo | |
```{r, results="asis"} | |
pander(CO2[1:8, ], style = 'rmarkdown') | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Igor Yanchenko <[email protected]> | |
# Updated: Gergely Daróczig <[email protected]> | |
pkgname=snakefire-git | |
pkgver=20130818 | |
pkgrel=1 | |
pkgdesc='A Campfire desktop client' | |
arch=('i686' 'x86_64' 'ppc') | |
url='http://snakefire.org' | |
license=('MIT') | |
depends=('python2' 'python2-distribute' 'python-pyfire' 'python2-pyqt' 'python2-keyring' 'python2-notify' 'python2-pyenchant') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--head | |
meta: | |
title: UK language usage | |
description: Analysing the results of The Cambridge Online Survey of World Englishes | |
in the United Kingdom | |
author: ' (@daroczig)' | |
packages: | |
- class | |
- descr | |
- dismo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## load "pander" package | |
## http://rapporter.github.com/pander/ | |
library(pander) | |
## "brew" the below file to Pandoc's markdown | |
Pandoc.brew('example.brew') | |
## or convert to HTML at one go | |
## NOTE: `pandoc` is needed for the conversion | |
Pandoc.brew('example.brew', output = tempfile(), convert = 'html') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
basename=rescuetime | |
pkgname="$basename-beta" | |
pkgver=2.6.0 | |
pkgrel=144 | |
pkgdesc="RescueTime time tracker software (binary beta) + firefox extension" | |
url="https://www.rescuetime.com" | |
arch=('i686' 'x86_64') | |
license=('GPL2') | |
depends=('qt' 'xprintidle') | |
optdepends=('firefox: site time tracking') |