Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e37cf9f

Browse files
committed
Update 2021-08-04-strip-charts.Rmd
1 parent 343283a commit e37cf9f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

ggplot2/2021-08-04-strip-charts.Rmd

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ library(ggplot2)
2626
2727
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
2828
29-
ggplot(ToothGrowth, aes(x=dose, y=len)) +
30-
geom_jitter()
31-
32-
p<-ggplot(ToothGrowth, aes(x=dose, y=len)) +
29+
p <- ggplot(ToothGrowth, aes(x=dose, y=len)) +
3330
geom_jitter(position=position_jitter(0.2))
3431
p <- p + coord_flip()
3532

0 commit comments

Comments
 (0)