├── .gitignore ├── README.md ├── conference-2022.Rproj ├── raffle_app ├── Readme.md ├── app.R └── raffle_draw.R ├── talks ├── 2022-11-16 │ ├── 16-Nov Better, Broader Safer - Jess Morley.pptx │ ├── 16_Nov Chris Reading-Skilton - Pythia - RTT Acute Trust Waiting List Modelling Using Simmer.pptx │ ├── 16_Nov Jonny Pearson -NHSRconf22_SharingInTheOpen2.pdf │ ├── 16_Nov Richard Wilson Reproducible Report Production using R markdown.pptx │ ├── 16_Nov_ Heather Turner - Good Coding Practices for Data Analysts.pdf │ ├── 16_Nov_ Iain Dillingham - Code Reuse in a Trusted Research Environment.pptx │ ├── 16_Nov_ Zehra Onen-Dumlu - Simulation tool for determining intermediate care capacity.pptx │ ├── 16_Nov_CALUM POLWART - Analysis of Systemic Anti-cancer Treatment Data using R.pptx │ ├── 16_Nov_Edmund-Haacke - Investigating the driver of ED crowding.pptx │ ├── 16_Nov_MartinaFonseca - Use of discrete Event Simulation (RSimmer).pptx │ ├── 16_Nov_PaulCarroll - Structured Topic Modelling in R.pptx │ ├── 16_Nov_Peter Spilsbury -The Strategy Unit and NHS-R.pptx │ ├── 16_Nov_Richard M Wood - Simple and Scalable modelling.pptx │ ├── 16_Nov_Robin Marlow - Automating Emergency Department Clinical Governance Using R.pptx │ ├── 16_Nov_StevenWyatt - Activity and Capacity Modelling.pptx │ ├── 16_Nov_Victor Yu - A Local Analysis of the NCMP in Hertfordshire.pptx │ ├── 16_Nov_anne_alarilla_Using R to explore the ambulance crisis.pptx │ ├── 16_Nov_carathompson_variations-on-a-ggplot-theme.png │ ├── 16_Nov_simonwellesleymiller - Identifying waiting list health inequalities.pptx │ ├── 16_Nov_vivekv - Application of R and real-world data to customise cancer therapy.pptx │ └── shiny-endominer │ │ └── Shiny endominer │ │ ├── Shiny endominer.Rmd │ │ ├── Shiny-endominer.html │ │ ├── css │ │ ├── insert-logo.html │ │ ├── nhsr-fonts.css │ │ └── nhsr.css │ │ ├── img │ │ ├── logo-blue.png │ │ ├── logo-title-slide.png │ │ └── logo-white.png │ │ └── libs │ │ ├── DiagrammeR-binding-1.0.9 │ │ └── DiagrammeR.js │ │ ├── DiagrammeR-styles-0.2 │ │ └── styles.css │ │ ├── chromatography-0.1 │ │ ├── LICENSE │ │ └── chromatography.js │ │ ├── d3-3.3.8 │ │ ├── LICENSE │ │ └── d3.min.js │ │ ├── dagre-0.4.0 │ │ ├── LICENSE │ │ └── dagre-d3.min.js │ │ ├── header-attrs-2.18 │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.4 │ │ └── htmlwidgets.js │ │ ├── mermaid-0.3.0 │ │ ├── LICENSE │ │ └── dist │ │ │ ├── mermaid.css │ │ │ └── mermaid.slim.min.js │ │ └── remark-css-0.0.1 │ │ └── default.css ├── 2022-11-17 │ ├── 17_Nov ADNAN_SHROUFI - Developing a dbplyr-based Address Matching Package.pptx │ ├── 17_Nov Annie_Yu - Reusing functions across projects with box modules.pptx │ ├── 17_Nov Colin Gillespie - How much does technical tech cost.pdf │ ├── 17_Nov Nathan Thomas Using forecasts to measure change.pptx │ ├── 17_Nov_ Daniel Weiand Same deckUsing Quarto or RMD with citr for academic writing.html │ ├── 17_Nov_ Louise Reynolds- Don't Copy and Paste, press 'Run'.pptx │ ├── 17_Nov_ Razia Ghani -R Girls School Network.pptx │ ├── 17_Nov_Anastasiia Zharinova - Delivering analytical projects using R.pptx │ ├── 17_Nov_Ryan JohnsonPosit-Product-Updates_RyanJohnson_NHS-R_2022.pdf │ ├── 17_Nov_Samuel Channon-Wells - Modernising paediatric antimicrobial medicines surveillance.pptx │ ├── 17_Nov_Santosh_Kumar - Ageing patterns of the population in NWL.pptx │ ├── 17_Nov_Sebastian Bate - Validating time-to-event clincial prediction models.pptx │ ├── 17_Nov_Will Yuill - System Dynamics in R.pptx │ ├── 17_Nov_carathompson_palatable-palettes.png │ ├── 17_Nov_ruchir shah - Using R to save clinician time and aid research.pptx │ └── 17_Nov_veerlevanleemput - How to use Plumber to make your data.pptx └── README.md └── workshops ├── Build_TM_from_scratch-main ├── .DS_Store ├── .gitignore ├── Dockerfile ├── LICENSE ├── NHS_R_Comm_Build_TM_from_scratch.Rproj ├── README.md ├── TM_from_scratch.Rmd ├── TM_from_scratch_student.Rmd ├── functions │ └── visualisations.R └── man │ ├── .DS_Store │ └── fig │ ├── .DS_Store │ ├── ConfusionTableR.png │ ├── NHSR 2.png │ ├── NHSR.png │ ├── TidyModels.gif │ ├── TidyModelsBanner.png │ ├── kfold.png │ ├── logo_dials.png │ ├── logo_pins.png │ ├── logo_recipes.png │ ├── logo_resample.png │ ├── logo_vetiver.png │ ├── logo_workflows.png │ ├── mldataR_logo.png │ ├── parsnip_logo.png │ ├── test_smote.png │ ├── tidymodels.png │ └── tm_nhsr.png ├── Introduction to Statistics with R ├── Introduction to statistics.pdf ├── Part 1.R ├── Part 1_classroom.R ├── Part 2.R ├── Part 2_classroom.R ├── Part 3.R ├── Part 3_classroom.R └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/README.md -------------------------------------------------------------------------------- /conference-2022.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/conference-2022.Rproj -------------------------------------------------------------------------------- /raffle_app/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/raffle_app/Readme.md -------------------------------------------------------------------------------- /raffle_app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/raffle_app/app.R -------------------------------------------------------------------------------- /raffle_app/raffle_draw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/raffle_app/raffle_draw.R -------------------------------------------------------------------------------- /talks/2022-11-16/16-Nov Better, Broader Safer - Jess Morley.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16-Nov Better, Broader Safer - Jess Morley.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov Chris Reading-Skilton - Pythia - RTT Acute Trust Waiting List Modelling Using Simmer.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov Chris Reading-Skilton - Pythia - RTT Acute Trust Waiting List Modelling Using Simmer.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov Jonny Pearson -NHSRconf22_SharingInTheOpen2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov Jonny Pearson -NHSRconf22_SharingInTheOpen2.pdf -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov Richard Wilson Reproducible Report Production using R markdown.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov Richard Wilson Reproducible Report Production using R markdown.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_ Heather Turner - Good Coding Practices for Data Analysts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_ Heather Turner - Good Coding Practices for Data Analysts.pdf -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_ Iain Dillingham - Code Reuse in a Trusted Research Environment.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_ Iain Dillingham - Code Reuse in a Trusted Research Environment.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_ Zehra Onen-Dumlu - Simulation tool for determining intermediate care capacity.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_ Zehra Onen-Dumlu - Simulation tool for determining intermediate care capacity.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_CALUM POLWART - Analysis of Systemic Anti-cancer Treatment Data using R.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_CALUM POLWART - Analysis of Systemic Anti-cancer Treatment Data using R.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_Edmund-Haacke - Investigating the driver of ED crowding.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_Edmund-Haacke - Investigating the driver of ED crowding.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_MartinaFonseca - Use of discrete Event Simulation (RSimmer).pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_MartinaFonseca - Use of discrete Event Simulation (RSimmer).pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_PaulCarroll - Structured Topic Modelling in R.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_PaulCarroll - Structured Topic Modelling in R.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_Peter Spilsbury -The Strategy Unit and NHS-R.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_Peter Spilsbury -The Strategy Unit and NHS-R.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_Richard M Wood - Simple and Scalable modelling.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_Richard M Wood - Simple and Scalable modelling.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_Robin Marlow - Automating Emergency Department Clinical Governance Using R.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_Robin Marlow - Automating Emergency Department Clinical Governance Using R.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_StevenWyatt - Activity and Capacity Modelling.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_StevenWyatt - Activity and Capacity Modelling.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_Victor Yu - A Local Analysis of the NCMP in Hertfordshire.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_Victor Yu - A Local Analysis of the NCMP in Hertfordshire.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_anne_alarilla_Using R to explore the ambulance crisis.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_anne_alarilla_Using R to explore the ambulance crisis.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_carathompson_variations-on-a-ggplot-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_carathompson_variations-on-a-ggplot-theme.png -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_simonwellesleymiller - Identifying waiting list health inequalities.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_simonwellesleymiller - Identifying waiting list health inequalities.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/16_Nov_vivekv - Application of R and real-world data to customise cancer therapy.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/16_Nov_vivekv - Application of R and real-world data to customise cancer therapy.pptx -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/Shiny endominer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/Shiny endominer.Rmd -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/Shiny-endominer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/Shiny-endominer.html -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/css/insert-logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/css/insert-logo.html -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/css/nhsr-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/css/nhsr-fonts.css -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/css/nhsr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/css/nhsr.css -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/img/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/img/logo-blue.png -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/img/logo-title-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/img/logo-title-slide.png -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/img/logo-white.png -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/DiagrammeR-binding-1.0.9/DiagrammeR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/DiagrammeR-binding-1.0.9/DiagrammeR.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/DiagrammeR-styles-0.2/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/DiagrammeR-styles-0.2/styles.css -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/chromatography-0.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/chromatography-0.1/LICENSE -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/chromatography-0.1/chromatography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/chromatography-0.1/chromatography.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/d3-3.3.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/d3-3.3.8/LICENSE -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/d3-3.3.8/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/d3-3.3.8/d3.min.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/dagre-0.4.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/dagre-0.4.0/LICENSE -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/dagre-0.4.0/dagre-d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/dagre-0.4.0/dagre-d3.min.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/header-attrs-2.18/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/header-attrs-2.18/header-attrs.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/mermaid-0.3.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/mermaid-0.3.0/LICENSE -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/mermaid-0.3.0/dist/mermaid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/mermaid-0.3.0/dist/mermaid.css -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/mermaid-0.3.0/dist/mermaid.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/mermaid-0.3.0/dist/mermaid.slim.min.js -------------------------------------------------------------------------------- /talks/2022-11-16/shiny-endominer/Shiny endominer/libs/remark-css-0.0.1/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-16/shiny-endominer/Shiny endominer/libs/remark-css-0.0.1/default.css -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov ADNAN_SHROUFI - Developing a dbplyr-based Address Matching Package.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov ADNAN_SHROUFI - Developing a dbplyr-based Address Matching Package.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov Annie_Yu - Reusing functions across projects with box modules.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov Annie_Yu - Reusing functions across projects with box modules.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov Colin Gillespie - How much does technical tech cost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov Colin Gillespie - How much does technical tech cost.pdf -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov Nathan Thomas Using forecasts to measure change.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov Nathan Thomas Using forecasts to measure change.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_ Daniel Weiand Same deckUsing Quarto or RMD with citr for academic writing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_ Daniel Weiand Same deckUsing Quarto or RMD with citr for academic writing.html -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_ Louise Reynolds- Don't Copy and Paste, press 'Run'.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_ Louise Reynolds- Don't Copy and Paste, press 'Run'.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_ Razia Ghani -R Girls School Network.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_ Razia Ghani -R Girls School Network.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_Anastasiia Zharinova - Delivering analytical projects using R.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_Anastasiia Zharinova - Delivering analytical projects using R.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_Ryan JohnsonPosit-Product-Updates_RyanJohnson_NHS-R_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_Ryan JohnsonPosit-Product-Updates_RyanJohnson_NHS-R_2022.pdf -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_Samuel Channon-Wells - Modernising paediatric antimicrobial medicines surveillance.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_Samuel Channon-Wells - Modernising paediatric antimicrobial medicines surveillance.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_Santosh_Kumar - Ageing patterns of the population in NWL.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_Santosh_Kumar - Ageing patterns of the population in NWL.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_Sebastian Bate - Validating time-to-event clincial prediction models.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_Sebastian Bate - Validating time-to-event clincial prediction models.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_Will Yuill - System Dynamics in R.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_Will Yuill - System Dynamics in R.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_carathompson_palatable-palettes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_carathompson_palatable-palettes.png -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_ruchir shah - Using R to save clinician time and aid research.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_ruchir shah - Using R to save clinician time and aid research.pptx -------------------------------------------------------------------------------- /talks/2022-11-17/17_Nov_veerlevanleemput - How to use Plumber to make your data.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/2022-11-17/17_Nov_veerlevanleemput - How to use Plumber to make your data.pptx -------------------------------------------------------------------------------- /talks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/talks/README.md -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/.DS_Store -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/.gitignore -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/Dockerfile -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/LICENSE -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/NHS_R_Comm_Build_TM_from_scratch.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/NHS_R_Comm_Build_TM_from_scratch.Rproj -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/README.md -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/TM_from_scratch.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/TM_from_scratch.Rmd -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/TM_from_scratch_student.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/TM_from_scratch_student.Rmd -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/functions/visualisations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/functions/visualisations.R -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/.DS_Store -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/.DS_Store -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/ConfusionTableR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/ConfusionTableR.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/NHSR 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/NHSR 2.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/NHSR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/NHSR.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/TidyModels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/TidyModels.gif -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/TidyModelsBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/TidyModelsBanner.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/kfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/kfold.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/logo_dials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/logo_dials.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/logo_pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/logo_pins.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/logo_recipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/logo_recipes.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/logo_resample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/logo_resample.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/logo_vetiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/logo_vetiver.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/logo_workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/logo_workflows.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/mldataR_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/mldataR_logo.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/parsnip_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/parsnip_logo.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/test_smote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/test_smote.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/tidymodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/tidymodels.png -------------------------------------------------------------------------------- /workshops/Build_TM_from_scratch-main/man/fig/tm_nhsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Build_TM_from_scratch-main/man/fig/tm_nhsr.png -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Introduction to statistics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Introduction to statistics.pdf -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Part 1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Part 1.R -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Part 1_classroom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Part 1_classroom.R -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Part 2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Part 2.R -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Part 2_classroom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Part 2_classroom.R -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Part 3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Part 3.R -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/Part 3_classroom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/Part 3_classroom.R -------------------------------------------------------------------------------- /workshops/Introduction to Statistics with R/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/Introduction to Statistics with R/README.md -------------------------------------------------------------------------------- /workshops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-r-community/conference-2022/HEAD/workshops/README.md --------------------------------------------------------------------------------