
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
Change Border Line Type in Base R Boxplot
The default boxplot in R has straight border line type that display end point(s) excluding outliers. To change these border lines from a boxplot, we can use staplelty argument.
For Example, if we have a vector called X then we can create the boxplot of X with different border line type by using the command boxplot(X,staplelty=15). The argument can take different values. Check out the below Examples to understand how it works.
Example
Consider the below vector −
x<-rnorm(15)
To create a boxplot of x, add the following code to the above snippet −
x<-rnorm(15) boxplot(x)
Output
If you execute the above given snippet, it generates the following Output −
To create a boxplot of x with different border lines, add the following code to the above snippet −
x<-rnorm(15) boxplot(x,staplelty=2)
Output
If you execute all the above given snippets as a single program, it generates the following Output −
Add the following code to the above snippet −
x<-rnorm(15) boxplot(x,staplelty=15)
Output
If you execute all the above given snippets as a single program, it generates the following Output −