Starting from:

$34.99

ITWS4250-6250 ITWS -Final Project Solution


Summary
For this project, you will find multiple publicly available datasets that share common attributes (e.g., Zipcode), create a normalized schema describing the structure of the data, and produce an application that can populate your schema with the data—including the ability to refresh the data—and run queries on the data, producing useful output.
Objective
There are several objectives for this assignment.
• Gain an awareness of the scope of datasets publicly available for research purposes
• Demonstrate an ability to understand the structure of a dataset, as well as an ability to apply that understanding, using concepts learned during class, to create an effective database schema
• Apply concepts learned during class to query the data, and extend those concepts to create an application allowing users to do the same
Description
Select two datasets that are robust enough to be interesting (a dataset with only four columns and a few thousand rows probably doesn’t qualify). Students taking the course for graduate credit need to select two additional datasets, for a total of four. They should share a common attribute (or set of attributes). Create a SQL schema for your data, making sure that it’s appropriately normalized. Students taking the course for graduate credit need to use a non-relational database and schema for some portion of their data.
Create an application in Python 3 that will load the dataset into a Postgres database defined by your schema. The loading process should be able to be re-run with updated datasets to refresh the data in the database. Take some time to explore the data by running some SQL queries. Once you have an idea of some of the more interesting aspects of the data, create an interface for your application that will allow the user to explore the data as well.
Your application shouldn’t re-implement the wheel. You don’t need to provide the user with a way to do whatever they want. It should provide more of a self-guided tour, rather than a detailed map. It should provide interactivity beyond simply allowing the user to run one of five or six static queries, but it doesn’t have to allow them to write their own queries.
For example, there might be a dataset giving the results of health inspections of restaurants in New York. Your application might allow the user to see which restaurants in their area had violations, or how often a given restaurant received a violation, or whether restaurants in a certain area get more violations than other areas.
The interface can be text-based. If you want to go further and provide visualizations, that’s fantastic, but it isn’t within the scope of the project (you will not be graded on the appearance of your interface). Your application should be able to be built easily, the data loaded easily, and used easily.
You will demonstrate your application for the class in a short presentation in which you will discuss your choice of datasets, outline the design of your schema, and demonstrate the types of queries your application can perform.
All work will be done either individually or in teams of two.
Deliverables
There are four main deliverables:
• Project Memo
• Database Schema
• Project Code
• Presentation
Project Memo
The memo should provide the following information:
• The names of the members of your team
• The datasets you plan on using
– The location of the data
– Any relevant license information
– How you plan to join the datasets
Database Schema
Project Code
The final-project directory in the class git repo will eventually contain several files, along with an instructions.md file, which will provide more specific directions for how your code should be organized, and how it will be run during grading. Your project code submission should follow those instructions.
Presentation
2
Grading
This project will count as thirty percent (30%) of your total grade.
Points will awarded for the following:
• Schema design and definition. Does your schema accurately and effectively store the data, is it appropriately normalized, did you choose appropriate datatypes? (25pts)
• Application correctly loads the data. Note that this includes the code required by students taking the course for graduate credit for loading the data into the non-relational database of their choice. (20pts)
• Application facilitates exploration of the data. A user should be able to use your application to explore your chosen datasets. (25pts)
• Application conforms to best-practices. Your code should be clear and the components of your application well-organized. It shouldn’t contain any SQL-injection vulnerabilities (or their non-relational equivalents). (20pts)
• In-class presentation (10pts)
Note that if your application doesn’t correctly load the data, exploration of the data will likely be impossible, so while loading the data is only worth twenty points, if your application doesn’t load the data, it’s unlikely you’ll earn many of the points for facilitating exploration of the data.
3

More products