How to Create Added Variable Plots in R?
Last Updated : 16 Dec, 2021
In this article, we will discuss how to create an added variable plot in the R Programming Language.
The Added variable plot is an individual plot that displays the relationship between a response variable and one predictor variable in a multiple linear regression model while controlling for the presence of other predictor variables in the model. It is also known as the Partial Regression Plot. These Plots allow us to visualize the relationship between each individual predictor variable and the response variable in a model while holding other predictor variables constant.
Install - install.packages("car")
Now we select desired cran mirror to install the package and then load the package and use the following syntax to create the Added Variable Plot.
Syntax:
avPlots( linear_model )
where,
- linear_model: determines the model to be visualized.
Example:
Here is a basic added variable plot example made using the avPlots() function. The dataset used in the example is the diamonds dataset which is provided by the R Language natively.
R # load library car and tidyverse library(car) library(tidyverse) # fit multiple linear regression model # on the data linear_model <- lm(price ~ depth + table + carat + x + y + z, data = diamonds) # visualize linear regression model using # avPlots function avPlots(linear_model)
Output:

Layout Customization
We can customization the layout of the grid in the avPlots() function by using the layout parameter of the avPlots() function. The layout function takes in a vector as an argument which contains the number of columns and the number of rows variable. These two values determine the layout of the grid.
Syntax:
avPlots( linear_model, layout= c(column, row) )
where,
- linear_model: determines the model to be visualized.
- column: determines the number of columns in the layout grid.
- row: determines the number of rows in the layout grid.
Example:
Here, in this example, we have made added variable plot with a 2X3 grid using layout parameters. The dataset used in the example is the diamonds dataset which is provided by the R Language natively.
R # load library car and tidyverse library(car) library(tidyverse) # fit multiple linear regression model # on the data linear_model <- lm(price ~ depth + table + carat + x + y + z, data = diamonds) # visualize linear regression model using # avPlots function Use layout parameter for # setting the layout of the plot avPlots(linear_model, layout= c(2,3))
Output:

Color and Shape Customization
We can customize the shape, color, and dimension of the plotted objects i.e. lines and points by using tuning parameters of the avPlots() function. We use col, col.lines, pch, and lwd parameters to change the color of plotted points, the color of plotted lines, the shape of plotted data point, and the width of plotted line respectively.
Syntax:
avPlots( linear_model, col, col.lines, pch, lwd)
where,
- linear_model: determines the model to be visualized.
- col: determines the color of plotted points.
- col.lines: determines the color of plotted lines.
- pch: determines the shape of plotted points.
- lwd: determines the line width for the plotted line.
Example:
Here, is a basic added variable plot with red color points and green color lines with custom shape and width. The dataset used in the example is the diamonds dataset which is provided by the R Language natively.
R # load library car and tidyverse library(car) library(tidyverse) # fit multiple linear regression model on the data linear_model <- lm(price ~ depth + table + carat + x + y + z, data = diamonds) # visualize linear regression model using avPlots function # Use customization parameters to customize the plot avPlots(linear_model, col="Red", col.lines="green", pch=14, lwd=2)
Output:
Similar Reads
How to Create and Visualise Volcano Plot in R
In R, a volcano plot is commonly used in bioinformatics and genomics to visualize differential expression analysis results. It displays fold change on the x-axis and statistical significance on the y-axis, typically represented as -log10(p-value). Volcano plots provide a concise way to identify sign
6 min read
How to Create a Histogram of Two Variables in R?
In this article, we will discuss how to create a histogram of two variables in the R programming language. Method 1: Creating a histogram of two variables with base R In this approach to create a histogram pf two variables, the user needs to call the hist() function twice as there is two number of v
2 min read
How to Create a Forest Plot in R?
In this article, we will discuss how to create a Forest Plot in the R programming language. A forest plot is also known as a blobbogram. It helps us to visualize estimated results from a certain number of studies together along with the overall results in a single plot. It is extensively used in med
4 min read
How to Create a Log-Log Plot in R?
In this article, we will discuss how to create a Log-Log plot in the R Programming Language. A log-log plot is a plot that uses logarithmic scales on both the axes i.e., the x-axis and the y-axis.We can create a Log-Log plot in the R language by following methods. Log-Log Plot in Base R: To create a
2 min read
How to Create a Bland-Altman Plot in R?
In this article, we will discuss how to create a Bland-Altman Plot in the R programming Language. The Bland-Altman plot helps us to visualize the difference in measurements between two different measurement techniques. It is used vastly in the field of biochemistry. It is useful for determining how
3 min read
How to Graph three variables in Excel
Creating graphs in Excel is essential for visualizing relationships between variables. When working with three variables, a graph can provide powerful insights into how they interact. While Excel doesnât directly offer a built-in chart specifically for three variables, you can use its customization
6 min read
How to Create a Scatterplot in R with Multiple Variables?
In this article, we will be looking at the way to create a scatter plot with multiple variables in the R programming language. Â Using Plot() And Points() Function In Base R: In this approach to create a scatter plot with multiple variables, the user needs to call the plot() function Plot() function:
3 min read
How to create a reusable plot_ly function in R
In data visualization, reusability and consistency are crucial for maintaining clarity and efficiency. Plotly is the powerful library in the R for creating interactive plots. By encapsulating the plotting logic into the reusable functions. We can streamline the plotting process and it can ensure uni
5 min read
How to Create and Interpret Pairs Plots in R?
In this article, we will discuss how to create and interpret Pair Plots in the R Language. The Pair Plot helps us to visualize the distribution of single variables as well as relationships between two variables. They are a great method to identify trends between variables for follow-up analysis. Pai
4 min read
How to plot user-defined functions in R?
Plotting user-defined functions in R is a common task for visualizing mathematical functions, statistical models, or custom data transformations. This article provides a comprehensive guide on how to plot user-defined functions in R, including creating simple plots, enhancing them with additional fe
3 min read