Skip to content

Instantly share code, notes, and snippets.

@mribeirodantas
Last active April 6, 2020 18:14
Show Gist options
  • Select an option

  • Save mribeirodantas/44a2e2cca032ba395d0aa8713cf90060 to your computer and use it in GitHub Desktop.

Select an option

Save mribeirodantas/44a2e2cca032ba395d0aa8713cf90060 to your computer and use it in GitHub Desktop.
ggplot(df, aes(x=total, y=retail_and_recreation,size=pop,color=dens_demo)) +
geom_point(shape=19) +
geom_smooth() +
scale_color_gradient(name = "Densidade\ndemográfica", low="blue", high="red",
labels = c('100 hab/km²',
'200 hab/km²',
'300 hab/km²',
'400 hab/km²',
'500 hab/km²')) +
scale_size_continuous(name = "População", labels = c('1 milhão hab',
'10 milhões hab',
'20 milhões hab',
'30 milhões hab',
'40 milhões hab',
'50 milhões hab')) +
xlab('Número total de casos confirmados em 5 de Abril') +
ylab('Variação de mobilidade para fins de\n lazer e varejo') +
labs(caption = "Ribeiro-Dantas, MC. April, 2020. mribeirodantas.xyz/blog") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
scale_x_continuous(labels = function(x) paste0(sprintf("%0.0f", x), '%')) +
scale_x_continuous(trans='log10') +
ggtitle("Total de casos confirmados e deslocamento") +
ggrepel::geom_label_repel(aes(label = df$estado), size=3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment