Skip to content

vara-co/nosql-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NoSQL Challenge

(Using MongoDB and Jupyter Notebook with PyMongo)

DU - DA Module 12 challenge
Eat Safe, Love (UK Food Standards Agency ratings data, evaluation)

by Laura Vara


ThumbImageReadME


INDEX


  1. Content of the repository
  2. Instructions for the NoSQL Challenge
  3. References

Content of the repository

  • Resources directory:

    • establishments.json <-- JSON file to import via the instructions provided on the Jupyter Notebook NoSQL_setup_LMVS
  • NoSQL_analysis_LMVS.ipynb <-- Jupyter Notebook file, with Analysis on this challenge

  • NoSQL_setup_LMVS.ipynb <-- Jupyter Notebook file, with CRUD operations

Instructions for NoSQL UK Food Ratings


The UK Food Standards Agency evaluates various establishments across the United Kingdom, and gives them a food hygiene rating. You've been contracted by the editors of a food magazine, Eat Safe, Love, to evaluate some of the ratings data in order to help their journalists and food critics decide where to focus future articles.

Part 1: Database and Jupyter Notebook Set Up


Use NoSQL_setup_starter.ipynb for this section of the challenge.

  1. Import the data provided in the establishments.json file from your Terminal. Name the database uk_food and the collection establishments. Copy the text you used to import your data from your Terminal to a markdown cell in your notebook.
  2. Within your notebook, import the libraries you need: PyMongo and Pretty Print (pprint).
  3. Create an instance of the Mongo Client.
  4. Confirm that you created the database and loaded the data properly:
    • List the databases you have in MongoDB. Confirm that uk_food is listed.
    • List the collection(s) in the database to ensure that establishments is there.
    • Find and display one document in the establishments collection using find_one and display with pprint.
  5. Assign the establishments collection to a variable to prepare the collection for use.

Part 2: Update the Database


Use NoSQL_setup_starter.ipynb for this section of the challenge.
The magazine editors have some requested modifications for the database before you can perform any queries or analysis for them. Make the following changes to the establishments collection:

  1. An exciting new halal restaurant just opened in Greenwich, but hasn't been rated yet. The magazine has asked you to include it in your analysis. Add the following information to the database:

Part2Image_ReadMe

  1. Find the BusinessTypeID for "Restaurant/Cafe/Canteen" and return only the BusinessTypeID and BusinessType fields.
  2. Update the new restaurant with the BusinessTypeID you found.
  3. The magazine is not interested in any establishments in Dover, so check how many documents contain the Dover Local Authority. Then, remove any establishments within the Dover Local Authority from the database, and check the number of documents to ensure they were deleted.
  4. Some of the number values are stored as strings, when they should be stored as numbers.
    1. Use update_many to convert latitude and longitude to decimal numbers.
    2. Use update_many to convert RatingValue to integer numbers.

Part 3: Exploratory Analysis


Eat Safe, Love has specific questions they want you to answer, which will help them find the locations they wish to visit and avoid.
Use NoSQL_analysis_starter.ipynb for this section of the challenge.
Some notes to be aware of while you are exploring the dataset:

  • RatingValue refers to the overall rating decided by the Food Authority and ranges from 1-5. The higher the value, the better the rating.
    • Note: This field also includes non-numeric values such as 'Pass', where 'Pass' means that the establishment passed their inspection but isn't given a number rating. We will coerce non-numeric values to nulls during the database setup before converting ratings to integers.
  • The scores for Hygiene, Structural, and ConfidenceInManagement work in reverse. This means, the higher the value, the worse the establishment is in these areas.

Use the following questions to explore the database, and find the answers, so you can provide them to the magazine editors.
Unless otherwise stated, for each question:

  • Use count_documents to display the number of documents contained in the result.
  • Display the first document in the results using pprint.
  • Convert the result to a Pandas DataFrame, print the number of rows in the DataFrame, and display the first 10 rows.
  1. Which establishments have a hygiene score equal to 20?
  2. Which establishments in London have a RatingValue greater than or equal to 4?
    Hint: The London Local Authority has a longer name than "London" so you will need to use $regex as part of your search.
  3. What are the top 5 establishments with a RatingValue of 5, sorted by lowest hygiene score, nearest to the new restaurant added, "Penang Flavours"?
    Hint: You will need to compare the geocode to find the nearest locations. Search within 0.01 degree on either side of the latitude and longitude.
  4. How many establishments in each Local Authority area have a hygiene score of 0? Sort the results from highest to lowest, and print out the top ten local authority areas.
    Hint: You will need to use the aggregation method to answer this.

Part3Image_ReadMe

References for NoSQL UK Food Ratings


Most of what's in this challenge, was covered in class.
The few things that either weren't or I had to reference to, are described with it's source right below.

About

DU - DA Module 12 challenge. Eat Safe, Love! Analysis of UK Food Standards Agency ratings by using NoSQL.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published