Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| ## Correlation matrix with p-values. See http://goo.gl/nahmV for documentation of this function | |
| cor.prob <- function (X, dfr = nrow(X) - 2) { | |
| R <- cor(X, use="pairwise.complete.obs") | |
| above <- row(R) < col(R) | |
| r2 <- R[above]^2 | |
| Fstat <- r2 * dfr/(1 - r2) | |
| R[above] <- 1 - pf(Fstat, 1, dfr) | |
| R[row(R) == col(R)] <- NA | |
| R | |
| } |
| /* See http://mrdanadams.com/2012/pixel-ems-css-conversion-sass-mixin/ */ | |
| /* Default font size in pixels if not overridden. */ | |
| $baseFontSize: 16; | |
| /* Convert PX units to EMs. | |
| Ex: margin-right: pem(16); | |
| */ | |
| @function pem($pxval, $base: $baseFontSize) { | |
| @return #{$pxval / $base}em; |
| update-rc.d logstash-shipper defaults | |
| update-rc.d logstash-reader defaults |