formatting_functions: Formatting functions

Description Usage Arguments Examples

Description

Some functions useful for formatting integers for lists:

roman

i, ii, iii, iv, ...

Roman

I, II, III, IV, ...

alph

a, b, c, d, ..., z, aa, bb, ...

Alph

A, B, C, D, ..., Z, AA, BB, ...

Usage

1
2
3
4
5
6
7
roman(x)

Roman(x)

alph(x)

Alph(x)

Arguments

x

A vector of integers.

Examples

1
2
3
4
5
x <- 1:10
roman(x)
Roman(x)
alph(x)
Alph(x)

jrnold/examiner documentation built on May 20, 2019, 1 a.m.