Skip to content

Commit

Permalink
Add affiliation field
Browse files Browse the repository at this point in the history
  • Loading branch information
Bergam0t committed Oct 24, 2024
1 parent 4d3fc8f commit e434932
Show file tree
Hide file tree
Showing 48 changed files with 797 additions and 685 deletions.
2 changes: 1 addition & 1 deletion .quarto/preview/lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
49620
28916
53 changes: 21 additions & 32 deletions docs/previous_projects/hsma_3/h3_elective_backlog_hip/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.57">
<meta name="generator" content="quarto-1.4.552">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand All @@ -11,7 +11,7 @@
<meta name="author" content="Imca Hensels-Pelling">
<meta name="author" content="Zoe Ficken">

<title>Modelling strategies to reduce the elective backlog in hip surgery – HSMA</title>
<title>HSMA - Modelling strategies to reduce the elective backlog in hip surgery</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
Expand Down Expand Up @@ -124,7 +124,7 @@
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -134,7 +134,7 @@
<span class="menu-text">Welcome</span></a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-past-hsma-projects" role="link" data-bs-toggle="dropdown" aria-expanded="false">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-past-hsma-projects" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<span class="menu-text">Past HSMA Projects</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-past-hsma-projects">
Expand All @@ -158,10 +158,10 @@
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools tools-wide">
<div class="quarto-navbar-tools tools-wide">
<a href="https://www.youtube.com/@hsma" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-youtube"></i></a>
<div class="dropdown">
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" role="link" aria-label=""><i class="bi bi-github"></i></a>
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
<li>
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/hsma-programme">
Expand Down Expand Up @@ -262,7 +262,7 @@ <h1 class="title">Modelling strategies to reduce the elective backlog in hip sur
</nav>
<div id="quarto-sidebar-glass" class="quarto-sidebar-collapse-item" data-bs-toggle="collapse" data-bs-target=".quarto-sidebar-collapse-item"></div>
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar zindex-bottom">
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
</div>
<!-- main -->
<main class="content quarto-banner-title-block" id="quarto-document-content">
Expand Down Expand Up @@ -311,7 +311,18 @@ <h1 class="title">Modelling strategies to reduce the elective backlog in hip sur
}
return false;
}
const onCopySuccess = function(e) {
const clipboard = new window.ClipboardJS('.code-copy-button', {
text: function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
});
clipboard.on('success', function(e) {
// button target
const button = e.trigger;
// don't keep focus
Expand Down Expand Up @@ -343,37 +354,15 @@ <h1 class="title">Modelling strategies to reduce the elective backlog in hip sur
}, 1000);
// clear code selection
e.clearSelection();
}
const getTextToCopy = function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
text: getTextToCopy
});
clipboard.on('success', onCopySuccess);
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
// For code content inside modals, clipBoardJS needs to be initialized with a container option
// TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860)
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
text: getTextToCopy,
container: window.document.getElementById('quarto-embedded-source-code-modal')
});
clipboardModal.on('success', onCopySuccess);
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
Expand Down Expand Up @@ -703,7 +692,7 @@ <h1 class="title">Modelling strategies to reduce the elective backlog in hip sur
&nbsp;
</div>
<div class="nav-footer-center">
<p><a href="https://arc-swp.nihr.ac.uk/"><img src="../../../resources/nihr_logo.png" class="img-fluid" width="250"></a><br><br> <em>This report is independent research supported by the National Institute for Health and Care Research Applied Research Collaboration South West Peninsula. The views expressed in this publication are those of the author(s) and not necessarily those of the National Institute for Health and Care Research or the Department of Health and Social Care.</em></p>
<p><a href="https://arc-swp.nihr.ac.uk/"><img src="../../..\resources/nihr_logo.png" class="img-fluid" width="250"></a><br><br> <em>This report is independent research supported by the National Institute for Health and Care Research Applied Research Collaboration South West Peninsula. The views expressed in this publication are those of the author(s) and not necessarily those of the National Institute for Health and Care Research or the Department of Health and Social Care.</em></p>
<div class="cookie-consent-footer"><a href="#" id="open_preferences_center">Cookie Preferences</a></div></div>
<div class="nav-footer-right">
&nbsp;
Expand Down
2 changes: 1 addition & 1 deletion docs/previous_projects/hsma_3/h3_ml_nlp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h1 class="title">Exploring the use of Machine Learning and Natural Language Pro
</div>
<div class="quarto-title-meta-contents">
<p class="affiliation">
Information Analyst, Royal Devon and Exeter NHS Foundation Trust
Information Analyst, Royal Devon and Exeter NHS Foundation
</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ <h1 class="title">Simulation modelling to test proposed models of pediatric crit
</div>
<div class="quarto-title-meta-contents">
<p class="affiliation">
Transformation Intelligence Manager, NHS England and NHS Improvement
Transformation Intelligence Manager, NHS England and Improvement
</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ <h1 class="title">Investigating factors impacting NHS workforce retention</h1>



<br>
<div class="abstract">
<b>30 Second Summary</b>
This project aimed to work out which factors are the biggest drivers of staff turnover using regression modelling on staff workforce figures as well as other local factors such as employment. This was turned into a dashboard for internal use. However, it was concluded that the currently available data only acccounted for 13% of the variation in turnover seen; more data is required to explain the patterns seen.
</div>

<div class="quarto-categories">
<div class="quarto-category">Plotly Dash</div>
Expand Down
Loading

0 comments on commit e434932

Please sign in to comment.