Created
November 21, 2024 10:04
-
-
Save agricolamz/e416c405a0f4f237f3c33fb256e4a19d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(lingtypology) | |
df <- tribble( | |
~lang, ~label, | |
"Andi", "андийский", | |
"Northern Akhvakh", "ахвахский", | |
"Chamalal", "чамалинский", | |
"Godoberi", "годоберинский", | |
"Botlikh", "ботлихский", | |
"Bagvalal", "багвалинский", | |
"Tindi", "тиндинский", | |
"Tokita", "тукитинский", | |
"Karata-Tukita", "каратинский") | |
map.feature(df$lang, | |
width = 10, | |
label = df$label, | |
label.fsize = 20, | |
label.hide = FALSE, | |
minimap = TRUE, | |
tile = 'Stadia.StamenTerrain') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment