Materais suplementares da tese: Variação interna em Kriol (crioulo da Guiné-Bissau): fonologia e aspetos sociolinguísticos por Ronaldo Mendes (2023)
Supplementary materials for: Internal variation in Guinea-Bissau Kriyol:
phonological and sociolinguistic aspects
================
Ronaldo Mendes and Carlos Silva
(28 novembro, 2023)
- 1 Data
- 2 Onset
- 2.1 v_b
- 2.2 z_s
- 2.3 ʒ_dʒ
- 2.4 ʃ_tʃ
- 2.5 λ_dʒ
- 3 Coda
- 3.1 ʒ_s
- 3.2 ʒ_Ø
- 3.3 ʃ_s
- 4 Global results (Onset + coda)
- 5 Partial results (onset only)
\#Packages
``` r
library(tidyverse)
```
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.2 ✔ readr 2.1.4
## ✔ forcats 1.0.0 ✔ stringr 1.5.0
## ✔ ggplot2 3.4.2 ✔ tibble 3.2.1
## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0
## ✔ purrr 1.0.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package ( ) to force all conflicts to become errors
# 1 Data
``` r
df
``` r
ggplot(df, aes(x = school, y = v_b,
fill = school)) +
geom_smooth(method = "lm") +
geom_violin() +
geom_dotplot(binaxis = "y",
stackdir = "center",
dotsize = 0.5) +
theme(legend.position="none") +
labs(y = "Kryol faithfulnes score", x = "Degree of school")
```
## `geom_smooth()` using formula = 'y ~ x'
## Bin width defaults to 1/30 of the range of the data. Pick better value with
## `binwidth`.
``` r
ggplot(df, aes(x = mother_tongue, y = v_b,
fill = mother_tongue)) +
geom_smooth(method = "lm") +
geom_violin() +
geom_dotplot(binaxis = "y",
stackdir = "center",
dotsize = 0.5) +
theme(legend.position="none") +
labs(y = "Kryol faithfulnes score", x = "Mother tongue")
```
## `geom_smooth()` using formula = 'y ~ x'
## Warning: Groups with fewer than two data points have been dropped.
## Groups with fewer than two data points have been dropped.
## Groups with fewer than two data points have been dropped.
## Groups with fewer than two data points have been dropped.
## Groups with fewer than two data points have been dropped.
## Grou …