-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from nhsx/directed
Directed and Successor Pages
- Loading branch information
Showing
21 changed files
with
2,291 additions
and
4,550 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter" | ||
}, | ||
"python.formatting.provider": "none" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
### Overview | ||
|
||
This work is a continuation of the hypergraphs work carried out by Rafferty et al. 2021: | ||
|
||
[Multimorbidity Hypergraphs GitHub](https://github.com/SwanseaUniversityMedical/multimorbidity_hypergraphs), | ||
[Original Paper](https://www.sciencedirect.com/science/article/pii/S1532046421002458). | ||
|
||
We wish to demonstrate how hypergraphs can be used to capture relationships between multiple diseases | ||
rather than relationships between pairs of diseases. For example, looking at multimorbidity | ||
patterns instead of just comorbidities, which standard graphs tend to do. More people are suffering | ||
from multiple chronic diseases at the same time, so it's important to think about how we can find | ||
patterns in the uptake of multimoribidities, to see if prevention techniques or treatments could | ||
be put in place sooner to improve the quality of life in patients. | ||
|
||
|
||
On this page you can find out the [aims of this project](#project-aims), find out a bit more about | ||
what [multimorbidity](#multimorbidity) is and what types of [graphs](#graphs) we talk about within this project | ||
(including standard graphs, undirected hypergraphs and directed hypergraphs). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This applet randomly generates a set of fictious 'patients' and their disease | ||
pathways to demonstrate the use of hypergraphs in understanding multimorbidity. The | ||
sidebar on the left of this page can be used to change the number of 'patients' to | ||
generate and the maximum number of diseases to include in their pathways. | ||
In changing the number of patients and diseases, the outputs will change | ||
and this is purposeful to enable you to observe how population alterations result in different outcomes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ networkx | |
hypernetx | ||
matplotlib | ||
numpy | ||
numba | ||
pandas | ||
seaborn | ||
streamlit |
Oops, something went wrong.