Tukey's Five-number Summary in R Programming - fivenum() function Last Updated : 01 Jul, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report fivenum() function in R Language is used to return Tukey's five-number summary of input data i.e., minimum value, lower-hinge value, median value, upper-hinge value and maximum value of the input data. Syntax: fivenum(x, na.rm = TRUE) Parameters: x: indicates numeric object na.rm: indicates logical value. If TRUE, NAs and NANs are dropped. Example 1: r # Create numeric data object x <- seq(1, 13, by = 2) # Show Tukey's five-number summary fivenum(x) Output: [1] 1 4 7 10 13 Example 2: r # Create numeric data object x <- rnorm(1000) # Show Tukey's five-number summary fivenum(x) Output: [1] -2.97770299 -0.65995003 -0.04482463 0.70722486 2.99627903 Comment More infoAdvertise with us Next Article Get Summary of Results produced by Functions in R Programming - summary() Function U utkarsh_kumar Follow Improve Article Tags : R Language R Statistics Similar Reads Get Summary of Results produced by Functions in R Programming - summary() Function summary() function in R Language is a generic function used to produce result summaries of the results of various model fitting functions. Syntax: summary(object, maxsum) Parameters: object: R object maxsum: integer value which indicates how many levels should be shown for factors Example 1: Python3 2 min read Formatting Numbers and Strings in R Programming - format() Function In R programming, the format() function formats numbers, strings and dates to meet presentation needs. It gives formatting features to modify the display of numeric values, strings and date/time information. This function is applied to regulate the number of decimal places, alignment, scientific not 3 min read Display the internal Structure of an Object in R Programming - str() Function str() function in R Language is used for compactly displaying the internal structure of a R object. It can display even the internal structure of large lists which are nested. It provides one liner output for the basic R objects letting the user know about the object and its constituents. It can be 3 min read Condense Column Values of a Data Frame in R Programming - summarise() Function summarise() function in R Language is used to condense various values of column of a data frame to one value. Syntax: summarise(x, expr) Parameters: x: Data Frame expr: Operation to condense data Example 1: Python3 1== # R program to condense data # of a data frame # Loading library library(dplyr) # 1 min read How to Calculate Five Number Summary in R? In this article, we will discuss how to calculate five number summary in R programming language. Five number summary is also known as a boxplot. it will return five values that are : The minimum value present in the given dataThe first quartile value present in the given dataThe median  value presen 2 min read Calculate Cumulative Sum of a Numeric Object in R Programming - cumsum() Function The cumulative sum can be defined as the sum of a set of numbers as the sum value grows with the sequence of numbers. cumsum() function in R Language is used to calculate the cumulative sum of the vector passed as argument. Syntax: cumsum(x) Parameters: x: Numeric Object Example 1: Python3 # R pr 1 min read Like