-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.qmd
More file actions
52 lines (38 loc) · 1.26 KB
/
index.qmd
File metadata and controls
52 lines (38 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
title: "Supplementary materials for 'Applicative constructions: Main features, genetic, and geographical distribution' by G. Moroz and M. Polinsky"
format: html
editor: source
date: "today"
date-format: "D.MM.YYYY"
editor_options:
chunk_output_type: console
---
```{r}
#| include: false
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE, fig.width = 9, fig.height = 8)
library(tidyverse)
library(lingtypology)
df <- read_csv("data.csv")
df |>
mutate(language2 = lang.gltc(glottocode)) ->
df
```
[{fig-align="left"}](https://zenodo.org/badge/latestdoi/594122978)
How to cite:
> G. Moroz and M. Polinsky. Applicative constructions: Main features, genetic, and geographical distribution, in: Applicative Constructions in the World's Languages. Berlin: De Gruyter Mouton, 2023.
::: {.panel-tabset}
## Map
```{r}
map.feature(df$language2,
features = df$feature,
latitude = df$latitude,
longitude = df$longitude,
label = df$language_display)
```
Created with `lingtypology` (Moroz 2017)
## Data
Raw data are available [here](https://raw.githubusercontent.com/LingConLab/supplementary_applicative_constructions/master/data.csv).
```{r}
DT::datatable(df)
```
:::