-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.xml
3108 lines (2960 loc) · 140 KB
/
menu.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<menu>
<item id="tut" lbl="Voorbeelden">
<item id="tut-inl" lbl="Inleiding">
<item id="tut-inl-node" lbl="Node"><![CDATA[
-- Een vertex in de graaf dat geen woord is
-- (of een multi-word unit)
match (n:node)
return n
limit 10
]]></item>
<item id="tut-inl-word" lbl="Woord"><![CDATA[
match (w:word)
return w
limit 10
]]></item>
<item id="tut-inl-nw" lbl="Node of woord"><![CDATA[
-- :nw is een alias voor :node en :word samen
match (n:nw)
return n
limit 10
]]></item>
<item id="tut-inl-zin" lbl="Zin"><![CDATA[
match (s:sentence)
return s
limit 10
]]></item>
<item id="tut-inl-meta" lbl="Metadata"><![CDATA[
match (m:meta)
return m.sentid as "sentence ID", m.type, m.name, m.value
limit 10
]]></item>
<item id="tut-inl-attr" lbl="Attributen"><![CDATA[
-- Tellingen van verschillende soorten attributen
match (f:feature)
return f
limit 10
]]></item>
<item id="tut-inl-rel" lbl="Relatie"><![CDATA[
match ()-[r]->()
return r
limit 10
]]></item>
<item id="tut-inl-roor" lbl="Root"><![CDATA[
-- :sentence fungeert als root voor verschillende soorten relaties
match (:sentence)-[r]->()
return r
limit 10
]]></item>
<item id="tut-inl-corpus" lbl="Datainvoer"><![CDATA[
-- extra informatie toegevoegd bij het inlezen van het corpus
match (d:doc)
return d
]]></item>
</item>
<item id="tut-next" lbl="Woorden en woordgroepen">
<item id="tut-next-next" lbl="De next-relatie"><![CDATA[
-- De relatie :next verbindt twee opeenvolgende woorden met elkaar
match p = ()-[:next]->()
return p
]]></item>
<item id="tut-next-first" lbl="De eerste twee woorden van de zin"><![CDATA[
match p = (:word{begin:0})-[:next]->()
return p
]]></item>
<item id="tut-next-last" lbl="De laatste twee woorden van de zin"><![CDATA[
match p = ()-[:next]->(:word{last:true})
return p
]]></item>
<item id="tut-next-woorden" lbl="Woorden in dezelfde zin"><![CDATA[
-- Zoek zinnen met zowel 'dag' als 'jaar'
match (w1:word{lemma: 'dag'}),
(w2:word{sentid: w1.sentid, lemma: 'jaar'})
return w1, w2
]]></item>
<item id="tut-next-near" lbl="Woorden bij elkaar in de buurt"><![CDATA[
-- Zoek zinnen met zowel 'dag' als 'jaar'
-- Maximaal twee andere woorden tussen 'dag' en 'jaar'
-- Omdat de link geen richting bevat is de volgorde vrij
match p = (:word{lemma: 'dag'})-[:next*1..3]-(:word{lemma: 'jaar'})
return p
]]></item>
<item id="tut-next-groep" lbl="Woordgroepen"><![CDATA[
-- Welke woord volgt het vaakst na 'per'?
match (:word{lemma: 'per'})-[:next]->(w:word)
return w.lemma, count(*) as aantal
order by aantal desc
]]></item>
<item id="tut-next-mwu" lbl="Multi-word units"><![CDATA[
-- Een multi-word unit is de enige vertex van het type 'node' met de attributen 'word',
'lemma' en 'pt'
-- De waarde voor 'pt' is altijd 'mwu', net als voor 'cat' in dit geval
match (w:node{cat: 'mwu'})
return w.word, count(*) as aantal
order by aantal desc
]]></item>
<item id="tut-next-cp1" lbl="Compound parts (1)"><![CDATA[
-- Het attribuut '_cp' van een 'word' bevat de compound parts van het lemma
match (w:word)
where length(w._cp) > 1
return w.lemma, count(*)
order by count desc, lemma
]]></item>
<item id="tut-next-cp2" lbl="Compound parts (2)"><![CDATA[
-- Zoek woorden waarvan het lemma 'fiets' of 'fietsen' bevat
match (w:word)
where 'fiets' in w._cp
or 'fietsen' in w._cp
return w.word, count(*)
order by count desc, word
]]></item>
</item>
<item id="tut-pair" lbl="Woordpaar-relaties">
<item id="tut-pair-pair" lbl="De pair-relatie"><![CDATA[
match p = (:word)-[:pair]->(:word)
return p
]]></item>
<item id="tut-pair-graag" lbl="Wat doen we graag?"><![CDATA[
-- Werkwoorden met 'graag' als modifier
match p = (:nw{pt: 'ww'})-[:pair{rel: 'mod'}]->(:word{lemma: 'graag'})
return p
]]></item>
<item id="tut-pair-eten" lbl="Wat wordt er gegeten?"><![CDATA[
-- Zelfstandig naamwoorden als 'obj1' van het werkwoord 'eten' of 'opeten'
match (w1:word{pt: 'ww'})-[:pair{rel: 'obj1'}]->(w:word{pt: 'n'})
where w1.lemma in ['eten', 'opeten']
return w.lemma, count(*) as aantal
order by aantal desc
]]></item>
<item id="tut-pair-obj12" lbl="Werkwoorden met lijdend voorwerp en meewerkend voorwerp"><![CDATA[
match (w1:nw)<-[:pair{rel:'obj1'}]-(w:word{pt:'ww'})-[:pair{rel:'obj2'}]->(w2:nw)
where w1.pt in ['n', 'mwu']
and w2.pt in ['n', 'mwu']
return w.lemma as werkwoord, w1.word as "lijdend voorwerp", w2.word as "meewerkend voorwerp"
]]></item>
</item>
<item id="tut-rel" lbl="Alpino-structuren">
<item id="tut-rel-attrib" lbl="Alpino-attributen: een onvoltooid deelwoord"><![CDATA[
match (w:word{wvorm:'od'})
return w
]]></item>
<item id="tut-rel-conj" lbl="Alpino-attributen: een conjunctie"><![CDATA[
match (n:node{cat:'conj'})
return n
]]></item>
<item id="tut-rel-nwords" lbl="Aantal woorden in een mededelende hoofdzin"><![CDATA[
match (n:node{cat: 'smain'})
return n._n_words, count(*)
order by _n_words
]]></item>
<item id="tut-rel-rel" lbl="De Alpino-relatie"><![CDATA[
match p = (:node)-[:rel]->(:nw)
return p
]]></item>
<item id="tut-rel-rela" lbl="Relatieve zinsdelen"><![CDATA[
match p = (:node{cat:'rel'})-[:rel{rel:'body'}]->(:node{cat:'ssub'})
return p
]]></item>
<item id="tut-rel-kind" lbl="Onderwerpen die het lemma 'kind' bevatten"><![CDATA[
match (:node)-[:rel{rel:'su'}]->(n:nw)-[:rel*0..]->(:word{lemma: 'kind'})
return n
]]></item>
<item id="tut-rel-mwu-van" lbl="Multi-word units die eindigen met 'van'"><![CDATA[
match (n:node{cat:'mwu'})-[:rel{rel:'mwp'}]->(:word{lemma:'van', end:n.end})
return n.word as "multi-word unit", count(*) as aantal
order by aantal desc, "multi-word unit"
]]></item>
<item id="tut-rel-pdp" lbl="Node met twee parents"><![CDATA[
-- In Alpino kan een node maar één parent hebben
-- In AlpinoGraph zijn nodes met een identieke index versmolten, waardoor
-- een node meer dan één parent kan hebben
match m = (n1:node)-[:rel]->()<-[:rel]-(n2:node)
where n1.id < n2.id -- voorkomt dubbelen
return m
]]></item>
</item>
<item id="tut-ud" lbl="Universal Dependencies">
<item id="tut-ud-upos" lbl="Universal part-of-speech tag"><![CDATA[
match (w:word{upos:'NOUN'})
return w
]]></item>
<item id="tut-ud-feat" lbl="Universal morphological features"><![CDATA[
-- Attributen met hoofdletters in de naam moeten tussen dubbele aanhalingstekens
match (w:word{upos:'VERB'})
return w."VerbForm", count(*)
]]></item>
<item id="tut-ud-ud" lbl="De standaard UD-relatie"><![CDATA[
match p = (:word)-[:ud]->(:word)
return p
]]></item>
<item id="tut-ud-eud" lbl="De Enhanced UD-relatie"><![CDATA[
match p = (:word)-[:eud]->(:word)
return p
]]></item>
<item id="tut-ud-dep" lbl="De dep-relatie"><![CDATA[
-- :dep is een alias voor :ud en :eud samen
match p = (:word)-[:dep]->(:word)
return p
]]></item>
<item id="tut-ud-nsubj" lbl="Onderwerp"><![CDATA[
match ()-[:ud{main:'nsubj'}]->(w)
return w
]]></item>
<item id="tut-ud-pos" lbl="Possessieven"><![CDATA[
match (w1:word)-[:ud{rel:'nmod:poss'}]->(w2:word)
return w1, w2
]]></item>
<item id="tud-ud-wwobj" lbl="Werkwoord met object dat geen persoonlijk voornaamwoord is"><![CDATA[
match (w1:word{upos:'VERB'})-[:ud{main:'obj'}]->(w2:word)
where w2.upos != 'PRON'
return w1, w2
]]></item>
<item id="tut-ud-reeks" lbl="Een advmod van een amod van een zelfstandig naamwoord"><![CDATA[
match p = (:word{upos:'NOUN'})-[:ud{main:'amod'}]->()-[:ud{main:'advmod'}]->()
return p
]]></item>
</item>
<item id="tut-mix" lbl="Heterogene relaties">
<item id="tut-mix-udmwu" lbl="Universal Dependencies en multi-word units (1)"><![CDATA[
-- Universal dependencies zijn altijd tussen woorden
-- Soms is dat met een woord dat het begin van een multi-word unit is
-- en wil je de hele multi-word unit weten
-- Daarvoor kun je UD-relaties [:ud] combineren met Alpino-relaties [:rel]
match (:word{lemma:'gebruiken'})-[:ud{rel:'obj'}]->(v1:word)<-[:rel*0..1{rel:'mwp'}]-(v)
where not exists ( (v)<-[:rel{rel:'mwp'}]-() )
return v.lemma
]]></item>
<item id="tut-mix-udmwu2" lbl="Universal Dependencies en multi-word units (2)"><![CDATA[
-- Hier zoek je expliciet naar Universal Dependencies met een multi-word unit
match (w:word)-[u:ud]->(:word)<-[:rel]-(n:node{cat:'mwu'})
where not u.main in ['flat','fixed']
return w.lemma, u.rel, n.word
]]></item>
<item id="tut-mix-cop" lbl="Nominalisaties van copula-constructies"><![CDATA[
-- Voor de gevorderde taalkundige
-- Ook hier wordt een UD-relatie gecombineerd met een Alpino-relatie
match p = (:node{cat:'np'})-[:rel{rel:'hd'}]->(:word)<-[:ud{main:'cop'}]-(:word)
return p
]]></item>
</item>
<item id="tut-meta" lbl="Metadata">
<item id="tut-meta-zinnen" lbl="Aantal zinnen per land"><![CDATA[
-- Dit voorbeeld werk alleen met het Corpus Gesproken Nederlands
match (m:meta{name: 'country'})
return m.value as land, count(*) as "aantal zinnen"
]]></item>
<item id="tut-meta-woorden" lbl="Aantal woorden per land"><![CDATA[
-- Dit voorbeeld werk alleen met het Corpus Gesproken Nederlands
match (w:word),
(m:meta{sentid: w.sentid, name: 'country'})
return m.value as land, count(*) as "aantal woorden"
]]></item>
<item id="tut-meta-gij" lbl="Waar wordt 'gij' gebruikt?"><![CDATA[
-- Dit voorbeeld werk alleen met het Corpus Gesproken Nederlands
match (w:word{lemma: 'gij'}),
(m:meta{sentid: w.sentid, name: 'country'})
return m.value as land, count(*) as aantal
]]></item>
<item id="tut-meta-gij-perc" lbl="Genormaliseerd gebruik van 'gij'"><![CDATA[
-- Dit voorbeeld werk alleen met het Corpus Gesproken Nederlands
select
land,
case when land ? 'BE' then aantal::text::numeric / 379916 -- aantal woorden in BE
when land ? 'NL' then aantal::text::numeric / 753845 -- aantal woorden in NL
else 0
end as "per woord"
from (
match (w:word{lemma: 'gij'}),
(m:meta{sentid: w.sentid, name: 'country'})
return m.value as land, count(*) as aantal
) as foo
]]></item>
</item>
<item id="software" lbl="Software">
<item id="software-version" lbl="Versies"><![CDATA[
select version() as "PostgreSQL version", agversion() as "AgensGraph version"
]]></item>
</item>
</item>
<item id="idx" lbl="Corpusinformatie">
<item id="idx-node" lbl="Attributen van nodes"><![CDATA[
match (f:feature{v: 'node'})
return f.name as attribuut, f.count as aantal
order by attribuut
]]></item>
<item id="idx-word" lbl="Attributen van woorden"><![CDATA[
match (f:feature{v: 'word'})
return f.name as attribuut, f.count as aantal
order by attribuut
]]></item>
<item id="idx-rel" lbl="Attributen van relaties"><![CDATA[
match (f:feature{v: 'rel'})
return f.name as attribuut, f.count as aantal
order by attribuut
]]></item>
<item id="idx-meta" lbl="Soorten metadata, indien aanwezig"><![CDATA[
match (f:feature{v: 'meta'})
return f.name as metadata, f.count as aantal
order by metadata
]]></item>
<item id="idx-doc" lbl="Bij de invoer van het corpus"><![CDATA[
match (d:doc)
return d
]]></item>
</item>
<item id="spod" lbl="SPOD">
<item id="spod-info" lbl="Info" class="info"><![CDATA[
De *Syntactic profiler of Dutch* bestaat uit een grote set tests
waarmee een profiel van een corpus kan worden opgesteld. SPOD is
ontwikkeld in [PaQu](https://www.let.rug.nl/alfa/paqu/spod), en maakt
gebruik van query's in XPath. Zie paper:
> Gertjan van Noord, Jack Hoeksema, Peter Kleiweg, and Gosse Bouma. 2020. <br>
> [SPOD: Syntactic profiler of Dutch.](https://www.clinjournal.org/clinj/article/view/110) <br>
> *Computational Linguistics in the Netherlands Journal*, 10, pages 129--145.
Voor AlpinoGraph zijn al de SPOD-query's herschreven in Cypher. De
resultaten die je krijgt met deze nieuwe versies zijn niet altijd gelijk aan
de resultaten die je kreeg in PaQu, voornamelijk vanwege de technische
beperkingen van de oorspronkelijke query's in XPath. Zie paper:
> Peter Kleiweg and Gertjan van Noord. 2020. <br>
> [AlpinoGraph: A Graph-based search engine for flexible and efficient treebank search.](https://www.aclweb.org/anthology/2020.tlt-1.13/) <br>
> In *Proceedings of the 19th International Workshop on Treebanks and Linguistic Theories*,
> pages 151--161, Düsseldorf, Germany, 27--28 October. Association for Computational Linguistics.
]]></item>
<item id="spod-attrib" lbl="Attributen">
<item id="spod-attrib-info" lbl="Info" class="info"><![CDATA[
Hier worden de woordsoorten geteld. De Lassy part-of-speech labels
worden geteld via het attribuut **postag**. Er is daarnaast een
attribuut **pt** dat de vereenvoudigde weergave geeft van dezelfde
informatie: het deel van de postag tot aan het openingshaakje. De
documentatie van postag is te vinden in: Frank van Eynde, [Part of
speech tagging en lemmatisering van het D-Coi
corpus](http://www.let.rug.nl/vannoord/Lassy/POS_manual.pdf), 2005.
Vanwege historische redenen wordt hier ook het attribuut **pos**
opgenomen, maar dit attribuut wordt niet langer onderhouden, is ook
niet gedocumenteerd en wordt ook niet gecorrigeerd in de handmatig
geannoteerde corpora.
Ook geven we hier een overzicht van de categorie van de uiting (de "zin")
als geheel. Dat zijn immers niet altijd zinnen, maar soms ook
naamwoordgroepen of nog andere categorieën.
]]></item>
<item id="spod-pos" lbl="pos"><![CDATA[
match (w:word)
return w.pos as pos, count(*) as aantal
order by pos
]]></item>
<item id="spod-postag" lbl="postag"><![CDATA[
match (w:word)
return w.postag as postag, count(*) as aantal
order by postag
]]></item>
<item id="spod-pt" lbl="pt"><![CDATA[
match (w:word)
return w.pt as pt, count(*) as aantal
order by pt
]]></item>
<item id="spod-toptag" lbl="categorie van de gehele uiting"><![CDATA[
match (:node{cat: 'top'})-[:rel]->(n:node)
return n.cat as cat, count(*) as aantal
order by cat
]]></item>
</item>
<item id="spod-sents" lbl="Hoofdzinnen">
<item id="spod-sents-info" lbl="Info" class="info"><![CDATA[
Bij deze queries vergelijken we de verschillende typen hoofdzinnen:
mededelende hoofdzinnen (1), vraagzinnen die met een vraag-constituent
beginnen (2), ja/nee vragen (3), en imperatieven (4).
| | |
| ---: | -- |
| (1) | Pieter leest een boek. |
| | |
| (2) | Wie leest er een boek? |
| | |
| (3) | Lees jij een boek? |
| | |
| (4a) | Lees dat boek nou toch eens. |
| b) | Lees jij dat boek nou toch eens. |
Het onderscheid tussen ja/nee vragen en imperatieven is in de
treebanks niet altijd nauwkeurig te bepalen --- met name voor
de handmatig geannoteerde treebanks die iets minder informatie
bevatten dan de automatisch geannoteerde treebanks. Bijvoorbeeld
imperatieven die wel een onderwerp bevatten (4b) zullen door de
bestaande queries niet worden gevonden als imperatief.
]]></item>
<item id="spod-smain" lbl="mededelende hoofdzinnen">
<item id="spod-smain-zin" lbl="zinnen"><![CDATA[
match p = (:node{cat: 'smain'})
return p
]]></item>
<item id="spod-smain-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'smain'})
with n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-whq" lbl="vraagzinnen (wh)">
<item id="spod-whq-zin" lbl="zinnen"><![CDATA[
match p = (:node{cat: 'whq'})
return p
]]></item>
<item id="spod-whq-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'whq'})
with n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-janee" lbl="ja/nee vragen">
<item id="spod-janee-zin" lbl="zinnen"><![CDATA[
match (w:word{word: '?'}) ,
(n:node{sentid:w.sentid,cat: 'sv1'})<-[r:rel]-()
optional match (n)-[:rel{rel: 'hd'}]->(n1)
with w, r, n, n1
where not r.rel = 'body'
and n.end < w.end
and (n1 is null or n1.stype is null or n1.stype = 'ynquestion')
return n.sentid, n.id
]]></item>
<item id="spod-janee-tel" lbl="telling"><![CDATA[
match (w:word{word: '?'}) ,
(n:node{sentid:w.sentid,cat: 'sv1'})<-[r:rel]-()
optional match (n)-[:rel{rel: 'hd'}]->(n1)
with w, r, n, n1
where not r.rel = 'body'
and n.end < w.end
and (n1 is null or n1.stype is null or n1.stype = 'ynquestion')
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-imp" lbl="imperatieven">
<item id="spod-imp-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'sv1'})
optional match (n)-[:rel{rel: 'su'}]->(x1)
optional match (n)-[:rel{rel: 'hd'}]->(x2)
with n, x1, x2
where x1 is null
and not (x2.stype is not null and not x2.stype = 'imparative')
and not ((x2.tense is not null and x2.tense = 'past') or
(x2.pvagr is not null and x2.pvagr in ['mv','met-t']) or
(x2.pvtijd is not null and x2.pvtijd = 'verl') or
(x2.lemma is not null and x2.lemma in
['zijn','kunnen','willen','moeten','mogen','zullen','denken','geloven','vinden','hebben']))
return n.sentid, n.id
]]></item>
<item id="spod-imp-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'sv1'})
optional match (n)-[:rel{rel: 'su'}]->(x1)
optional match (n)-[:rel{rel: 'hd'}]->(x2)
with n, x1, x2
where x1 is null
and not (x2.stype is not null and not x2.stype = 'imparative')
and not ((x2.tense is not null and x2.tense = 'past') or
(x2.pvagr is not null and x2.pvagr in ['mv','met-t']) or
(x2.pvtijd is not null and x2.pvtijd = 'verl') or
(x2.lemma is not null and x2.lemma in
['zijn','kunnen','willen','moeten','mogen','zullen','denken','geloven','vinden','hebben']))
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
</item>
<item id="spod-bijzinnen" lbl="Bijzinnen">
<item id="spod-bijzinnen-info" lbl="Info" class="info"><![CDATA[
Deze queries vergelijken de verschillende soorten bijzinnen.
We onderscheiden de volgende bijzinnen: ingebedde vraagzinnen
met een vraag-constituent (1), finiete bijzinnen (2), infiniete
bijzinnen met *om te* (3) infiniete bijzinnen met alleen *te* (4),
en infiniete bijzinnen met een ander voorzetsel (5). Daarnaast
onderscheiden we relatieve bijzinnen (6) en free relatives (7).
| | |
| ---: | -- |
| (1) | (ik vroeg) wie dat boek gelezen heeft |
| | |
| (2a) | (ik lees dat boek) omdat het door Elsschot geschreven is |
| b) | (ik denk) dat het boek door Elsschot is geschreven |
| c) | (ik vroeg) of het boek door Ellschot is geschreven |
| | |
| (3a) | (ik heb geprobeerd) om een boek te lezen |
| b) | (ik ga naar de bieb) om een boek te lezen |
| c) | (het was niet nodig) om het boek te lezen |
| d) | (slangen zijn) om van te gruwen |
| e) | (het kind is oud genoeg) om alleen naar school te gaan |
| f) | (het boek is te duur) om te kopen |
| g) | (hij heeft voldoende invloed) om het boek te verkopen |
| h) | (ze was zo genadig) om het boek voor te lezen |
| i) | (een boek) om nooit te vergeten |
| | |
| (4) | (ik heb geprobeerd) een boek te lezen |
| | |
| (5) | (ik lees dat boek) zonder mijn oordeel uit te spreken |
| | |
| (6) | (ik lees een boek) dat door Elsschot is geschreven |
| | |
| (7) | wie dit leest (is gek) |
Binnen de finiete bijzinnen maken we onderscheid tussen bijzinnen die
ingeleid worden met *dat* (2b), met *of* (2c) dan wel met een ander
voegwoord (2a).
De infiniete bijzinnen met *om* worden verder onderverdeeld naar
gelang de bijzin optreedt als complement (3a), of als bepaling (3b),
als onderwerp (3c), als predicatief complement (3d), of als
comperatief complement (3efgh). Infiniete bijzinnen die als
bepaling optreden worden verder onderverdeeld, afhankelijk of
de bepaling bij een werkwoord optreedt (3b) of bij een zelfstandig
naamwoord (3i).
]]></item>
<item id="spod-whsub" lbl="ingebedde vraagzinnen">
<item id="spod-whsub-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'whsub'})-[:rel*1..2]->(n2:node{cat: 'ssub'})
where exists ((n)-[:rel{rel: 'body'}]->(n2))
or exists ((n)-[:rel{rel: 'body'}]->(:node{cat: 'conj'})-[:rel{rel: 'cnj'}]->(n2))
or exists ((n)-[:rel{rel: 'body'}]->(:node{cat: 'du'})-[:rel]->(n2))
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-whsub-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'whsub'})-[:rel*1..2]->(n2:node{cat: 'ssub'})
where exists ((n)-[:rel{rel: 'body'}]->(n2))
or exists ((n)-[:rel{rel: 'body'}]->(:node{cat: 'conj'})-[:rel{rel: 'cnj'}]->(n2))
or exists ((n)-[:rel{rel: 'body'}]->(:node{cat: 'du'})-[:rel]->(n2))
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ssub" lbl="finiete bijzinnen">
<item id="spod-ssub-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(n2:node{cat: 'ssub'})
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-ssub-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(:node{cat: 'ssub'})
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ssubdat" lbl="finiete bijzinnen met "dat"">
<item id="spod-ssubdat-zin" lbl="zinnen"><![CDATA[
match (n1:word{lemma: 'dat'})<-[:rel{rel: 'cmp'}]-(n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(n2:node{cat: 'ssub'})
return n.sentid, n.id, n1.id, n2.id
]]></item>
<item id="spod-ssubdat-tel" lbl="telling"><![CDATA[
match (:word{lemma: 'dat'})<-[:rel{rel: 'cmp'}]-(n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(:node{cat: 'ssub'})
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ssubof" lbl="finiete bijzinnen met "of"">
<item id="spod-ssubof-zin" lbl="zinnen"><![CDATA[
match (w:word{lemma: 'of'})<-[:rel{rel: 'cmp'}]-(n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(n2:node{cat: 'ssub'})
return n.sentid, n.id, w.id, n2.id
]]></item>
<item id="spod-ssubof-tel" lbl="telling"><![CDATA[
match (:word{lemma: 'of'})<-[:rel{rel: 'cmp'}]-(n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(:node{cat: 'ssub'})
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ssubcmp" lbl="finiete bijzinnen met andere voegwoorden">
<item id="spod-ssubcmp-zin" lbl="zinnen"><![CDATA[
match (w:nw)<-[:rel{rel: 'cmp'}]-(n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(n2:node{cat: 'ssub'})
where not (w.lemma is not null and w.lemma in ['of','dat'])
return n.sentid, n.id, w.id, n2.id
]]></item>
<item id="spod-ssubcmp-tel" lbl="telling"><![CDATA[
match (w:nw)<-[:rel{rel: 'cmp'}]-(n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(:node{cat: 'ssub'})
where not (w.lemma is not null and w.lemma in ['of','dat'])
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-oti" lbl="infiniete bijzinnen met "om"">
<item id="spod-oti-zin" lbl="zinnen"><![CDATA[
match p = (:node{cat: 'oti'})
return p
]]></item>
<item id="spod-oti-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otivc" lbl="infiniete bijzinnen met "om" die als complement optreden">
<item id="spod-otivc-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'vc'}]-(n2:node)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-otivc-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'vc'}]-(:node)
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otimod" lbl="infiniete bijzinnen met "om" die als bepaling optreden">
<item id="spod-otimod-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'mod'}]-(n2)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-otimod-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'mod'}]-()
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otiww"
lbl="infiniete bijzinnen met "om" die als bepaling bij een werkwoord optreden">
<item id="spod-otiww-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel]-()-[:rel{rel: 'hd'}]->(w:word{pt: 'ww'})
return n.sentid, n.id, w.id
]]></item>
<item id="spod-otiww-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel]-()-[:rel{rel: 'hd'}]->(:word{pt: 'ww'})
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otin"
lbl="infiniete bijzinnen met "om" die als bepaling bij een zelfstandig naamwoord optreden">
<item id="spod-otin-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel]-()-[:rel{rel: 'hd'}]->(w:word)
where w.pt in ['n','vnw']
return n.sentid, n.id, w.id
]]></item>
<item id="spod-otin-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel]-()-[:rel{rel: 'hd'}]->(w:word)
where w.pt in ['n','vnw']
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otisu" lbl="infiniete bijzinnen met "om" die als onderwerp fungeren">
<item id="spod-otisu-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'su'}]-(n2)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-otisu-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'su'}]-()
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otipred" lbl="infiniete bijzinnen met "om" die als predicaat fungeren">
<item id="spod-otipred-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'predc'}]-(n2)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-otipred-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'predc'}]-()
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-otiobc"
lbl="infiniete bijzinnen met "om" die optreden met combinaties zoals "te ADJ; zo ADJ; genoeg ADJ; voldoende N"">
<item id="spod-otiobc-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'obcomp'}]-(n2)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-otiobc-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'oti'})<-[:rel{rel: 'obcomp'}]-()
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-tite" lbl="infiniete bijzinnen met alleen "te"">
<item id="spod-tite-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'ti'})<-[:rel]-(n2:node)
where not n2.cat in ['oti','cp']
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-tite-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'ti'})<-[:rel]-(n2:node)
where not n2.cat in ['oti','cp']
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ti" lbl="infiniete bijzinnen met ander voorzetsel">
<item id="spod-ti-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(n2:node{cat: 'ti'})
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-ti-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'cp'})-[:rel{rel: 'body'}]->(:node{cat: 'ti'})
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-relssub" lbl="relatieve bijzinnen">
<item id="spod-relssub-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'rel'})-[:rel{rel: 'body'}]->(n1:node)-[r:rel*0..1]->(n2:node{cat: 'ssub'})
where length(r) = 0
or n1.cat = 'conj' and r[0].rel = 'cnj'
or n1.cat = 'du'
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-relssub-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'rel'})-[:rel{rel: 'body'}]->(n1:node)-[r:rel*0..1]->(n2:node{cat: 'ssub'})
where length(r) = 0
or n1.cat = 'conj' and r[0].rel = 'cnj'
or n1.cat = 'du'
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-whrel" lbl="free relatives">
<item id="spod-whrel-zin" lbl="zinnen"><![CDATA[
match (n:node{cat: 'whrel'})-[:rel{rel: 'body'}]->(n2:node)
where not exists( (:node)-[:rel{rel: 'mod'}]->(n) )
and (n2.cat = 'ssub'
or n2.cat = 'conj' and exists( (n2)-[:rel{rel: 'cnj'}]->(:node{cat: 'ssub'}) )
or n2.cat = 'du' and exists( (n2)-[:rel]->(:node{cat: 'ssub'}) ) )
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-whrel-tel" lbl="telling"><![CDATA[
match (n:node{cat: 'whrel'})-[:rel{rel: 'body'}]->(n2:node)
where not exists( (:node)-[:rel{rel: 'mod'}]->(n) )
and (n2.cat = 'ssub'
or n2.cat = 'conj' and exists( (n2)-[:rel{rel: 'cnj'}]->(:node{cat: 'ssub'}) )
or n2.cat = 'du' and exists( (n2)-[:rel]->(:node{cat: 'ssub'}) ) )
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
</item>
<item id="spod-corc" lbl="Correlatieve comparatieven">
<item id="spod-corc-info" lbl="Info" class="info"><![CDATA[
Correlatieve comparatieven zijn zinnen zoals:
| | |
| --: | -- |
| (1) | Hoe langer, hoe beter |
| | |
| (2) | Hoe langer hij wordt, des te meer hij last van zijn rug krijgt |
]]></item>
<item id="spod-corc-zin" lbl="zinnen"><![CDATA[
match p1 = (n1:node{_deste: true})<-[:rel*0..]-(n0:node)<-[:rel*0..]-(n:node{cat: 'du'})
match p2 = (n1)<-[:rel*0..]-(n0)-[:rel*0..]->(n2:node{_deste: true})
optional match p = (n0)<-[:rel*0..]-(:node{cat:'du'})<-[:rel*1..]-(n)
with n1, n2, p, p1, p2
where n1.id < n2.id
and p is null
return p1, p2
]]></item>
<item id="spod-corc-tel" lbl="telling"><![CDATA[
match (n1:node{_deste: true})<-[:rel*0..]-(n0:node)<-[:rel*0..]-(n:node{cat: 'du'})
match (n1)<-[:rel*0..]-(n0)-[:rel*0..]->(n2:node{_deste: true})
optional match p = (n0)<-[:rel*0..]-(:node{cat:'du'})<-[:rel*1..]-(n)
with n, n1, n2, p
where n1.id < n2.id
and p is null
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-compcomp" lbl="Woorden met een comparatief complement">
<item id="spod-compcomp-info" lbl="Info" class="info"><![CDATA[
Comparatieve adjectieven en woorden zo als *zo*, *even*, *meer*,
*minder*, *niet*, *niets*, *ander*, *anders* treden soms op met
een complement dat vaak wordt ingeleid met het woord *dan* of *als*.
Naast het totale aantal voorkomens van de constructie kijken we naar
het aantal voorbeelden waarbij *zo* (1) of *even* (2) of een
comparatief adjective (3) of *meer* of *minder* (4) of *niet*,
*niets*, *ander*, *anders* (5) het hoofd is.
Bij comparatieve adjectieven make we ook nog een onderverdeling
naar de aard van het complement. Een vergelijkbare onderverdeling
wordt gemaakt voor de andere hoofden.
| | |
| ---: | -- |
| (1) | zo groen als gras |
| | |
| (2) | even dik als jij |
| | |
| (3a) | beter dan jij |
| b) | beter dan ik dacht |
| c) | beter dan bij de buren |
| d) | beter dan gisteren |
| | |
| (4a) | meer geluk dan wijsheid |
| b) | meer geluk dan ik dacht |
| c) | meer geluk dan bij de buren |
| d) | meer geluk dan gisteren |
| | |
| (5a) | niets anders dan ellende |
| b) | niets anders dan dat hij komt |
| c) | niets anders dan bij de buren |
| d) | niets anders dan gisteren |
]]></item>
<item id="spod-cc" lbl="totaal">
<item id="spod-cc-zin" lbl="zinnen"><![CDATA[
match (n:nw)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-cc-tel" lbl="telling"><![CDATA[
match (n:nw)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-cczo" lbl="met als hoofd "zo"">
<item id="spod-cczo-zin" lbl="zinnen"><![CDATA[
match (w:word{lemma: 'zo'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)
return w.sentid, w.id, n2.id
]]></item>
<item id="spod-cczo-tel" lbl="telling"><![CDATA[
match (w:word{lemma: 'zo'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-cceven" lbl="met als hoofd "even"">
<item id="spod-cceven-zin" lbl="zinnen"><![CDATA[
match (w:word{lemma: 'even'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)
return distinct w.sentid, w.id, n2.id
]]></item>
<item id="spod-cceven-tel" lbl="telling"><![CDATA[
match (w:word{lemma: 'even'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccca" lbl="met als hoofd comparatief adjectief">
<item id="spod-ccca-zin" lbl="zinnen"><![CDATA[
match (n:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)
return n.sentid, n.id, n2.id
]]></item>
<item id="spod-ccca-tel" lbl="telling"><![CDATA[
match (n:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()
with distinct n.sentid as sentid, n.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccdannp" lbl="met als hoofd comparatief adjectief, gevolgd door NP">
<item id="spod-ccdannp-zin" lbl="zinnen"><![CDATA[
match (w:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)-[:rel{rel: 'body'}]->(x{_np:true})
return w.sentid, w.id, n2.id, x.id
]]></item>
<item id="spod-ccdannp-tel" lbl="telling"><![CDATA[
match (w:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x{_np:true})
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccdanvs" lbl="met als hoofd comparatief adjectief, gevolgd door VP of S">
<item id="spod-ccdanvs-zin" lbl="zinnen"><![CDATA[
match (w:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-(n2)-[:rel{rel: 'obcomp'}]->()-[:rel]->(x:nw)
where (x.cat is not null and x.cat in
['inf','ti','ssub','oti','ppart','smain','sv1','cp'])
or (x.pt is not null and x.pt = 'ww')
return distinct w.sentid, w.id, n2.id, x.id
]]></item>
<item id="spod-ccdanvs-tel" lbl="telling"><![CDATA[
match (w:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel]->(x:nw)
where (x.cat is not null and x.cat in
['inf','ti','ssub','oti','ppart','smain','sv1','cp'])
or (x.pt is not null and x.pt = 'ww')
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccdanpp" lbl="met als hoofd comparatief adjectief, gevolgd door PP">
<item id="spod-ccdanpp-zin" lbl="zinnen"><![CDATA[
match (w:word{pt: 'adj',graad: 'comp'})<-[:rel{rel: 'hd'}]-(:node)-[:rel{rel: 'obcomp'}]->(:node)-[:rel{rel: 'body'}]->(n2:node{cat: 'pp'})
return w.sentid, w.id, n2.id
]]></item>
<item id="spod-ccdanpp-tel" lbl="telling"><![CDATA[
match (w:word{pt: 'adj',graad: 'comp'})<-[:rel{rel: 'hd'}]-(:node)-[:rel{rel: 'obcomp'}]->(:node)-[:rel{rel: 'body'}]->(:node{cat: 'pp'})
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccdanav" lbl="met als hoofd comparatief adjectief, gevolgd door A of ADV">
<item id="spod-ccdanav-zin" lbl="zinnen"><![CDATA[
match (w:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw)
where (x.cat is not null and x.cat in ['advp','ap'])
or (x.pt is not null and x.pt in ['adj','bw'])
return w.sentid, w.id, x.id
]]></item>
<item id="spod-ccdanav-tel" lbl="telling"><![CDATA[
match (w:word{pt: 'adj', graad: 'comp'})<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw)
where (x.cat is not null and x.cat in ['advp','ap'])
or (x.pt is not null and x.pt in ['adj','bw'])
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccmm" lbl="met als hoofd "meer", "minder"">
<item id="spod-ccmm-zin" lbl="zinnen"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)
where w.lemma in ['veel','minder','weinig']
return w.sentid, w.id, n2.id
]]></item>
<item id="spod-ccmm-tel" lbl="telling"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()
where w.lemma in ['veel','minder','weinig']
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccmdnp" lbl="met als hoofd "meer", "minder", gevolgd door NP">
<item id="spod-ccmdnp-zin" lbl="zinnen"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw{_np: true})
where w.lemma in ['veel', 'minder', 'weinig']
return w.sentid, w.id, x.id
]]></item>
<item id="spod-ccmdnp-tel" lbl="telling"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(:nw{_np: true})
where w.lemma in ['veel', 'minder', 'weinig']
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccmdvs"
lbl="met als hoofd "meer", "minder", gevolgd door VP of S">
<item id="spod-ccmdvs-zin" lbl="zinnen"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw)
where w.lemma in ['veel', 'minder', 'weinig']
and (x.cat in ['inf','ti','ssub','oti','ppart','smain','sv1','cp'] or x.pt = 'ww')
return w.sentid, w.id, x.id
]]></item>
<item id="spod-ccmdvs-tel" lbl="telling"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw)
where w.lemma in ['veel', 'minder', 'weinig']
and (x.cat in ['inf','ti','ssub','oti','ppart','smain','sv1','cp'] or x.pt = 'ww')
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccmdpp" lbl="met als hoofd "meer", "minder", gevolgd door PP">
<item id="spod-ccmdpp-zin" lbl="zinnen"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(n2:node{cat: 'pp'})
where w.lemma in ['veel', 'minder', 'weinig']
return distinct w.sentid, w.id, n2.id
]]></item>
<item id="spod-ccmdpp-tel" lbl="telling"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(:node{cat: 'pp'})
where w.lemma in ['veel', 'minder', 'weinig']
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccmdav"
lbl="met als hoofd "meer", "minder", gevolgd door A of ADV">
<item id="spod-ccmdav-zin" lbl="zinnen"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw)
where w.lemma in ['veel', 'minder', 'weinig']
and (x.cat in ['advp', 'ap'] or x.pt in ['adj', 'bw'])
return distinct w.sentid, w.id, x.id
]]></item>
<item id="spod-ccmdav-tel" lbl="telling"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()-[:rel{rel: 'body'}]->(x:nw)
where w.lemma in ['veel', 'minder', 'weinig']
and (x.cat in ['advp', 'ap'] or x.pt in ['adj', 'bw'])
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items
]]></item>
</item>
<item id="spod-ccnn"
lbl="met als hoofd "niet", "niets", "ander", "anders"">
<item id="spod-ccnn-zin" lbl="zinnen"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->(n2)
where w.lemma in ['niet', 'niets', 'ander', 'anders']
return w.sentid, w.id, n2.id
]]></item>
<item id="spod-ccnn-tel" lbl="telling"><![CDATA[
match (w:word)<-[:rel{rel: 'hd'}]-()-[:rel{rel: 'obcomp'}]->()
where w.lemma in ['niet', 'niets', 'ander', 'anders']
with distinct w.sentid as sentid, w.id as id
return count(distinct(sentid)) as zinnen, count(*) as items