Skip to content

Commit d5bfe17

Browse files
committed
change default argument pct.symbol to FALSE
1 parent 96b57b3 commit d5bfe17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/format.pct.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
format.pct <- function(p, digits = 1, pct.symbol = TRUE) {
1+
format.pct <- function(p, digits = 1, pct.symbol = FALSE) {
22
symbol <- "%"
33
if (!pct.symbol) symbol <- NULL
44
paste0(format.float(p*100, digits), symbol)

0 commit comments

Comments
 (0)