Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themuhd/medical-prescriptions-database-design-and-analysis
Analysis of several prescription data to understand more about the types of medication being prescribed, the organisations doing the prescribing, and the quantities prescribed.
https://github.com/themuhd/medical-prescriptions-database-design-and-analysis
analysis database mssql-database tsql
Last synced: about 1 month ago
JSON representation
Analysis of several prescription data to understand more about the types of medication being prescribed, the organisations doing the prescribing, and the quantities prescribed.
- Host: GitHub
- URL: https://github.com/themuhd/medical-prescriptions-database-design-and-analysis
- Owner: themuhd
- Created: 2023-09-13T18:54:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T12:19:21.000Z (about 1 year ago)
- Last Synced: 2024-10-12T22:41:53.794Z (about 1 month ago)
- Topics: analysis, database, mssql-database, tsql
- Language: TSQL
- Homepage:
- Size: 1.75 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Medical-Prescriptions-Database-Design-and-Analysis
Analysis of several prescription data using TSQL to understand more about the types of medication being prescribed, the organisations doing the prescribing, and the quantities prescribed.## The Data
These files are an excerpt from a larger file which is a real-world dataset released every month by
the National Health Service (NHS) in England. The file provides a information on prescriptions
which have been issued in England, although the extract we have provided focusses
specifically on Bolton.
The data includes three related tables, which are provided in three csv files:
• The Medical_Practice.csv file has 60 records and provides the names and addresses of
the medical practices which have prescribed medication within Bolton. The
PRACTICE_CODE column provides a unique identifier for each practice.
• The Drugs.csv file provides details of the different drugs that can be prescribed. This
includes the chemical substance, and the product description. The
BNF_CHAPTER_PLUS_CODE column provides a way of categorising the drugs based on
the British National Formulatory (BNF) Chapter that includes the prescribed product.
For example, an antibiotic such as Amoxicillin is categorised under ‘05: Infections’. The
BNF_CODE column provides a unique identifier for each drug.
• The Prescriptions.csv file provides a breakdown of each prescription. Each row
corresponds to an individual prescription, and each prescription is linked to a practice
via the PRACTICE_CODE and the drug via the BNF_CODE. It also specifies the quantity
(the number of items in a pack) and the items (the number of packs). The
PRESCRIPTION_CODE column provides a unique identifier for each prescription.