Created
December 2, 2019 19:34
-
-
Save swo/fbb01773a9d2985aae859a90c9e04597 to your computer and use it in GitHub Desktop.
significant figures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sigfig <- function(x, n = 2) { | |
formatC(signif(x, digits = n), digits = n, format = "fg", flag = "#") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment