1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
|
#' Add trailing and leading blank line
#'
#' Adds a line break before \emph{and} after the character string(s).
#' @param x character vector
#' @export
add.blank.lines <- function(x)
sprintf('\n%s\n', x)
#' Remove more then two joined newlines
#' @param x character vector
#' @export
#' @examples
#' remove.extra.newlines(c('\n\n\n', '\n\n', '\n'))
remove.extra.newlines <- function(x)
gsub('[\n][\n]+', '\n\n', x)
#' Trim leading and trailing spaces
#' @param x character vector
#' @return character vector
#' @export
#' @seealso \code{trim.space} in \code{rapport} package
trim.spaces <- function(x)
gsub('^[[:space:]]+|[[:space:]]+$', '', x)
#' Repeating chars
#'
#' Repeating a string \code{n} times and returning a concatenated character vector.
#' @param x string to repeat
#' @param n integer
#' @param sep separator between repetitions
#' @return character vector
#' @export
repChar <- function(x, n, sep = '')
paste(rep.int(x, n), collapse = sep)
#' Inline Printing
#'
#' \code{\link{p}} merges elements of a vector in one string for the sake of pretty inline printing. Default parameters are read from appropriate \code{option} values (see argument description for details). This function allows you to put the results of an expression that yields a variable \emph{inline}, by wrapping the vector elements with the string provided in \code{wrap}, and separating elements by main and ending separator (\code{sep} and \code{copula}). In case of a two-length vector, value specified in \code{copula} will be used as a separator. You can also control the length of provided vector by altering an integer value specified in \code{limit} argument (defaults to \code{Inf}).
#' @param x an atomic vector to get merged for inline printing
#' @param wrap a string to wrap vector elements (uses value set in \code{p.wrap} option: \code{'_'} by default, which is a markdown-friendly wrapper and it puts the string in \emph{italic})
#' @param sep a string with the main separator, i.e. the one that separates all vector elements but the last two (uses the value set in \code{p.sep} option - \code{','} by default)
#' @param copula a string with ending separator - the one that separates the last two vector elements (uses the value set in \code{p.copula} option, \code{'and'} by default)
#' @param limit maximum character length (defaults to \code{Inf}initive elements)
#' @param keep.trailing.zeros to show or remove trailing zeros in numbers
#' @param missing string to replace missing values
#' @param digits numeric (default: 2) passed to format
#' @param round numeric (default: Inf) passed to round
#' @return a string with concatenated vector contents
#' @examples
#' p(c('fee', 'fi', 'foo', 'fam'))
#' # [1] '_fee_, _fi_, _foo_ and _fam_'
#' p(1:3, wrap = '')
#' # [1] '1, 2 and 3'
#' p(LETTERS[1:5], copula = 'and the letter')
#' # [1] '_A_, _B_, _C_, _D_ and the letter _E_'
#' p(c('Thelma', 'Louise'), wrap = '', copula = '&')
#' # [1] 'Thelma & Louise'
#' @export
#' @author Aleksandar Blagotic
#' @references This function was moved from \code{rapport} package: \url{http://rapport-package.info}.
p <- function(x, wrap = panderOptions('p.wrap'), sep = panderOptions('p.sep'), copula = panderOptions('p.copula'), limit = Inf, keep.trailing.zeros = panderOptions('keep.trailing.zeros'), missing = panderOptions('missing'), digits = panderOptions('digits'), round = panderOptions('round')){ #nolint
attributes(x) <- NULL
stopifnot(is.vector(x))
stopifnot(all(sapply(list(wrap, sep, copula), function(x) is.character(x) && length(x) == 1)))
x.len <- length(x)
if (x.len == 0) {
return('')
}
stopifnot(x.len <= limit)
## store missing values
w <- which(is.na(x))
## prettify numbers
if (is.numeric(x)) {
x <- round(x, digits = round)
## optionally remove trailing zeros by running format separately on each element of the vector
if (!keep.trailing.zeros) {
x <- sapply(x, format, trim = TRUE, digits = digits, decimal.mark = panderOptions('decimal.mark')) #nolint
} else {
## otherwise force using the same number format for all vector elements
x <- format(x, trim = TRUE, digits = digits, decimal.mark = panderOptions('decimal.mark'))
}
}
## replace missing values
if (length(w) > 0) {
x[w] <- missing
}
if (x.len == 1) {
wrap(x, wrap)
} else if (x.len == 2) {
paste(wrap(x, wrap), collapse = copula)
} else {
paste0(paste(wrap(head(x, -1), wrap), collapse = sep), copula, wrap(tail(x, 1), wrap))
}
}
#' Wrap Vector Elements
#'
#' Wraps vector elements with string provided in \code{wrap} argument.
#' @param x a vector to wrap
#' @param wrap a string to wrap around vector elements
#' @return a string with wrapped elements
#' @examples \dontrun{
#' wrap('foobar')
#' wrap(c('fee', 'fi', 'foo', 'fam'), '_')
#' }
#' @export
#' @author Aleksandar Blagotic
#' @references This function was moved from \code{rapport} package: \url{http://rapport-package.info}.
wrap <- function(x, wrap = '"'){
attributes(x) <- NULL
stopifnot(is.vector(x))
sprintf('%s%s%s', wrap, x, wrap)
}
#' Check if rownames are available
#'
#' Dummy helper to check if the R object has real rownames or not.
#' @param x a tabular-like R object
#' @return \code{TRUE} OR \code{FALSE}
#' @export
has.rownames <- function(x) {
length(dim(x)) != 1 && length(rownames(x)) > 0 && !all(rownames(x) == 1:nrow(x)) && !all(rownames(x) == '')
}
#' Adds caption in current block
#'
#' This is a helper function to add a caption to the returning image/table.
#' @param x string
#' @param permanent (default \code{FALSE}) if caption is permanent (for all future tables) or not
#' @export
set.caption <- function(x, permanent = FALSE){
assign('caption', x, envir = storage)
if (!is.null(x)) {
attr(storage$caption, 'permanent') <- permanent
}
}
#' Get caption
#'
#' Get caption from temporary environment and truncates that
#' @return stored caption as string
#' @keywords internal
get.caption <- function()
get.storage('caption')
#' Sets alignment for tables
#'
#' This is a helper function to update the alignment (\code{justify} parameter in \code{pandoc.table}) of the next returning table. Possible values are: \code{centre} or \code{center}, \code{right}, \code{left}.
#' @param default character vector which length equals to one (would be repeated \code{n} times) ot \code{n} - where \code{n} equals to the number of columns in the following table
#' @param row.names string holding the alignment of the (optional) row names
#' @param permanent (default \code{FALSE}) if alignment is permanent (for all future tables) or not. It's cleaner to use \code{panderOptions} instead.
#' @export
set.alignment <- function(default = panderOptions('table.alignment.default'), row.names = panderOptions('table.alignment.rownames'), permanent = FALSE) { #nolint
assign('alignment', list(default = default, row.names = row.names), envir = storage)
attr(storage$alignment, 'permanent') <- permanent
}
#' Get alignment
#'
#' Get alignment from temporary environment, truncating that and applying rownames and other columns alignment to passed \code{df}.
#' @return vector of alignment parameters
#' @keywords internal
#' @param df data.frame
#' @param remove.obious.rownames if this rule should be applied or not
get.alignment <- function(df, remove.obious.rownames = TRUE) {
if (is.null(attr(df, 'alignment'))) {
a <- get.storage('alignment')
if (is.null(a)) {
ad <- panderOptions('table.alignment.default')
ar <- panderOptions('table.alignment.rownames')
if (remove.obious.rownames && !has.rownames(df)) {
ar <- NULL
}
if (is.function(ar)) {
ar <- ar()
}
if (is.function(ad)) {
return(c(ar, ad(df)))
}
a <- list(default = ad, row.names = ar)
}
if (length(a) == 1) {
a <- list(default = as.character(a), row.names = as.character(a))
}
if (length(dim(df)) < 2) {
w <- length(df)
n <- NULL
} else {
w <- ncol(df)
n <- rownames(df)
if (isTRUE(remove.obious.rownames) && all(n == 1:nrow(df))) {
n <- NULL
}
}
if (is.null(n)) {
return(rep(a$default, length.out = w))
} else {
return(c(a$row.names, rep(a$default, length.out = w)))
}
}
attr(df, 'alignment')
}
#' Emphasize rows/columns/cells
#'
#' Storing indexes of cells to be (strong) emphasized of a tabular data in an internal buffer that can be released and applied by \code{\link{pandoc.table}}, \code{\link{pander}} or \code{\link{evals}} later.
#' @param x vector of row/columns indexes or an array like returned by \code{which(..., arr.ind = TRUE)}
#' @aliases emphasize.rows emphasize.cols emphasize.cells emphasize.strong.rows emphasize.strong.cols emphasize.strong.cells emphasize.italics.rows emphasize.italics.cols emphasize.italics.cells emphasize.verbatim.rows emphasize.verbatim.cols emphasize.verbatim.cells
#' @usage
#' emphasize.rows(x)
#'
#' emphasize.cols(x)
#'
#' emphasize.cells(x)
#'
#' emphasize.strong.rows(x)
#'
#' emphasize.strong.cols(x)
#'
#' emphasize.strong.cells(x)
#'
#' emphasize.italics.rows(x)
#'
#' emphasize.italics.cols(x)
#'
#' emphasize.italics.cells(x)
#'
#' emphasize.verbatim.rows(x)
#'
#' emphasize.verbatim.cols(x)
#'
#' emphasize.verbatim.cells(x)
#' @export
#' @examples \dontrun{
#' n <- data.frame(x = c(1,1,1,1,1), y = c(0,1,0,1,0))
#' emphasize.cols(1)
#' emphasize.rows(1)
#' pandoc.table(n)
#'
#' emphasize.strong.cells(which(n == 1, arr.ind = TRUE))
#' pander(n)
#' }
emphasize.rows <- function(x)
assign(deparse(match.call()[[1]]), x, envir = storage)
#' @export
emphasize.strong.rows <- emphasize.rows
#' @export
emphasize.italics.rows <- emphasize.rows
#' @export
emphasize.verbatim.rows <- emphasize.rows
#' @export
emphasize.cols <- emphasize.rows
#' @export
emphasize.strong.cols <- emphasize.rows
#' @export
emphasize.italics.cols <- emphasize.rows
#' @export
emphasize.verbatim.cols <- emphasize.rows
#' @export
emphasize.cells <- emphasize.rows
#' @export
emphasize.strong.cells <- emphasize.rows
#' @export
emphasize.italics.cells <- emphasize.rows
#' @export
emphasize.verbatim.cells <- emphasize.rows
#' Get emphasize params from internal buffer
#'
#' And truncate content.
#' @param df tabular data
#' @return R object passed as \code{df} with possibly added \code{attr}s captured from internal buffer
#' @keywords internal
get.emphasize <- function(df) {
for (v in c('emphasize.rows',
'emphasize.cols',
'emphasize.cells',
'emphasize.strong.rows',
'emphasize.strong.cols',
'emphasize.strong.cells',
'emphasize.italics.rows',
'emphasize.italics.cols',
'emphasize.italics.cells',
'emphasize.verbatim.rows',
'emphasize.verbatim.cols',
'emphasize.verbatim.cells')) {
if (is.null(attr(df, v))) {
attr(df, v) <- get.storage(v)
}
}
return(df)
}
#' Get a value from internal buffer
#'
#' And truncate content.
#' @param what string
#' @keywords internal
get.storage <- function(what) {
res <- tryCatch(get(what, envir = storage, inherits = FALSE), error = function(e) NULL)
if (is.null(attr(res, 'permanent')) || !attr(res, 'permanent')) {
assign(what, NULL, envir = storage)
}
return(res)
}
#' Add significance stars
#'
#' This function adds significance stars to passed \code{p} value(s) as: one star for value below \code{0.05}, two for \code{0.01} and three for \code{0.001}.
#' @param p numeric vector or tabular data
#' @param cutoffs the cutoffs for the 1/2/3 significance stars
#' @return character vector
#' @export
add.significance.stars <- function(p, cutoffs = c(0.05, 0.01, 0.001)) {
stopifnot(length(cutoffs) == 3)
if (inherits(p, c('matrix', 'data.frame')) && length(dim(p)) == 2) {
apply(p, c(1,2), add.significance.stars, cutoffs = cutoffs)
} else {
if (length(p) > 1) {
sapply(p, add.significance.stars, cutoffs = cutoffs)
} else {
ifelse(p > cutoffs[1], '',
ifelse(p > cutoffs[2], ' *',
ifelse(p > cutoffs[3], ' * *', ' * * *')))
}
}
}
#' Toggle cache
#'
#' This function is just a wrapper around \code{\link{evalsOptions}} to switch pander's cache on or off easily, which might be handy in some brew documents to prevent repetitive strain injury :)
#' @aliases cache.on
#' @usage
#' cache.on()
#'
#' cache.off()
#' @export
cache.off <- function()
evalsOptions('cache', FALSE)
#' @export
cache.on <- function()
evalsOptions('cache', TRUE)
#' Split line with line breaks depending on max.width
#'
#' This is a helper function to insert line breaks depending on (\code{split.cells} parameter of \code{pandoc.table}) of the returning table.
#' @param x string to be split. Works only with one string. Non-string arguments and multi-dimensional arguments are returned unchaged
#' @param max.width default integer value specyfing max number of characters between line breaks
#' @param use.hyphening (default: \code{FALSE}) if try to use hyphening when splitting large cells according to table.split.cells. Requires \pkg{sylly}.
#' @return character string with line breaks
#' @export
#' @examples
#' splitLine('foo bar', 6)
#' splitLine('foo bar', 7)
#' splitLine('Pandoc Package', 3, TRUE)
splitLine <- function(x, max.width = panderOptions('table.split.cells'), use.hyphening = FALSE) {
if (any(is.na(x))) {
return(x)
}
if (!is.character(x) || !is.null(dim(x)) || length(x) != 1 || x == '') {
return(x)
}
if (suppressWarnings(!is.na(as.numeric(x)))) {
return(x)
}
if (is.infinite(max.width)) {
max.width <- .Machine$integer.max
}
if (use.hyphening) {
if (requireNamespace('sylly', quietly = TRUE) && requireNamespace('sylly.en', quietly = TRUE)) {
sylly.en::hyph.support.en()
} else {
use.hyphening <- FALSE
}
}
hyphen_f <- function(s)
sylly::hyphen(s, hyph.pattern = 'en', quiet = TRUE)@hyphen[1, 2]
.Call('pander_splitLine_cpp', PACKAGE = 'pander', x, max.width, use.hyphening, hyphen_f)
}
#' Check if caption is valid
#' @param caption R object to check
#' @return boolean
#' @keywords internal
check_caption <- function(caption) {
if (length(caption) > 1) {
stop('The caption should be exactly one string.')
}
if (!(is.character(caption) | is.null(caption))){
stop('The caption should be string (character class) or NULL.')
}
invisible(TRUE)
}
#' Check if vector parameter for round/digits and adjust accodingly
#' @param param vector to be checked
#' @param name parameter name
#' @param n needed size of vector
#' @return original vector if size is good, vector of default values otherwise
#' @keywords internal
check_digits <- function(param, name, n) {
if (length(param) == 1) {
param <- rep(param, n)
} else if (length(param) < n) {
warning(sprintf('%s is not equal to ncol(t), reverting to default value', name))
param <- rep(panderOptions(name), n)
}
param
}
#' Create a multitable used for rendering objects from rms package
#'
#' When ols/lrm/orm from rms package get rendered, main statistics are group in table of tables.
#' Since pandoc doesn't support row or col-span,
#' we chose to group those statistics in a column each.
#' This function takes care of that
#' @param v list of vectors/lists to be merge in the table
#' @return data.frame in specified format
#' @examples
#' pander:::multitable(list(list(a=1, b=2),list(c=3, d=4)))
#' @keywords internal
multitable <- function(v) {
ml <- max(sapply(v, length))
mod <- lapply(1:length(v),
function(i) {
uv <- unlist(c(rbind(pandoc.strong.return(names(v[[i]])),
sapply(v[[i]], p, wrap = ''))))
if (length(v[[i]]) < ml)
uv <- c(uv, rep('', 2 * (ml - length(v[[i]]))))
uv
})
do.call(cbind, mod)
}
#' Calculate coef matrix for models from rms package
#' Forked from prModFit from rms
#'
#' @param obj object list
#' @param coefs numeric value if to print only the first n regression coefficients in the model.
#' @return coeficients matrix
#' @importFrom stats pt pchisq
coef_mat <- function(obj, coefs) {
errordf <- obj$errordf
beta <- obj$coef
se <- obj$se
Z <- beta / se
if (length(errordf)) {
P <- 2 * (1 - pt(abs(Z), errordf))
} else {
P <- 1 - pchisq(Z ^ 2, 1)
}
U <- cbind(beta, se, Z, P)
colnames(U) <- c('Coef', 'S.E.', 'Wald Z', 'Pr(>|Z|)')
if (length(errordf)) {
colnames(U)[3:4] <- c('t', 'Pr(>|t|)')
}
rownames(U) <- names(beta)
if (length(obj$aux)) {
U <- cbind(U, obj$aux)
colnames(U)[ncol(U)] <- obj$auxname
}
if (is.numeric(coefs)) {
U <- U[1:coefs, , drop = FALSE] #nolint
U <- rbind(U, rep('', ncol(U)))
rownames(U)[nrow(U)] <- '. . .'
}
U
}
|