πΎSaving Graphs in R
Create a Plot
# Load Data
data(mtcars)
# Create a basic graph
plot(x=mtcars$wt, y=mtcars$mpg, xlab = "wt", ylab = "mpg", frame = FALSE)
Saving Graphs
By RStudio


By R code
Last updated