# FMSF86 / FMSF90 / FMSF90F
## Lab1: Data visualization
2024-01-23
## Logistics
This is the same workshop as Wed Jan 17 (10-12 and 13-15)
## Access
This notebook can be reached at
# https://hackmd.io/@lwh/S1x3rBrYp
You can login and ask questions, share your notes and collaborate with us.
## Posit Cloud
Please, create an account in Posit Cloud and [go here](https://posit.cloud/content/7342588)
```{r}
#install.packages("gapminder")
#install.packages("tidyverse")
library(tidyverse)
```
If this works then you can proceed to load the gapminder data
```{r}
gapminder <- gapminder::gapminder
```
If it fails, take away the hash on line 2 above (= run `install.packages("gapminder")`)