
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 Background Color of Base R Plot Region
To change the background color of base R plot region, we can follow the below steps −
First of all, create a plot in base R to understand the difference.
Then, use par function with bg argument where you can put color name and then create the same plot.
Example
Create the plot
Let’s create a barplot in base R as shown below −
x<-sample(1:10,3) barplot(x)
Output
Create the plot with changed background color
Using par function with bg argument having yellow color and then creating the barplot −
x<-sample(1:10,3) par(bg="yellow") barplot(x)
Output
Advertisements