Bokeh + Pandas
πΌ What is Pandas?
Pandas is Python's most popular data analysis library...
π The Dataset
We're analyzing 20,837 AirBnb listings...
- Host ID and listing count
- Neighborhood and borough
- Room type (entire home, private room, shared)
- Price per night
- Number of reviews and review scores
- Availability throughout the year
π Data Analysis Patterns
Each chart demonstrates common Pandas operations:
- Correlation: df.corr() finds relationships...
- Value Counts: df.column.value_counts()...
- Filtering: df[df.price < 500]...
- Grouping: df.groupby('room_type').mean()...
- Sorting: df.sort_values('price')...
π‘ Loading Data
The CSV is loaded using Pandas' read_csv()...
π¨ Why Bokeh?
Bokeh excels at creating interactive visualizations...