Format Number of Decimal Places in R Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report In this article we are going to discuss how to format numbers up to n decimal places in the R programming language. In R language, the decimal number is represented by . symbol Method 1: Format() function Format() function can be used to format decimal values by rounding them and displaying only a specific number of elements after decimal. Syntax: format(round(value, n), nsmall = n) Parameters: It can take two parameters. round(value,n) function : which will specify the number of decimal places to be selected. It will take input number along with integer value that select decimal places of the given numbernsmall function : which will specify the number of decimal places to be selected.It will take input number along with integer value that select decimal places of the given number Result: Formatted Decimal number. Example: R # define an variable and initialize # to decimal number a=12.4556785 # display decimal places upto 3 print(format(round(a, 3), nsmall = 3)) # display decimal places upto 4 print(format(round(a, 4), nsmall = 4)) # display decimal places upto 0 print(format(round(a, 0), nsmall = 0)) # display decimal places upto 1 print(format(round(a, 1), nsmall = 1)) Output: Example 2: R # define a vector with decimal # elements a=c(12.4556785,1.345,6.789,7.890) # display decimal places upto 3 for (i in a){ print(format(round(i, 3), nsmall = 3)) } Output: Method 2: Using sprintf() function Using sprintf() function, we can specify the format of the decimal places along with the variable Syntax: sprintf(variable, fmt = '%.nf') Parameters: variable - input decimal valuefmt stands for format which will take parameter ".%nf" where n specifies number of decimal places to be selected. Result: formatted decimal number Example 1: R # decimal number a=14.6788 # format upto 4 places print( sprintf(a, fmt = '%.4f') ) # format upto 8 places print( sprintf(a, fmt = '%.8f') ) # format upto 1 place print( sprintf(a, fmt = '%.1f') ) # format upto 0 places print( sprintf(a, fmt = '%.0f') ) Output: Example 2: R # define a vector with decimal elements a=c(12.4556785,1.345,6.789,7.89089) # display decimal places upto 4 for (i in a){ print( sprintf(i, fmt = '%.4f') ) } print("---------------------") # display decimal places upto 1 for (i in a){ print( sprintf(i, fmt = '%.1f') ) } print("---------------------") # display decimal places upto 2 for (i in a){ print( sprintf(i, fmt = '%.2f') ) } print("---------------------") # display decimal places upto 0 for (i in a){ print( sprintf(i, fmt = '%.0f') ) } Output: Method 3: Using options() function This function is used to return the digits after the decimal. Syntax: options(digits = n) Where digits is the number of digits to be returned along with number before decimal point. Example: a=1.24325454666 options(digits=4) It will return 1.243 Example 1: R # decimal number a=14.67885350938953809580 # format upto 4 places options(digits=4) print(a) # format upto 8 places options(digits=8) print(a) # format upto 3 place options(digits=3) print(a) Output: Example 2: R # define a vector with decimal elements a=c(12.4556785,1.345,6.789,7.89089) # display decimal places upto 4 options(digits=4) for (i in a){ print( i ) } print("---------------------") # display decimal places upto 6 options(digits=6) for (i in a){ print( i ) } print("---------------------") # display decimal places upto 2 options(digits=2) for (i in a){ print( i ) } Output: Comment More infoAdvertise with us S sravankumar_171fa07058 Follow Improve Article Tags : R Language R String-Functions Explore R Tutorial | Learn R Programming Language 4 min read IntroductionR Programming Language - Introduction 4 min read Interesting Facts about R Programming Language 4 min read R vs Python 5 min read Environments in R Programming 3 min read Introduction to R Studio 4 min read How to Install R and R Studio? 4 min read Creation and Execution of R File in R Studio 5 min read Clear the Console and the Environment in R Studio 2 min read Hello World in R Programming 2 min read Fundamentals of RBasic Syntax in R Programming 3 min read Comments in R 3 min read R-Operators 5 min read R-Keywords 2 min read R-Data Types 5 min read VariablesR Variables - Creating, Naming and Using Variables in R 5 min read Scope of Variable in R 5 min read Dynamic Scoping in R Programming 5 min read Lexical Scoping in R Programming 4 min read Input/OutputTaking Input from User in R Programming 7 min read Printing Output of an R Program 4 min read Print the Argument to the Screen in R Programming - print() Function 2 min read Control FlowControl Statements in R Programming 4 min read Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switch 3 min read Switch case in R 2 min read For loop in R 5 min read R - while loop 5 min read R - Repeat loop 2 min read goto statement in R Programming 2 min read Break and Next statements in R 3 min read FunctionsFunctions in R Programming 5 min read Function Arguments in R Programming 4 min read Types of Functions in R Programming 6 min read Recursive Functions in R Programming 4 min read Conversion Functions in R Programming 4 min read Data StructuresData Structures in R Programming 4 min read R Strings 6 min read R-Vectors 4 min read R-Lists 6 min read R - Array 7 min read R-Matrices 10 min read R-Factors 4 min read R-Data Frames 6 min read Object Oriented ProgrammingR-Object Oriented Programming 7 min read Classes in R Programming 3 min read R-Objects 3 min read Encapsulation in R Programming 3 min read Polymorphism in R Programming 6 min read R - Inheritance 7 min read Abstraction in R Programming 3 min read Looping over Objects in R Programming 5 min read S3 class in R Programming 8 min read Explicit Coercion in R Programming 3 min read Error HandlingHandling Errors in R Programming 3 min read Condition Handling in R Programming 5 min read Debugging in R Programming 3 min read Like