Skip to content
Snippets Groups Projects
Unverified Commit f1c71244 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

.gitignore update

parent 5ef68ffd
No related branches found
No related tags found
No related merge requests found
.Rproj.user
.Rhistory
.RData
.Ruserdata
session_*/*.html
session_*/*.pdf
session_*/*.log
session_*/slides_cache
session_*/slides_files
*.Rproj
session_3/img/visualization-stat-bar.png

257 KiB

...@@ -222,14 +222,23 @@ ggplot(data = mpg) + ...@@ -222,14 +222,23 @@ ggplot(data = mpg) +
## Coordinate systems ## Coordinate systems
```{r mpg_jitter_quickmap, cache = TRUE, fig.width=4.5, fig.height=3.5, message=FALSE} ```{r mpg_jitter_quickmap, cache = TRUE, fig.width=3.5, fig.height=3.5, message=FALSE}
ggplot(data = mpg) + ggplot(data = mpg) +
geom_jitter(mapping = aes(x = cty, y = hwy)) + geom_jitter(mapping = aes(x = cty, y = hwy)) +
coord_quickmap() coord_quickmap()
``` ```
## Coordinate systems ## Coordinate systems
```{r diamonds_bar_polar, cache = TRUE, fig.width=8, fig.height=4.5, message=FALSE}
```{r mpg_jitter_log, cache = TRUE, fig.width=8.5, fig.height=3.5, message=FALSE}
ggplot(data = mpg) +
geom_jitter(mapping = aes(x = cty, y = hwy)) +
scale_y_log10() +
scale_x_log10()
```
## Coordinate systems
```{r diamonds_bar_polar, cache = TRUE, fig.width=5, fig.height=3.5, message=FALSE}
bar + coord_polar() bar + coord_polar()
``` ```
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment