Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clarelgibson/uk-food
Exploratory analysis of UK food hygiene ratings
https://github.com/clarelgibson/uk-food
Last synced: about 13 hours ago
JSON representation
Exploratory analysis of UK food hygiene ratings
- Host: GitHub
- URL: https://github.com/clarelgibson/uk-food
- Owner: clarelgibson
- License: cc0-1.0
- Created: 2023-08-08T19:10:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-20T11:54:25.000Z (about 1 year ago)
- Last Synced: 2023-08-20T12:20:59.862Z (about 1 year ago)
- Language: R
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UK Food Hygiene Ratings
An exploration of food hygiene ratings in the UK.
## Description
Following on from the [farnham-food](https://github.com/clarelgibson/farnham-food) project, this project sets out to explore food hygiene ratings across the UK. The UK [Food Standards Agency](https://www.food.gov.uk) publishes [full ratings data](https://ratings.food.gov.uk) for every local authority in England and Wales. An explainer on the UK's Food Hygiene Rating Scheme can be found [here](https://www.food.gov.uk/safety-hygiene/food-hygiene-rating-scheme).
## Getting started
### Data
- [UK food hygiene ratings by local authority](https://ratings.food.gov.uk/open-data/en-GB) published by the [FSA](https://www.food.gov.uk). Data is refreshed daily.
### Packages
This project uses `renv` for package management. To set up the packages needed for this project run the following code in the console:
``` r
install.packages("renv")
renv::init()
```## Author
- [Clare Gibson](https://www.surreydatagirl.com) - [surreydatagirl\@gmail.com](mailto:surreydatagirl.com)
## Licence
This project is licensed under the CC0 1.0 Universal licence. See the [LICENSE](./LICENSE) file for details.
## Acknowledgements
The following articles and resources have inspired or guided this project:
- [Converting nested XML to dataframe in R - a tidyverse approach](https://urbandatapalette.com/post/2021-03-xml-dataframe-r/) by [Urban Data Palette](https://urbandatapalette.com)
- [How to create a waffle chart using data densification](https://www.vizwiz.com/2019/09/waffle-chart.html) by [VizWiz](https://www.vizwiz.com)