Skip to content

Commit bb44de6

Browse files
authored
Update Chapter_4.r
1 parent fe7fc35 commit bb44de6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Chapter04/Chapter_4.r

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ library(readr)
66
options(repr.plot.width = 6, repr.plot.height = 6)
77
Iris <- read.csv('Iris.csv')
88
class(Iris)
9-
[1] "data.frame"
9+
#[1] "data.frame"
1010
View(Iris)
1111
head(Iris)
1212

@@ -15,7 +15,7 @@ summary(Iris)
1515

1616
ggplot(data=Iris,aes(x=SepalWidthCm, y=SepalLengthCm)) + geom_point() + theme_minimal()
1717
ggplot(data=Iris,aes(x=SepalWidthCm, y=SepalLengthCm,color=Species)) + geom_point() + theme_minimal()
18-
Creating histograms
18+
#Creating histograms
1919
hist(iris$Sepal.Width, freq=NULL, density=NULL, breaks=12,
2020
xlab="Sepal Width", ylab="Frequency", main="Histogram of Sepal Width")
2121

0 commit comments

Comments
 (0)