myFrac | R Documentation |
Converts fractions for inline rendering.
myFrac(num, denom, format = "markdown")
num |
Either a vector of values for the numerators,
or, if |
denom |
Vector of values for the denominators, or |
format |
Character vector of length one giving the format of the output.
Default of "markdown" uses super script for the numerator,
a slash, then subscript for the denominator.
Alternatively, "latex" uses |
Character vector of the fractions
If passing fractions, the function assumes that there is exactly one "/" in each fraction, and will return "NA" for the denominator if none is present or truncate the fraction if more than one "/" is included.
Mark Peterson
fractions
myFrac(3,4)
myFrac(1:3,4:6)
myFrac(1:3,4:6, "latex")
myFrac(letters[1:5], LETTERS[1:5])
myFrac( c("1/2","3/4", "9856/5646") )
myFrac( c("1/2","3/4", "9856/5646"), format = "latex" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.