disp {reporttools}R Documentation

Display vectors of numbers, especially targeted to vectors of p-values

Description

This function serves to display numbers in plain text, using a given number of digits after the comma.

Usage

disp(n, d1 = 2, d2 = 1)

Arguments

n Vector of real numbers to be displayed.
d1 Number of digits numbers are basically rounded to.
d2 If numbers in n are smaller than 10^{-d1}, then d2 significant digits are given.

Value

t A vector of character strings containing the input number n formatted as specified by d1 and d2.

Author(s)

Kaspar Rufibach (maintainer), kaspar.rufibach@ifspm.uzh.ch,
http://www.biostat.uzh.ch/aboutus/people/rufibach.html

Examples

r <- c(0.23445, 0.000089)
disp(r)

[Package reporttools version 1.0.4 Index]