fathomson
9 years agoAdvocate II
Schedule view
Description A relatively simple visualization to show start-stop of events at locations. Can be roomscheduling but also a production process with specific states at a given time. Although i...
Anonymous
8 years agoNot applicable
Good morning!
Congrats for the great job. :-)
It is very useful for me.
One question: where is defined the variable datetime_start?
ggplot(dataset,aes(x=datetime_start, y=dataset$Room, color=Person)) +
geom_segment(aes(x=From,xend=To,yend=dataset$Room),size=15) +
scale_colour_discrete(guide=guide_legend(override.aes=list(size=10))) +
ggtitle("Room reservations for building X") + xlab("") + ylab("") + theme_bw()
Thanks for your time! :-)
- boefraty8 years agoMicrosoft Employee
Hi Anonymous,
Sorry for delay in reponse. Do you still need help to your project?
To your question datetime_start is a typo in code. Luckily it was ignored by ggplot because aes is replaced.