forked from SurgicalInformatics/healthyr_book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
executable file
·117 lines (82 loc) · 5.33 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
title: "R for Health Data Science"
author: "Ewen Harrison and Riinu Pius"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: krantz
classoption: krantz2
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
colorlinks: yes
graphics: yes
lot: yes
lof: yes
fontsize: 12pt
# linestretch: 0.8
monofont: "Source Code Pro"
monofontoptions: "Scale=0.65"
github-repo: SurgicalInformatics/healthyr_book/
description: "An introductory book for health data science using R."
cover-image: images/healthyr_book_cover.png
---
```{r setup, include=FALSE}
# Above to disable PDF download, pasted here as breaks if pasted and commented out above:
# output:
# bookdown::gitbook:
# config:
# download: no
options(
htmltools.dir.version = FALSE, formatR.indent = 2, width = 55, digits = 4, tinytex.verbose = TRUE
)
# install the packages needed by this book; you fill out c(), e.g. c('ggplot2', 'dplyr')
healthyr_notebooks = c("tidyverse", "boot", "finalfit", "flexdashboard", "gapminder", "here", "kableExtra", "knitr", "remotes", "rmarkdown", "shiny", "survminer", "tinytex", "patchwork", "ggfortify")
lapply(healthyr_notebooks, function(pkg) {
if (system.file(package = pkg) == '') install.packages(pkg)
})
```
# Preface {-}
```{asis, echo=identical(knitr:::pandoc_to(), 'html')}
This is the electronic version of the HealthyR book published by [Chapman & Hall/CRC](https://www.routledge.com/R-for-Health-Data-Science/Harrison-Pius/p/book/9780367428198).
<p style="text-align: center;"><a href="https://www.routledge.com/R-for-Health-Data-Science/Harrison-Pius/p/book/9780367428198"><img src="images/healthyr_book_cover_20.png" alt="R for Health Data Science book cover" /></a></p>
HealthyR resources: [healthyr.surgicalinformatics.org](https://healthyr.surgicalinformatics.org/)
Example datasets used in the book can be downloaded [here](https://github.com/SurgicalInformatics/healthyr_book#datasets-used-in-the-book).
Version 1.0.1
It is licensed under the [Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States License](http://creativecommons.org/licenses/by-nc-nd/3.0/us/).
```
## Why read this book {-}
> We are drowning in information but starved for knowledge.
> John Naisbitt
In this age of information, the manipulation, analysis and interpretation of data have become a fundamental part of professional life.
Nowhere more so than in the delivery of healthcare.
From the understanding of disease and the development of new treatments, to the diagnosis and management of individual patients, the use of data and technology are now an integral part of the business of healthcare.
Those working in healthcare interact daily with data, often without realising it.
The conversion of this avalanche of information to useful knowledge is essential for high-quality patient care.
An important part of this information revolution is the opportunity for everybody to become involved in data analysis.
This democratisation is driven in part by the open source software movement – no longer do we require expensive specialised software to do this.
The statistical programming language, R, is firmly at the heart of this.
This book will take an individual with little or no experience in data science all the way through to the execution of sophisticated analyses.
We emphasise the importance of truly understanding the underlying data with liberal use of plotting, rather than relying on opaque and possibly poorly understood statistical tests.
There are numerous examples included that can be adapted for your own data, together with our own R packages with easy-to-use functions.
We have a lot of fun teaching this course and focus on making the material as accessible as possible.
We limit equations to a minimum in favour of code, and use examples rather than lengthy explanations.
We are grateful to the many individuals and students who have helped refine this book and welcome suggestions and bug reports via https://github.com/SurgicalInformatics.
\begin{flushright}
Ewen Harrison and Riinu Pius
Usher Institute
University of Edinburgh
\end{flushright}
## Contributors {-}
We are indebted to the following people who have generously contributed time and material to this book: Katie Connor, Tom Drake, Cameron Fairfield, Peter Hall, Stephen Knight, Kenneth McLean, Lisa Norman, Einar Pius, Michael Ramage, Katie Shaw, and Olivia Swann.
# About the Authors {-}
Ewen Harrison is a surgeon and Riinu Pius is a physicist.
And they're both data scientists, too.
They dabble in a few programming languages and are generally all over technology.
They are most enthusiastic about the R statistical programming language and have a combined experience of 25 years using it.
They work at the University of Edinburgh and have taught R to hundreds of healthcare professionals and researchers.
They believe a first introduction to R and statistical programming should be relatively jargon-free and outcome-oriented (get those pretty plots out).
The understanding of complicated concepts will come over time with practice and experience, not through a re-telling of the history of computing bit-by-byte, or with the inclusion of the underlying equations for each statistical test (although Ewen has sneaked a few equations in).
Overall, they hope to make the text fun and accessible.
Just like them.
\mainmatter