Histograms in R language Last Updated : 12 Jul, 2025 Comments Improve Suggest changes 7 Likes Like Report A histogram contains a rectangular area to display the statistical information which is proportional to the frequency of a variable and its width in successive numerical intervals. A graphical representation that manages a group of data points into different specified ranges. It has a special feature that shows no gaps between the bars and is similar to a vertical bar graph.We can create histograms in R Programming Language using the hist() function.Syntax: hist(v, main, xlab, xlim, ylim, breaks, col, border)Parameters: v: A vector containing numerical values for the histogram.main: The title of the chart.col: The color of the bars.xlab: The label for the x-axis.border: The border color of each bar.xlim: The range of values for the x-axis.ylim: The range of values for the y-axis.breaks: The width of each bar.1. Creating a simple Histogram in RCreating a simple histogram chart by using the above parameter. This vector v is plot using hist().Example: R v <- c(19, 23, 11, 5, 16, 21, 32, 14, 19, 27, 39) hist(v, xlab = "No.of Articles ", col = "green", border = "black") Output:Histograms in R language1.1 Range of X and Y valuesTo describe the range of values we need to do the following steps: We can use the xlim and ylim parameters in X-axis and Y-axis.Take all parameters which are required to make a histogram chart.Example R v <- c(19, 23, 11, 5, 16, 21, 32, 14, 19, 27, 39) hist(v, xlab = "No.of Articles", col = "green", border = "black", xlim = c(0, 50), ylim = c(0, 5), breaks = 5) Output: Histograms in R language2. Using histogram return values for labels using text()To create a histogram return value chart. R v <- c(19, 23, 11, 5, 16, 21, 32, 14, 19, 27, 39, 120, 40, 70, 90) m<-hist(v, xlab = "Weight", ylab ="Frequency", col = "darkmagenta", border = "pink", breaks = 5) text(m$mids, m$counts, labels = m$counts, adj = c(0.5, -0.5)) Output:Histograms in R language3. Histogram using non-uniform widthCreating different width histogram charts, by using the above parameters, we created a histogram using non-uniform width.Example R v <- c(19, 23, 11, 5, 16, 21, 32, 14, 19, 27, 39, 120, 40, 70, 90) hist(v, xlab = "Weight", ylab ="Frequency", xlim = c(50, 100), col = "darkmagenta", border = "pink", breaks = c(5, 55, 60, 70, 75, 80, 100, 140)) Output:Histograms in R language Create Quiz Comment S shivanisinghss2110 Follow 7 Improve S shivanisinghss2110 Follow 7 Improve Article Tags : R Language R-plots R-Plotly R-Data_Science Explore 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 File HandlingFile Handling in R Programming 3 min read Reading Files in R Programming 9 min read Writing to Files in R Programming 2 min read Working with Binary Files in R Programming 5 min read Like