Hello, dear friend, you can consult us at any time if you have any questions, add WeChat: THEend8_
Programming Assignment 6
Getting started
Review class handouts and examples, work on the reading and practice assignments posted on the course
schedule. This assignment is designed to practice data manipulation with Pandas and plotting with
Matplotlib.
Programming Project: Plotting worth: 25 points
Create a plot and barcharts visualizing hotel ratings.
Data and program overview
In this assignment you will be working with data on hotel reviews. The task will be to create a plot showing
mean ratings and number of reviews for a selection of hotels in a chosen state, and a barchart that shows
percentage of reviews.
The following data will be provided using csv files:
? A table with information on hotel location (hotels.csv); we will call this the hotel data.
? A table with records of customer reviews of their stays in the hotels (hotelreviews.csv); referred to
henceforth as the reviews data.
Each review references the hotel name and city; these parameters uniquely identify the
corresponding hotel in the hotel data.