Skip to content

Commit

Permalink
Update iris-data-understanding.R
Browse files Browse the repository at this point in the history
  • Loading branch information
dataprofessor authored Dec 15, 2019
1 parent 3227dd6 commit 0b98285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iris/iris-data-understanding.R
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ hist(iris$Sepal.Width, col = "red") # Makes red bars

# Feature plots
# https://www.machinelearningplus.com/machine-learning/caret-package/
featurePlot(x = TrainingSet[,1:4],
y = TrainingSet$Species,
featurePlot(x = iris[,1:4],
y = iris$Species,
plot = "box",
strip=strip.custom(par.strip.text=list(cex=.7)),
scales = list(x = list(relation="free"),
Expand Down

0 comments on commit 0b98285

Please sign in to comment.