Skip to content

Instantly share code, notes, and snippets.

@carbocation
Created June 21, 2021 21:14
Show Gist options
  • Save carbocation/58d11503daf9a76e7e3c8881c87d8ff4 to your computer and use it in GitHub Desktop.
Save carbocation/58d11503daf9a76e7e3c8881c87d8ff4 to your computer and use it in GitHub Desktop.
Blends round() and formatC() for my specific needs.
roundFormatC <- function(x, digits) {
formatCDigits <- digits
if(digits <= 0) {
formatCDigits <- 0
}
formatC(round(x, digits), formatCDigits, format = "f")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment