
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create Boxplot in Base R with Higher Width of Box Lines
To create boxplot in base R with higher width of the box lines, we can use the boxlwd argument inside boxplot function. For example, if we have a vector called x then we can create the boxplot with higher width of the box lines using the command −
boxplot(x,boxlwd=5)
Example
x<-rnorm(10000) boxplot(x,boxlwd=5)
Output
Example
y<-rnorm(100,5,1) boxplot(y,boxlwd=10)
Output
Advertisements