[Solved] CS1656 Project4-SQL

$25

File Name: CS1656_Project4-SQL.zip
File Size: 178.98 KB

SKU: [Solved] CS1656 Project4-SQL Category: Tag:
5/5 - (1 vote)

### DescriptionThis is the **fourth assignment** for the CS 1656 Introduction to Data Science (CS 2056) class, for the Fall 2018 semester.

### GoalThe goal of this assignment is for you to gain familiarity with SQL.

### What to do

In this assignment you are asked to:* update a skeleton Python script (`moviepro.py`) in order to read input from CSV files and insert the data into the `cs1656.sqlite` database, and* provide SQL queries that answer 12 questions.

The provided skeleton Python script includes database initialization commands and also includes commands to run the SQL queries and store their output in separate output files, which you should not modify. What you should update are the parts of the script that are responsible for reading in the input data (and inserting it into the database) and for specifying the 12 SQL queries.

### Database Schema

The **schema** of the database is embedded in the `moviepro.py` Python script and should not be modified. It is as follows:* Actors (aid, fname, lname, gender)* Movies (mid, title, year, rank)* Directors (did, fname, lname)* Cast (aid, mid, role)* Movie_Director (did, mid)

### Reading input from CSV files [10 points]

Your program should first **read input** from the following CSV files:* `actors.csv`, containing data for the Actors table,* `cast.csv`, containing data for the Cast table,* `directors.csv`, containing data for the Directors table,* `movie_dir.csv`, containing data for the Movie_Director table, and* `movies.csv`, containing data for the Movies table.

All the data **should be inserted into the appropriate tables** into the `cs1656.sqlite` database. Sample insert statements have been provided in the `moviepro.py` script, but you are not restricted to doing the insertions in exactly the same way. You should replace these statements with your code.

Samples of all these CSV files are provided as part of this repository. We will grade your project with different input files, but the expectation is that the filenames will be the same and the files will be in the directory where we execute your script.

### Queries [90 points]

You are asked to provide SQL queries that provide answers for the following questions. Note that **actors** refers to both male and female actors, unless explicitely specified otherwise. Also note that you should not rely on the data provided in the sample CSV files for any of the answers; the datasets will be replaced with bigger files. As such, there are no correct answers. Being able to debug your own queries is considered part of the assignment. Finally, please note that you may define views, etc, as part of other queries.

* **[Q01 / 6 points]** List all the actors (first and last name) who acted in at least one film in the 90s (1990-1999, both ends inclusive) and in at least one film after 2009. Sort all actor names alphabetically (last name, first name).

* **[Q02 / 7 points]** List all the movies (title, year) that were released in the same year as the movie entitled `Star Wars VII: The Force Awakens`, but had a better rank than it (Note: the higher the value in the *rank* attribute, the better the rank of the movie). Sort alphabetically by movie title.

* **[Q03 / 7 points]** List all the actors (first and last name) who played in a Star Wars movie (i.e., title like %Star Wars%) in decreasing order of how many Star Wars movies they appeared in. If an actor plays multiple roles in the same movie, count that still as one movie.

* **[Q04 / 7 points]** Find the actor(s) (first and last name) who **only** acted in films released before 1987. Sort all actor names alphabetically (last name, first name).

* **[Q05 / 8 points]** List the top 20 directors in descending order of the number of films they directed (first name, last name, number of films directed). For simplicity, feel free to ignore ties at the number 20 spot (i.e., always show up to 20 only).

* **[Q06 / 8 points]** Find the top 20 movies with the largest cast (title, number of cast members) in decreasing order. Note: show **all movies** in case of a tie for the 20th spot.

* **[Q07 / 8 points]** Find the movie(s) whose cast has more actresses than actors (i.e., gender=female vs gender=male). Show the movie title, the number of actresses, and the number of actors in the results. Sort alphabetically by movie title.

* **[Q08 / 8 points]** Find all the actors who have worked with at least 6 different directors. Do not consider cases of self-directing (i.e., when the director is also an actor in a movie), but count all directors in a movie towards the threshold of 6 directors. Show the actors first, last name, and the number of directors he/she has worked with. Sort in decreasing order of number of directors.

* **[Q09 / 7 points]** For all actors whose first name starts with an S, count the movies that he/she appeared in his/her debut year (i.e., year of their first movie). Show the actors first and last name, plus the count. Sort by decreasing order of the count.

* **[Q10 / 7 points]** Find instances of nepotism between actors and directors, i.e., an actor in a movie and the director having the same last name, but a different first name. Show the last name and the title of the movie, sorted alphabetically by last name.

* **[Q11 / 9 points]** The Bacon number of an actor is the length of the *shortest path* between the actor and Kevin Bacon in the *co-acting* graph. That is, Kevin Bacon has Bacon number 0; all actors who acted in the same movie as him have Bacon number 1; all actors who acted in the same film as some actor with Bacon number 1 have Bacon number 2, etc. You can familiarize yourself with the concept, by visiting [The Oracle of Bacon](https://oracleofbacon.org).The Bacon number can be trivially generalized to any actor, where we use that actor as the anchor actor. For this question, assume we are using Tom Hanks as the anchor actor, instead of Kevin Bacon.List all actors whose **Hanks number** is 2 (first name, last name). Sort actor names alphabetically (last name, first name).

* **[Q12 / 8 points]** Assume that the *popularity* of an actor is reflected by the average *rank* of all the movies he/she has acted in. Find the top 20 most popular actors (in descreasing order of popularity) list the actors first/last name, the total number of movies he/she has acted, and his/her popularity score. For simplicity, feel free to ignore ties at the number 20 spot (i.e., always show up to 20 only).

### Important notes about gradingIt is absolutely imperative that your python program:* runs without any syntax or other errors (using Python3) we will run it using the following command:`python3 moviepro.py`* strictly adheres to the format specifications for input and output, as explained above.

Failure in any of the above will result in **severe** point loss.

### Allowed Python LibrariesYou are allowed to use the following Python libraries:`argparsecollectionscsvglobospandasrestringsqlite3sys`If you would like to use any other libraries, you must ask permission by Thursday, November 29, 2018, using [piazza](http://piazza.cs1656.org).

### How to submit your assignmentFor this assignment, you must use the repository that was created for you after visiting the classroom link. You need to update the file `moviepro.py` as described above, and add other files that are needed for running your program. You need to make sure to commit your code to the repository provided. We will clone all repositories shortly after midnight:* the day of the deadline **Friday, December 7, 2018 (i.e., at 12:15am, Saturday, December 8, 2018)*** 24 hours later (for submissions that are one day late / -5 points), and* 48 hours after the first deadline (for submissions that are two days late / -15 points).

Our assumption is that everybody will submit on the first deadline. If you want us to grade a late submission, you need to email us at `[email protected]`

### About your github accountIt is very important that:* Your github account can do **private** repositories. If this is not already enabled, you can do it by visiting <https://education.github.com/>* You use the same github account for the duration of the course.* You use the github account that you specified during the test assignment.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] CS1656 Project4-SQL
$25