Difference between revisions of "Coding query"

From Icelandic Parsed Historical Corpus (IcePaHC)
Jump to: navigation, search
Line 1: Line 1:
 
1. start by defining a query in a file, e.g. test1.c, then:
 
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
+
'''CS test1.c $ice''' (= ...icepahcv0.9/psd/*psd; edit aliases in .bashrc)
  
 
2. No you have created test1.cod. Create another (empty) file, codes.q, and write "print_only: CODING*", then:
 
2. No you have created test1.cod. Create another (empty) file, codes.q, and write "print_only: CODING*", then:

Revision as of 23:24, 11 December 2013

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. No 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"])