- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to highlight a value with underline in base R plot?
To highlight a value with underline in base R plot, we can use underline function within text function. The text function will be used to define the value that we need to underline in the plot and underline function will only underline that part.
Check out the below given example to understand how it works.
Example
To highlight a value with underline in base R plot, use the code given below −
plot(1:5)
Output
If you execute the above given code, it generates the following output −
To highlight a value with underline in base R plot, add the following code to the above code −
plot(1:5) text(4,2,bquote("Point Chart of"~underline("1 to 5")))
Output
If you execute all the above given codes as a single program, it generates the following output −
- Related Articles
- How to display mean with underline in base R plot?
- How to highlight a bar in base R histogram?
- How to assign a value to a base R plot?
- How to deal with error invalid xlim value in base R plot?
- How to include a zero with tick in base R plot?
- How to display text in base R plot with outline?
- How to create a plot with dashed regression line in base R?
- How to add a picture to plot in base R?
- How to create a plot with reversed Y-axis labels in base R?
- How to highlight text inside a plot created by ggplot2 using a box in R?
- How to rotate text in base R plot?
- How to remove Index in base R plot?
- How to display fraction in base R plot?
- How to create a perpendicular arrow in base R plot?
- How to create a cumulative sum plot in base R?

Advertisements