
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
Rotate Text in Base R Plot
To write the text in a base R plot, firstly we should create a blank chart by using type="n" if we want to plot only text then the text should be introduced with the help of text function. Now, if we want to rotate the text value then srt argument can be used. For example, if we want to rotate the text to 45 degree then srt = -45 can be used.
Example1
> plot(1:10,type="n") > text(x=5,y=5,"Text inside plot")
Output
Example2
> plot(1:10,type="n") > text(x=5,y=5,"Text inside plot",srt=-20)
Output
Example3
> plot(1:10,type="n") > text(x=5,y=5,"Text inside plot",srt=-45)
Output
Advertisements