Code Monkey home page Code Monkey logo

nosql-challenge's Introduction

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.

nosql-challenge's People

Contributors

vara-co avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.