Boa noite. O que foi apresentado na aula não executa no R.
Ao rodar as linhas:
ggplot(dados[dados$Renda, ], aes(x=Renda, y=after_stat(density)))
geom_histogram(binwidth = 500)
geom_density(color='green')
O R retorna o seguinte erro:
Error in `geom_blank()`:
! Problem while mapping stat to aesthetics.
ℹ Error occurred in the 1st layer.
Caused by error in `map_statistic()`:
! Aesthetics must be valid computed stats.
✖ The following aesthetics are invalid:
✖ `y = after_stat(density)`
ℹ Did you map your stat in the wrong layer?
Run `rlang::last_trace()` to see where the error occurred.
Onde está o erro na programação? A função ..density.. foi descontinuada. Então substitui, conforme instrução do R, por after_stat(density).
Mas não está dando certo. O que fazer? Obrigado!