This commit is contained in:
Peter Kleiweg
2026-06-30 23:58:14 +02:00
parent ce8ed07327
commit 73c21b4f8f
3 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
nw <- read.table('data/2026/algemeen-count-per-2026.23-1', sep="\t", quote="", encoding="utf-8", col.names=c("f", "word"))
od <- read.table('data/2026/algemeen-count-per-2026.22-4', sep="\t", quote="", encoding="utf-8", col.names=c("f", "word"))
nw <- read.table('data/2026/algemeen-allewoorden-2026.23-1', sep="\t", quote="", encoding="utf-8", col.names=c("f", "word", "tags"))
od <- read.table('data/2026/algemeen-allewoorden-2026.22-4', sep="\t", quote="", encoding="utf-8", col.names=c("f", "word", "tags"))
words <- unique(c(od$word, nw$word))
o <- order(words)
words <- words[o]
@@ -26,3 +26,8 @@ nieuw[nieuw == 0] <- 0.5
plot(log(oud), log(nieuw))
lines(log(range(oud)), log(range(nieuw)))
identify(log(oud), log(nieuw), labels=words)
#plot(oud, nieuw)
#lines(range(oud), range(nieuw))
#identify(oud, nieuw, labels=words)