April 2018
Beginner
238 pages
7h 13m
English
We can use this script:
# load the iris datasetdata <- read.csv("http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data")#Let us also clean up the data so as to be more readablecolnames(data) <- c("sepal_length", "sepal_width", "petal_length", "petal_width", "species")# make sure the data is as expectedsummary(data)

Produce the Scatter plot:
plot(data$sepal_length, data$petal_length)

And produce the following visualizations of the relationships between the values. This plot is a stepwise look at how changing ...