-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase.qmd
More file actions
19 lines (16 loc) · 849 Bytes
/
database.qmd
File metadata and controls
19 lines (16 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: "Database"
---
This page contains database of all words borrowed from Arabic into the different languages of Daghestan. To search for a value in numeric columns use "1...1" to find a specific value. You can also search for "1...5" to find range
```{r echo = FALSE, results = 'asis', message=FALSE, warning=FALSE}
library(readr)
library(DT)
datatable(
data = read_tsv("database.tsv"),
caption = "Table shows all words borrowed from Arabic into the different languages of Daghestan",
filter = "top",
extensions = 'Buttons', options = list(dom = 'Bfrtip', columnDefs = list(list(visible=FALSE, targets=c(0,7,8,9,10,11,12,13,15,16,17,18,19,20,21,23))),
buttons = list(list(extend = 'colvis', columns = c(7,8,9,10,11,12,13,15,16,17,18,19,20,21,23))))
)
```
------------------------------------------------------------------------