Skip to content

Instantly share code, notes, and snippets.

@agricolamz
Created January 17, 2025 16:59
Show Gist options
  • Save agricolamz/4654ee75aa26eebd63a99eb1f9539957 to your computer and use it in GitHub Desktop.
Save agricolamz/4654ee75aa26eebd63a99eb1f9539957 to your computer and use it in GitHub Desktop.
library(tidyverse)
khi <- read_csv("russian_spoken_corpora_analysis/dialect_khislavichi_udpiped_mystemed.csv")
spi <- read_csv("russian_spoken_corpora_analysis/dialect_spiridonova_buda_udpiped_mystemed.csv")
khi |>
bind_rows(spi) |>
filter(mystem_pos == "S",
str_detect(mystem_feats, "nom.pl"),
str_detect(mystem_feats, "^[mn],")) |>
writexl::write_xlsx("~/Desktop/4Sveta_N_mn_nompl.xlsx")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment