5
One of the graphs I find most interesting is called, in English, heatmap Calendar. Perhaps its most common application is in github, that displays our collaborations in the last year with the chart below:
How is it possible to create a visualization like this in R? Below I provide the values of the Bovespa index in the last 5 years for those who want to contribute a response.
library(BatchGetSymbols)
bvsp <- BatchGetSymbols('^BVSP',
first.date = as.Date("2015-01-01"),
last.date = as.Date("2019-12-31"))
Maybe the package
devtools::install_github("jayjacobs/ggcal")
can help. Or this post from R-bloggers.– Rui Barradas
The name of this type of graphic "waffle Chart" or square pizza chart. I won’t be able to respond quickly, but these projects should help: hrbrmstr/waffle and liamgilbey/ggwaffle
– Tomás Barcellos
The "challenge" of the case will be to expand the data to 365 days of the year and then plot the chart
– Tomás Barcellos