I am tying to create a bar chart with text using the following tuple as the data in the tuple there are groups of lists that have a number which is number of cars followed by date and time. I am completely lost on how to iterate from the tuple into a graph successfully. Can someone please help? Here is the tuple:
data = [
(2,"12/21/2017 21:30"),
(8,"12/21/2017 22:30"),
(1,"12/22/2017 00:30"),
(1,"12/22/2017 01:30"),
(1,"12/22/2017 03:30"),
(2,"12/22/2017 05:30"),
(8,"12/22/2017 06:30"),
(3,"12/22/2017 07:30")
]