-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.Rhistory
More file actions
52 lines (52 loc) · 1.77 KB
/
Copy path.Rhistory
File metadata and controls
52 lines (52 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
library(tigris)
library(rnaturalearth)
help(state.name)
nation(resolution = "5m")
head(nation())
ggplot(nation(), aes(lon, lat)) + geom_polygon(fill = "white", colour = "grey50") + coord_quickmap()
library(ggplot2)
ggplot(nation(), aes(lon, lat)) + geom_polygon(fill = "white", colour = "grey50") + coord_quickmap()
ggplot(nation()) + geom_polygon(fill = "white", colour = "grey50") + coord_quickmap()
geom_polygon(nation())
ggplot2::map_data()
ggplot2::map_data("county", "washington")
wa_counties <- ggplot2::map_data("county", "washington") %>%
selection(lon = long, lat, group, id = subregion)
wa_counties <- ggplot2::map_data("county", "washington") %>%
select(lon = long, lat, group, id = subregion)
wa_counties <- ggplot2::map_data("county", "washington") %>%
)
help(coord_sf())
help("coord_sf")
help("map_data")
wa_counties <- map_data("county", "washington") %>% select(lon = long, lat, group, id = subregion)
help("select")
install.packages("Select")
wa_counties <- map_data("county", "washington") %>% select(lon = long, lat, group, id = subregion)
library(Select)
wa_counties <- map_data("county", "washington") %>% select(lon = long, lat, group, id = subregion)
getVERSION()
R.version.string
update.packages(ask = TRUE, checkBuilt = TRUE)
update.packages(ask = FALSE, checkBuilt = TRUE)
cls
R.version.string
library(installr)
if(require('installr')==FALSE) install.packages('installr')
library(installr)
updateR()
which git
git --version
install.packages("gitcreds")
gitcreds::gitcreds_set()
install.packages('rmarkdown')
if (!requireNamespace("devtools"))
install.packages('devtools')
devtools::install_github('rstudio/rmarkdown')
install.packages('Rtools')
bslib::bootswatch_themes()
library(quarto)
install.package('quarto')
install.packages("quarto")
library(quarto)
names(knitr::knit_engines$get())