-2

You have numeric predictions that you want to show on a calendar.

How can you visualise predictions about calendar data in R with ggplot2?

hhh
  • 50,788
  • 62
  • 179
  • 282

1 Answers1

2

I gather below some ideas, I haven't found any single general-purpose package for this yet.


General ideas to visualise calendar data in R

  1. Heatmap like green-red to illustrate large-small predictions
  2. Star symbol on dates to show special days
  3. Lines over days to show special long-term events
  4. Chart fusion ideas here

ggplot2 solutions to visualise calendar data in R

  1. Creating a monthly/yearly calendar image with ggplot2

  2. Openair package here, article here and referenced article here (used originally for air pollutation visualisation but works for calendar week visualisation)

enter image description here

  1. Some heatmap showing the weekday status here

enter image description here

Other questions on calendar data

  1. Calendar Time Series with R
hhh
  • 50,788
  • 62
  • 179
  • 282