- 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 write partial title of X-axis in italics using ggplot2 of R?
Of course, writing axes titles help viewers to understand the plot in a better way because they add more information to the plot. In general, the axes titles have simple font but we can change partial or complete title to italics to get the viewers attraction. This is needed when we want to highlight the title by making it different. In ggplot2, we can do this by using expression.
Example
Consider the below data frame −
set.seed(1) x<-rnorm(10) y<-rnorm(10,1) df<-data.frame(x,y) df
Output
x y 1 -0.6264538 2.5117812 2 0.1836433 1.3898432 3 -0.8356286 0.3787594 4 1.5952808 -1.2146999 5 0.3295078 2.1249309 6 -0.8204684 0.9550664 7 0.4874291 0.9838097 8 0.7383247 1.9438362 9 0.5757814 1.8212212 10 -0.3053884 1.5939013 > library(ggplot2)
Creating the scatterplot between x and y −
ggplot(df,aes(x,y))+geom_point()+ + labs(x=expression(paste("X comes from normal distribution")))
Output
Now suppose we want to write normal distribution in italics then it can be done as shown below −
ggplot(df,aes(x,y))+geom_point()+labs(x=expression(paste("X comes from ",italic("normal distribution"))))
Output
- Related Articles
- How to change the text size of Y-axis title using ggplot2 in R?
- How to change the Y-axis title to horizontal using ggplot2 in R?
- How to change the color of X-axis label using ggplot2 in R?
- How to X-axis labels to the top of the plot using ggplot2 in R?
- How change the color of facet title using ggplot2 in R?
- How to reverse the X-axis labels of scatterplot created by using ggplot2 in R?
- How to change the partial plot background using ggplot2 in R?
- How to change the title size of a graph using ggplot2 in R?
- How to change the automatic sorting of X-axis of a bar plot using ggplot2 in R?
- How to display positive sign for X-axis labels in R using ggplot2?
- How to increase the X-axis labels font size using ggplot2 in R?
- R Programming how to display both axes’ labels of a ggplot2 graph in italics?
- How to represent all values of X-axis or Y-axis on the graph in R using ggplot2 package?
- How to align the bars of a barplot with the X-axis using ggplot2 in R?
- How to change the orientation and font size of x-axis labels using ggplot2 in R?

Advertisements