Speed Vs Stopping Distance
Speed Vs Stopping Distance
library(corrplot)
library(plotly)
?cars
View(cars)
plot(cars)
EVSU<-cars
plot(EVSU$speed, EVSU$dist,
xlab = "Speed (mph)",
ylab = "Stoppping Distance (ft)",
main = "Speed and Stopping Distances of Cars")
One<-cor(EVSU)
View(One)
corrplot(One,method = "circle")
corrplot(One, method = "number")
corrplot(One,method = "pie")
corrplot.mixed(One,
upper = "number",
lower = "circle",
addgrid.col = "maroon",
tl.col="maroon")