How to put the title inside the plot using ggplot2 in R? Last Updated : 08 Nov, 2022 Comments Improve Suggest changes 1 Likes Like Report A title to a plot gives information about the graph so that it is easier for the reader to interpret what relations the variables are supposed to depict. This article discusses how we can put a title inside a plot and further discusses various ways in which the title can be formatted. The examples are given below use bar plot. To add title within a plot ggtitle() function is used. Syntax: ggtitle("Title For Plot") Later to add this title to the plot we simply have to set margins. Approach Specify the data object. it has to be a data frame, and it needs one numeric and one categorical variable.Call ggplot2() function and put first parameter 'data' and then set the aesthetics function 'aes()'.Inside aes() function, set the categorical variable for the X axis, use the numeric for the Y axis.Call geom_bar() with ggtitle().Add marginsDisplay plot Example 1: R library(ggplot2) data <- data.frame( name=c("A","B","C","D","E") , value=c(3,12,5,18,45) ) ggplot(data, aes(x=name, y=value)) + geom_bar(stat = "identity", fill = "green")+ ggtitle("Title For Barplot")+ theme(plot.title=element_text(margin=margin(t=40,b=-30))) Output: Customization of Title of plot using ggplot2 It is a common need to set the title in several lines. To add a break in the title, simply write '\n' in the text. If you want to bold or highlight some word(s) then just use expression() function. This section depicts how the title inserted can be formatted accordingly. Example 1: R library(ggplot2) data <- data.frame( name=c("A","B","C","D","E") , value=c(3,12,5,18,45) ) # For Add Some Several Lines ggplot(data, aes(x=name, y=value)) + geom_bar(stat = "identity", fill = "green")+ ggtitle("New Line Title \n For Barplot") + theme_minimal() # For Highlight Some Word Or Words my_title <- expression(paste("This is barplot with ", bold("Bold Title"))) ggplot(data, aes(x=name, y=value)) + geom_bar(stat = "identity", fill = "green")+ ggtitle(my_title) + theme(plot.title=element_text(margin=margin(t=40,b=-30))) Output: Now let's modify our title appearance and position by theme() Function with plot.title parameter. The Appearance can be adjusted with family, face, color, or size. When position can be changed using hjust & vjust. Example 2: R library(ggplot2) data <- data.frame( name=c("A","B","C","D","E") , value=c(3,12,5,18,45) ) # Customise Title Appearance ggplot(data, aes(x=name, y=value)) + geom_bar(stat = "identity", fill = "green")+ ggtitle("A Green & Bold Title") + theme_minimal() + theme( plot.title=element_text(family='', face='bold', colour='green', size=26, margin=margin(t=40,b=-30)) ) . Output: Example 3: R library(ggplot2) data <- data.frame( name=c("A","B","C","D","E") , value=c(3,12,5,18,45) ) # Change Position of Title ggplot(data, aes(x=name, y=value)) + geom_bar(stat = "identity", fill = "green")+ ggtitle("Plot with right sided Title") + theme_minimal() + theme( plot.title=element_text( hjust=1, vjust=0.5, face='bold', margin=margin(t=40,b=-30)) ) Output: Create Quiz Comment E erkrutikpatel Follow 1 Improve E erkrutikpatel Follow 1 Improve Article Tags : R Language R-ggplot Explore IntroductionR Programming Language - Introduction 4 min read Interesting Facts about R Programming Language 4 min read R vs Python 5 min read Environments in R Programming 3 min read Introduction to R Studio 4 min read How to Install R and R Studio? 4 min read Creation and Execution of R File in R Studio 5 min read Clear the Console and the Environment in R Studio 2 min read Hello World in R Programming 2 min read Fundamentals of RBasic Syntax in R Programming 3 min read Comments in R 3 min read R-Operators 5 min read R-Keywords 2 min read R-Data Types 5 min read VariablesR Variables - Creating, Naming and Using Variables in R 5 min read Scope of Variable in R 5 min read Dynamic Scoping in R Programming 5 min read Lexical Scoping in R Programming 4 min read Input/OutputTaking Input from User in R Programming 7 min read Printing Output of an R Program 4 min read Print the Argument to the Screen in R Programming - print() Function 2 min read Control FlowControl Statements in R Programming 4 min read Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switch 3 min read Switch case in R 2 min read For loop in R 5 min read R - while loop 5 min read R - Repeat loop 2 min read goto statement in R Programming 2 min read Break and Next statements in R 3 min read FunctionsFunctions in R Programming 5 min read Function Arguments in R Programming 4 min read Types of Functions in R Programming 6 min read Recursive Functions in R Programming 4 min read Conversion Functions in R Programming 4 min read Data StructuresData Structures in R Programming 4 min read R Strings 6 min read R-Vectors 4 min read R-Lists 6 min read R - Array 7 min read R-Matrices 10 min read R-Factors 4 min read R-Data Frames 6 min read Object Oriented ProgrammingR-Object Oriented Programming 7 min read Classes in R Programming 3 min read R-Objects 3 min read Encapsulation in R Programming 3 min read Polymorphism in R Programming 6 min read R - Inheritance 7 min read Abstraction in R Programming 3 min read Looping over Objects in R Programming 5 min read S3 class in R Programming 8 min read Explicit Coercion in R Programming 3 min read Error HandlingHandling Errors in R Programming 3 min read Condition Handling in R Programming 5 min read Debugging in R Programming 3 min read File HandlingFile Handling in R Programming 3 min read Reading Files in R Programming 9 min read Writing to Files in R Programming 2 min read Working with Binary Files in R Programming 5 min read Like