Filtering
You'll recall from our previous exercises that the most ticket sales were all occurring in Los Angeles, making it difficult to look at other theater locations' performances. If we wanted to look at a subset of our data, such as one theater location, we'll have to filter our data.
Cet exercice fait partie du cours
Python for Spreadsheet Users
Instructions
- Filter the
theater_location
column of sales for onlyNew York
- don't forget quotation marks! - Print the head of New York sales.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Import the pandas package as pd
import pandas as pd
# Read in the Excel file
sales = pd.read_excel('ticket_sales.xlsx')
# Filter for New York sales only
new_york_sales = sales[sales[____] == ____].reset_index(drop=True)
# Print the first 5 rows of new_york_sales
____(new_york_sales.____())