add_commas: Add commas to a large number

View source: R/add_commas.R

add_commasR Documentation

Add commas to a large number

Description

Convert a number to a string, with commas every 3rd digit

Usage

add_commas(numbers)

Arguments

numbers

Vector of non-negative numbers (will be rounded to integers)

Value

Character string with numbers written like "7,547,085".

Examples

add_commas(c(231, 91310, 2123, 9911001020, 999723285))

broman documentation built on July 8, 2022, 5:07 p.m.

Related to add_commas in broman...