Coding query

From Icelandic Parsed Historical Corpus (IcePaHC)
Revision as of 05:34, 20 February 2020 by Einarfs (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

1. start by defining a query in a file, e.g. test1.c, then:

CS test1.c $ice (= ...icepahcv0.9/psd/*psd; edit aliases in .bashrc)

2. Now you have created test1.cod. Create another (empty) file, codes.q, and write "print_only: CODING*", then:

CS codes.q test1.cod

3. Now you have created test.cod.ooo. Use grep to delete or search.

grep -v "x" extraposed.cod.ooo > temp.out [deletes x's]

grep -v "b" temp.out > dataset.out [deletes x's and pipes it in the file dataset.out]


gogn<-read.table("dataset.out",sep=":",header=T)

table(gogn$position,gogn$year,gogn$def)

table(gogn$position[gogn$def=="d"],gogn$year[gogn$def=="d"])