HI all,
Is there way to add digits after decimal for a a absolute 0 value. Example below
paste0(format(round(as.numeric(0),4),scientific = FALSE),"%" )
[1] "0%"
Expected output
paste0(format(round(as.numeric(0),4),scientific = FALSE),"%" )
[1] "0.0000%"