Genre by ticket type
A view of your sales
data that covers movie_genre
performance in by each ticket_type
has been created for you as genre_ticket_totals
. Feel free to use the .head()
method to explore it in your console.
This is another great opportunity to use the hue
parameter of sns.barplot()
to investigate the performance of each movie genre across seniors, adults, and children via ticket_type
column.
Diese Übung ist Teil des Kurses
Python for Spreadsheet Users
Anleitung zur Übung
- Create a bar plot of
genre_ticket_totals
withticket_type
on the x-axis,ticket_quantity
on the y-axis, and hue broken down bymovie_genre
. - Add the title
Genre Turnout by Ticket Type
, as well as x- and y-axis labels asTicket Type
andTickets Sold
, respectively.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Create barplot
# Add labels
plt.show()