Assignment title: Information
Program Hospital Data Analysis
Assignment Specification
The Dataset:
The dataset is a collection of cases handled across various hospitals across USA with the hospital name along with their address, condition of the patient and so on. The data set in sorted in the order of the states.
The columns/values represent the following:
Provider ID
Hospital Name
Address
City
State
ZIP Code
County Name
Phone Number
Condition
Measure ID
Measure Name
Score
Sample
Footnote
Measure
Start Date
Measure End Date
Description: Provide an answer to the question: Which health tops in the country? Which states suffers the most health? Create a charts using bokeh bar chart pie chart on the basis of the number of health issues.
Input: No user input. The input is the file hospitalcare.csv
Procedure:
Part 1: Python script – method
1. Read in the hospitalcare.csv file and create list-of-lists data
2. Count the number of input lines as you are creating your list of lists. Print the number along with an appropriate heading. Note that since the lines of data will be stored as a list of lists, numbering starts with 0.
3. Using Bokeh, create the following 4 plots:
Types of health care issues with the graph (types of health problems as X axis and the number in Y axis)
Line Plot
Scatter plot
Bar Plot
Pie Chart
4. Print the number of various health issues with the correct count.
Because you will be using a lot of code, it is important to show that you know what it does and why that is needed for the analysis. Your comments must explain this thoroughly for each item in detail.