- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to increase the thickness of histogram lines in base R?
To increase the thickness of histogram lines in base R, we would need to use par function by defining the thickness size of the line. If we want to do so then line thickness must be defined first before creating the histogram. An example of line size could be line<-par(lwd=3).
Example
x<-rnorm(5000) hist(x)
Output
Example
line<-par(lwd=3) hist(x)
Output
- Related Articles
- How to increase the width of lines for histogram like plots in base R?
- How to increase the X-axis length of histogram in base R?
- How to define the number of breaks in base R histogram?
- How to highlight a bar in base R histogram?
- How to remove border of bars from histogram in base R?
- How to create a histogram without bins in base R?
- How to increase the line thickness of a Seaborn Line?
- How to create a histogram with dots instead of bars in base R?
- How to create a horizontal line in a histogram in base R?
- How to plot matrix columns as lines in base R?
- How to increase the thickness of error line in a Matplotlib bar chart?
- How to increase the width of the lines in the boxplot created by using ggplot2 in R?
- How to create boxplot in base R with higher width of the box lines?
- How to create a histogram with main title in the outer margin of plot window in base R?
- Create histogram with horizontal boxplot on top in base R.

Advertisements