parent
4b505b0f86
commit
c6985f2b59
|
@ -438,7 +438,7 @@ ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
||||||
```{r echo = FALSE, fig.width = 3, out.width = "50%", fig.align = "default", message = FALSE}
|
```{r echo = FALSE, fig.width = 3, out.width = "50%", fig.align = "default", message = FALSE}
|
||||||
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
||||||
geom_point() +
|
geom_point() +
|
||||||
geom_smooth(aes(group = drv), se = FALSE)
|
geom_smooth(se = FALSE)
|
||||||
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
||||||
geom_smooth(aes(group = drv), se = FALSE) +
|
geom_smooth(aes(group = drv), se = FALSE) +
|
||||||
geom_point()
|
geom_point()
|
||||||
|
|
Loading…
Reference in New Issue