percentage: Convert Fraction to Percentage

View source: R/utiltext.R

percentageR Documentation

Convert Fraction to Percentage

Description

This is a programmer's utility which converts a fraction to a percentage and encodes the percentage as a character string.

Usage

percentage(x, digits = 3)

Arguments

x

Either a single number, or a logical vector.

digits

Number of digits accuracy.

Details

If x is a single number, it should be a fraction between 0 and 1. It will be converted to a percentage and then converted to a character string followed by the percentage symbol.

If x is a logical vector, the fraction of values which are TRUE will be computed, and used to determine the percentage.

Value

A character string.

Author(s)

\adrian

Examples

percentage(1/3)
percentage(runif(20) > 0.2)

spatstat.utils documentation built on Oct. 24, 2023, 9:08 a.m.