-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_analysis.R
More file actions
37 lines (33 loc) · 1.32 KB
/
Copy pathrun_analysis.R
File metadata and controls
37 lines (33 loc) · 1.32 KB
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
##############################################################################
###
### SUPPLEMENTARY MATERIALS FOR:
### Coetzee, A. W., Beddor, P. S., Styler, W., Tobin, S., Bekker, I.
### & Wissing, D. (2022). Producing and perceiving socially structured
### coarticulation: Coarticulatory nasalization in Afrikaans.
### Laboratory phonology, 13(1).
###
##############################################################################
###
### Coded by Stephen Tobin on the basis of data painstakingly collected and
### pre-processed by other co-authors
###
### Updated 2026.03.02 13:58:55 UTC
###
### The following R code demonstrates the data processing and statistical
### analysis steps applied in the project, as described in the paper.
###
### The assumption is that this script is run from the root directory of the
### project, ./R contains all analysis scripts fromt the repo and ./data
### contains all data files. The data files must be downloaded separately
### from http://bit.ly/Afr_Nas_Supplementary and saved in ./data
###
##############################################################################
source("R/setup.R")
source("R/production_pipeline.R")
source("R/perception_pipeline.R")
run_analysis <- function() {
initialize_analysis()
run_production_pipeline()
run_perception_pipeline()
}
run_analysis()