NYC 311's mission is to provide the public with quick and easy access to all New York City government services and information while offering the best customer service. Each day, NYC311 receives thousands of requests related to several hundred types of non-emergency services, including noise complaints, plumbing issues, and illegally parked cars. These requests are received by NYC311 and forwarded to the relevant agencies such as the police, buildings, or transportation. The agency responds to the request, addresses it, and then closes it.
This is a data analysis of service request (311) calls from New York City. The focus on the data wrangling techniques to understand the pattern in the data and also visualize the major complaint types.
- Import a 311 NYC service request.
- Read or convert the columns ‘Created Date’ and Closed Date’ to datetime datatype and create a new column ‘Request_Closing_Time’ as the time elapsed between request creation and request closing. (Hint: Explore the package/module datetime)
- Provide major insights/patterns that you can offer in a visual format (graphs or tables); at least 4 major conclusions that you can come up with after generic data mining.
- Order the complaint types based on the average ‘Request_Closing_Time’, grouping them for different locations.
- Perform a statistical test for the following:
Please note: For the below statements you need to state the Null and Alternate and then provide a statistical test to accept or reject the Null Hypothesis along with the corresponding ‘p-value’.
●Whether the average response time across complaint types is similar or not (overall)
●Are the type of complaint or service requested and location related?
pip install --upgrade pip
pip install -r requirements.txt
pip list