-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.Rmd
109 lines (77 loc) · 5.78 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
---
title: "Quantitative Methods and Statistics"
author:
name: Hugo Quené \& Huub van den Bergh
affiliation: Utrecht University
email: [email protected]
date: "Version compiled `r format(Sys.time(), '%d %b %Y')`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib, packages.bib, hhmhto.bib, pandoc.bib]
biblio-style: apalike
link-citations: yes
github-repo: rstudio/QMS-EN
description: "Textbook on Quantitative Methods and Statistics, used a.o. in undergraduate course Methods and Statistics (TW3V24001, TL2V23004, TW2V19002, TW2V17002), Dept of Languages Literature and Communication, Utrecht University, the Netherlands."
---
# Preface {-}
Data are becoming ever more important, in all parts of society, including academia, and including the humanities. The availability of large amounts of digital data (such as text, speech, video, behavioural measurements) raises new research questions, which are typically and often investigated using quantitative methods.
Aimed at humanities researchers and students, this book offers an overview of and introduction into the most important quantitative methods and statistical techniques used in the humanities. The book provides a solid methodological foundation for quantitative research, and it introduces the most commonly used statistical techniques to describe data and to test hypotheses. This will also enable the reader to critically evaluate such quantitative research.
This textbook is being used in the introductory course *Methods and Statistics* at Utrecht University (Linguistics program). The book is also highly suitable for self-study at a basic level, for everybody who wishes to learn more about quantitative methods and statistics.
The main text has been kept free of mathematical derivations and formulas, which are typically not very helpful for humanities scholars and students. Our explanation is rather conceptual, and rich in examples. Where necessary we present derivations and formulas in separate sections.
This book also contains instructions on how to "do" the statistical analyses and visualisations, using the three statistical packages SPSS, JASP, and R. These packages are further introduced in §\@ref(sec:intro-outline). These instructions too are in separate sections.
We would like to thank our co-teachers in various courses for the many discussions and examples that have been used in any shape or form in this textbook. We thank our students for their curiosity and for their sharp eyes in spotting errors and inconsistencies in previous versions.
We are also thankful to
Gerrit Bloothooft,
Margot van den Berg,
Willemijn Heeren,
Rianne Kraakman,
Caspar van Lissa,
Els Rose,
Tobias Quené,
Kirsten Schutter,
Marijn Struiksma,
Tara Super,
and Joanna Wall,
for their advice, data, comments and suggestions.
We thank Rianne Kraakman for writing the subsections on JASP instructions, Aleksei Nazarov and Joanna Wall for translating this book from Dutch to English, and Tara Super for editing work (version 1.3.0).
Our special thanks are due to Marijn Struiksma, for inspiration and for coordinating the JASP additions and the translation.
version 1.1.1+: February 2021\
version 1.2.0: June 2021\
version 1.3.0: May 2022
Hugo Quené, <https://www.hugoquene.nl>
Huub van den Bergh, <https://www.uu.nl/staff/HHvandenBergh>
---
## Liever Nederlands? {-}
This is the English version of the textbook, titled *Quantitative Methods and Statistics*.
U leest nu de Engelstalige versie van het tekstboek. Er is ook een parallelle Nederlandstalige versie, getiteld *Kwantitatieve Methoden en Statistiek*, te vinden via <https://hugoquene.github.io/KMS-NL/>.
## Notation {-}
Following international usage we use the full stop (decimal point) as decimal separator; hence we write $\frac{3}{2}=1.5$. Note that the decimal separator may vary between computers and between software packages on the same computer. Check which decimal separator is used by (each software package on) your computer.
## License {-}
This document is licensed under the _GNU GPL 3_ license (for details see
https://www.gnu.org/licenses/gpl-3.0.en.html).
## Citation {-}
Please cite this work as follows (in APA style, and substitute the date):
Quené, H. \& Van den Bergh, H. (2024). *Quantitative Methods and Statistics*.
Retrieved 27 Aug 2024 from <https://hugoquene.github.io/QMS-EN/> .
## Technical details {-}
All materials for this textbook are availabe at
<https://doi.org/10.5281/zenodo.4479620> or directly from
<https://github.com/hugoquene/QMS-EN>:
this includes other versions of this textbook (EPUB, PDF, HTML), the source code (Rmarkdown and R) of the text including figures and examples, accompanying datasets used in the text, and figures as separate files.
The original Dutch version of this text was written in LaTeX, and was then converted to Rmarkdown, using `pandoc` [@pandoc] and the `bookdown` package [@R-bookdown] in [Rstudio](https://www.rstudio.com). The parallel Dutch version is available at <https://hugoquene.github.io/KMS-NL>.
The English translation is based on the Dutch LaTeX version (for Part I) and Rmarkdown version (for Parts II and III).
## About the authors {-}
HQ is professor in the Quantitative Methods of Empirical Research in the Humanities, and he is also founding director of the Centre for Digital Humanities (CDH), both at Utrecht University.
HvdB is professor emeritus in the Pedagogy and Testing of Language Proficiency at Utrecht University, and former section chair in Dutch Language and Literature at the Dutch National Board of Tests and Examinations (CvTE).
```{r include=FALSE}
# automatically create a bib database for R packages
require(lattice)
require(nnet)
# added 20220203
require(hqmisc)
# require(MASS)
knitr::write_bib( c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```