Last active
May 2, 2019 23:14
Revisions
-
rafapereirabr renamed this gist
Mar 15, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
rafapereirabr revised this gist
Mar 15, 2019 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,6 @@ library(tidyverse) library(maps) temp <- maps::world.cities %>% ggplot() + geom_point(aes(x=long, y=lat, size=pop, fill=pop, color=pop), alpha=.1, show.legend = FALSE) + -
rafapereirabr revised this gist
Mar 15, 2019 . 2 changed files with 1 addition and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@  This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,5 +10,3 @@ temp <- maps::world.cities %>% coord_equal() ggsave( temp, file="pop.png", dpi = 300, width = 20, height = 10) -
rafapereirabr revised this gist
Mar 15, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,4 +9,6 @@ temp <- maps::world.cities %>% theme_void() + coord_equal() ggsave( temp, file="pop.png", dpi = 300, width = 20, height = 10)  -
rafapereirabr revised this gist
Mar 15, 2019 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ library(tidyverse) library(maps) @@ -10,6 +9,4 @@ temp <- maps::world.cities %>% theme_void() + coord_equal() ggsave( temp, file="pop.png", dpi = 300, width = 20, height = 10) -
rafapereirabr revised this gist
Mar 15, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ library(tidyverse) library(maps) @@ -12,4 +12,4 @@ temp <- maps::world.cities %>% ggsave( temp, file="pop.png", dpi = 300, width = 20, height = 10) -
rafapereirabr created this gist
Mar 15, 2019 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ ``` library(tidyverse) library(maps) data(world.cities) temp <- maps::world.cities %>% ggplot() + geom_point(aes(x=long, y=lat, size=pop, fill=pop, color=pop), alpha=.1, show.legend = FALSE) + theme_void() + coord_equal() ggsave( temp, file="pop.png", dpi = 300, width = 20, height = 10) ```