Visualizations in R
R
How to Add Vertical Line to Histogram in R
You can use the following methods to add a vertical line to a histogram in R:
Method 1: Add Solid Vertical Line at Specific Location
abline(v=2)
This...
R
How to Extract RMSE from lm() Function in R
You can use the following syntax to extract the root mean square error (RMSE) from the lm() function in R:
sqrt(mean(model$residuals^2))
The following example shows how...
R
How to Extract Standard Errors from lm() Function in R
You can use the following methods to extract the residual standard error along with the standard error of the individual regression coefficients from the...
R
How to Extract R-Squared from lm() Function in R
You can use the following syntax to extract the R-squared and adjusted R-squared values from the lm() function in R:
#extract R-squared
summary(model)$adj.r.squared
#extract adjusted R-squared
summary(model)$adj.r.squared
The following...
R
How to Create a Bubble Chart in R
A bubble chart is a type of chart that allows you to visualize three variables in a dataset at once.
The first two variables are...
R
How to Plot SVM Object in R (With Example)
You can use the following basic syntax to plot an SVM (support vector machine) object in R:
library(e1071)
plot(svm_model, df)
In this example, df is the name...
R
How to Plot a Decision Tree in R (With Example)
In machine learning, a decision tree is a type of model that uses a set of predictor variables to build a decision tree that...
Subscribe
- Never miss a story with notifications
- Gain full access to our premium content
- Browse free from up to 5 devices at once
Must read