Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
craig-shenton committed May 21, 2022
1 parent cf7e06c commit 54bc26f
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 6 deletions.
8 changes: 6 additions & 2 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@ <h1>{{ page.title }}</h1>
<div class="nhsuk-grid-column-one-quarter">
<div class="app-related-nav">
<nav class="app-related-nav__nav-section" aria-labelledby="parent-title">
<h2 class="app-related-nav__heading" id="parent-title">Contributors</h2>
<h2 class="app-related-nav__heading" id="parent-title">Contributor</h2>
<ul class="app-related-nav__list">
{% if page.author %}
<li class="app-related-nav__item"><a class="app-related-nav__link" href="https://github.com/{{ page.author-github }}">{{ page.author }}</a></li>
{% if page.author-link %}
<li class="app-related-nav__item"><a class="app-related-nav__link" href="{{ page.author-link }}">{{ page.author }}</a></li>
{% else %}
<li class="app-related-nav__item">{{ page.author }}</li>
{% endif %}
{% if page.author-bio %}
<li class="app-related-nav__item app-related-nav__item--selected" aria-current="true">{{ page.author-bio }}</li>
{% else %}<span> </span>{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _posts/2021-06-11-open-analytics-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ summary: How we built an open analytics template for healthcare
categories: open-source, NHS, python, GitHub
author: Craig Robert Shenton, PhD
author-bio: Senior Data Engineer, NHS England Medical Directorate
author-github: craig-shenton
author-link: https://github.com/craig-shenton
---

The open analytics template is a very lightweight and reusable automation pipeline for open analytics projects.
Expand Down
2 changes: 1 addition & 1 deletion _posts/2021-06-11-open-source-health-statistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ summary: How are collecting statistics on open-source NHS and healthcare rela
categories: open-source, NHS, python, GitHub
author: Craig Robert Shenton, PhD
author-bio: Senior Data Engineer, NHS England Medical Directorate
author-github: craig-shenton
author-link: https://github.com/craig-shenton
---

The [Open-Source Health Statistics](https://nhs-pycom.github.io/opensource-health-statistics/) project was created by developers at [NHSX](https://www.nhsx.nhs.uk/) and [NHS Business Services Authority](https://www.nhsbsa.nhs.uk/).
Expand Down
31 changes: 31 additions & 0 deletions _posts/2021-06-21-epd-analysis-using-python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: post
title: England Prescribing Data (EPD) analysis using python
date: 2021-06-21 00:00:00
summary: Exploration of seasonal allergic rhinitis (hayfever) prescribing data using python.
categories: python,
author: Adenrele Komolafe
author-bio: Royal Surrey NHS Foundation Trust
author-link: https://www.linkedin.com/in/akomolafe/
---

Whilst sneezing and coughing on a relatively cool evening, I decided to explore seasonal allergic rhinitis (hayfever) prescribing data. The far off aim is to build a model using pollen count data and the prescribing data. In this ongoing process, I have faced multiple challenges.

> "The English prescribing dataset contains detailed information on prescriptions issued in England that have been dispensed in England, Wales, Scotland, Guernsey, Alderney, Jersey, and the Isle of Man.” — NHSBSA
## Part 1

In the first posts of a two-part series, I describe the methods used to exctract data from the CKAN API using `requests` and `pandas`

### Towards Data Science
[NHS English Prescribing Data (EPD) Analysis Using Python (Part 1)](https://towardsdatascience.com/nhs-english-prescribing-data-analysis-using-python-9d86ec610880)

## Part 2

In the second posts of this two-part series, I aim to increase time efficiency of my data exctact, to explore the data, and to connect to a remote server in preparation for computationally expensive tasks.

### Towards Data Science
[NHS English Prescribing Data (EPD) Analysis Using Python (Part 2)](https://towardsdatascience.com/nhs-english-prescibing-data-epd-analysis-using-python-part-2-aa990e4e47dd)



2 changes: 1 addition & 1 deletion _posts/2022-05-15-just-a-minute-pre-commit.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ summary: Pre-commit is a package which works like spell-correct on your code
categories: Git
author: Lizi Johnstone
author-bio: Data Scientist, Economics & Strategic Analysis, NHS England
author-github: LiziJohnstone
author-link: https://github.com/LiziJohnstone
---

If you haven't heard of [pre-commit](https://github.com/pre-commit/pre-commit) and are using [git](https://git-scm.com/), please read.
Expand Down
10 changes: 10 additions & 0 deletions _posts/2022-05-15-title copy 2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: post
title: titl
date: 2022-05-15 15:31:19
summary:
categories:
author:
author-bio:
author-github:
---
18 changes: 18 additions & 0 deletions _posts/2022-05-15-title copy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: post
title: titl
date: 2022-05-15 15:31:19
summary:
categories:
author:
author-bio:
author-github:
---



https://blog.nhsbsa.net/2021/05/07/how-one-piece-of-code-saved-the-nhs-over-90000-hours-of-gp-time/

How one piece of code saved the NHS over 90,000 hours of GP time

NHS Business Services Authority
2 changes: 1 addition & 1 deletion blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2>Latest Posts</h2>
<div class="nhsuk-card__content">
<p class="nhsuk-card__metadata nhsuk-body-s nhsuk-u-margin-bottom-0">
<span>{% if site.date_format %} {{ post.date | date: site.date_format }} {% else %} {{ post.date | date: "%b %-d, %Y" }} {% endif %} |</span>
<span>{% if post.author %} {{ post.author }} {% else %} NHS Python Community {% endif %}</span>
<span>by {% if post.author %} {{ post.author }} {% else %} NHS Python Community {% endif %}</span>
</p>
<h3 class="nhsuk-card__heading">
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
Expand Down

0 comments on commit 54bc26f

Please sign in to comment.