logo

Crowdly

This question is about visualising temporal data. The example data is on ped...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

This question is about visualising temporal data.

The example data is on pedestrian counts in the city of Melbourne. The below plot looks at distribution of the pedestrian counts over weekdays in March across 24hrs, comparing 2019 to 2020.

ped %>%

ggplot(aes(x=Time, y=Count, group=Date, colour=as.factor(year))) +

geom_boxplot() +

facet_wrap(~ year, ncol= 1, scales = "free") +

scale_colour_brewer("", palette="Dark2") +

theme(legend.position="bottom", legend.title = element_blank())

Image failed to load

By looking at the above plots, select all statements that are TRUE.

More questions like this

Want instant access to all verified answers on learning.monash.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!