Merging for ticket prices
So it turns out our tickets for adults, children, and seniors cost different dollar amounts!
Currently loaded are two DataFrames:
ticket_type_sales- A summary of tickets sold to adults, children, and seniorsticket_prices- A table of how much tickets cost for each ticket type
Feel free to check them out in the console to get a better understanding of them.
Let's merge ticket_type_sales with ticket_prices to calculate revenue by ticket type!
Este ejercicio forma parte del curso
Python for Spreadsheet Users
Instrucciones del ejercicio
- Use the
.merge()method onticket_type_salesto join theticket_pricesDataFrame on theticket_typecolumn. - Create a
revenuecolumn insales_completethat equalstickets_soldmultiplied byticket_price.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Join the tables
sales_complete = ticket_type_sales.____(____, ____, ____)
# Add a revenue column
____ = ____ * ____
# Print the table
print(sales_complete)