Dependency Relations
Coordination
What you’ll learn
- Read the asymmetry a tree imposes on a symmetric construction
- Attach cc and conj to the first conjunct, not to the verb
- Follow a three-way chain, where conj hangs off conj
- Tell a coordinating conjunction from a subordinating marker
A symmetric idea in an asymmetric notation
In salt and pepper, neither noun is subordinate to the other. A dependency tree cannot say that — every word must have exactly one head. The convention is to treat the first conjunct as the head of the whole coordination: it takes whatever role the phrase plays in the sentence, and both the conjunction and the later conjuncts attach to it.
The practical consequence is the thing to remember: in Salt and pepper sat nearby, only Salt is the subject as far as the tree is concerned. Pepper is a dependent of Salt.
“Salt and pepper sat nearby.”
- nsubjNominal subject
- ccCoordinating conjunction
- conjConjunct
- ROOTRoot of the sentence
- advmodAdverbial modifier
The three relations
ccCoordinating conjunction
The coordinating conjunction itself — and, but, or, and the rest of the FANBOYS. It attaches to the first conjunct.
How spaCy decides: the word is a coordinating conjunction. What varies is the head, and the head is always the conjunct before it.
“He stumbled but recovered.”
- nsubjNominal subject
- ROOTRoot of the sentence
- ccCoordinating conjunction
- conjConjunct
“We waited, but nobody came.”
- nsubjNominal subject
- ROOTRoot of the sentence
- ccCoordinating conjunction
- conjConjunct
conjConjunct
Every conjunct after the first. It is the most polymorphic relation in this family — what is being joined can be nouns, verbs, adjectives or entire clauses, and the label never changes.
How spaCy decides: the word is coordinated with an earlier one of the same kind. Its head is the first conjunct in a two-part coordination, or the previous conjunct in a longer chain.
“The room was cold and damp.”
- detDeterminer
- nsubjNominal subject
- ROOTRoot of the sentence
- acompAdjectival complement
- ccCoordinating conjunction
- conjConjunct
“The lights dimmed and the crowd hushed.”
With three or more conjuncts the relation chains: each one attaches to the previous conjunct rather than all of them attaching to the first. That is worth knowing before you answer, because it changes the head you must click.
“She cooked, cleaned and organised.”
preconjPre-correlative conjunction
The first half of a correlative pair — the either of either…or, the both of both…and. Rare, but it does occur in the app’s corpus.
How spaCy decides: a conjunction-like word appearing before the first conjunct rather than between the conjuncts. The ordinary conjunction in the middle is still a plain cc.
“Either Ana or Luis will drive.”
- preconjPre-correlative conjunction
- nsubjNominal subject
- ccCoordinating conjunction
- conjConjunct
- auxAuxiliary
- ROOTRoot of the sentence
“Both the cat and the dog escaped.”
Key terms
- Conjunct
- One of the things being joined. The first is promoted to head of the whole coordination; the rest are labelled
conj. Jack and Jill fell. — Jill is the conj of Jack. She washed and dried the plates. - Coordinating conjunction
- A word joining equals — and, but, or, nor, for, so, yet. Labelled
cc, and attached to the first conjunct. Jack and Jill fell. We waited, but nobody came. - Correlative pair
- A two-part conjunction such as either…or. The leading half is
preconj; the middle half stayscc. Either the ferry or the bus will do. Both Jack and Jill fell. - Compound predicate
- Two verbs sharing one subject. Labelled with
conjexactly like a compound sentence — the difference is whether the second verb has its ownnsubj. She washed and dried the plates. The dog barked and ran.
Practice on a real sentence
preconj — one of only a handful in the whole corpus. Remember that both the conjunction and the second conjunct attach to the first conjunct, not to the verb.“She both knows and corresponds with the queen.”
Word dependencies
Pick a relation, click the head, then click the dependent.
Sentence — select a relation below, then click the words it connects
She both knows and corresponds with the queen.
Dependency tree — word-order columns
The dependency tree is built here as each relation is confirmed