
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 Font Size of Legend in Base R Plot
In base R, we can use legend function to add a legend to the plot. For example, if we want to create a histogram with legend on top-right position then we can use legend("topright",legend="Normal Distribution") and if we want to change the font size then we need to as cex argument as shown below:
legend("topright",legend="Normal Distribution",cex=2)
Example
Consider the below histogram −
x<−rnorm(5000) hist(x)
Output
Adding legend of different sizes −
legend("topright",legend="Normal Distribution",cex=1)
Output
legend("topleft",legend="Histogram of",cex=1.5)
Output
Advertisements