NeoVoc hierarchy of Lexical Innovation Processes

From eneoli wikibase

Hierarchy of Lexical Innovation Processes in NeoVoc

A conceptual organization that builds on Sableyrolles & Pruvost's work (2016) as a starting point.

Many NeoVoc concepts describe either (a) types of Lexical Innovation Process, or (b), results of Lexical Innovation. That is, each type (kind) should be linked either to (a subclass of) Lexical Innovation Process using the property subclass of (P4), or to Lexical Innovation Result, using the property has result (P69).

Database queries

Subclasses (kinds of) "lexical innovation process"

#defaultView:Graph
#title: Subclasses (kinds of) "lexical innovation process"

PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>

select
?subject ?subjectLabel ?object ?objectLabel

where {
  
  ?subject endp:P4* enwb:Q1731; endp:P4 ?object.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], en, fr". }
}

Try it!


Lexical innovation PROCESS or RESULT?

#title: NeoVoc concepts: lexical innovation PROCESS or RESULT?

PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>

select
?concept ?wikidata ?label_en ?label_fr ?process_or_result ?class ?classLabel

where { values ?proc_or_res {enwb:Q1731 enwb:Q15}
  
  ?concept endp:P4+ ?proc_or_res. ?proc_or_res rdfs:label ?process_or_result. filter(lang(?process_or_result)="en")
  ?concept endp:P4 ?class.
  optional {?concept endp:P1 ?wd. bind(iri(concat(str(wd:),?wd)) as ?wikidata)}
  ?concept rdfs:label ?label_en. filter(lang(?label_en)="en")
  ?concept rdfs:label ?label_fr. filter(lang(?label_fr)="fr")
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by ?process_or_result ?label_en

Try it!


Concepts without classification as lexical innovation process or result

These concepts still need a subclass of statement pointing to either to (a subclass of) Lexical Innovation Process, or to Lexical Innovation Result, in case they are to be classified in that way.

#title: NeoVoc concepts with missing classification as (subclass of) lexical innovation PROCESS or RESULT

PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>

select distinct
?concept ?wikidata ?label_en ?label_fr

where { values ?proc_or_res {enwb:Q1731 enwb:Q15}
  
  ?concept endp:P5 enwb:Q12.
  filter not exists {?concept endp:P4+ ?proc_or_res.}
  optional {?concept endp:P1 ?wd. bind(iri(concat(str(wd:),?wd)) as ?wikidata)}
  ?concept rdfs:label ?label_en. filter(lang(?label_en)="en")
  ?concept rdfs:label ?label_fr. filter(lang(?label_fr)="fr")
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by ?label_en

Try it!


Concepts classified as lexical innovation process, and concepts describing the corresponding results

#title: NeoVoc concepts: lexical innovation PROCESSes and their RESULTs

PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>

select
?process ?processLabel ?processTypeLabel ?result ?resultLabel 
where { 
  ?process endp:P4 ?processType; endp:P69 ?result. # instances of "NeoVoc Concept"
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". }
}

Try it!


Concepts classified as lexical innovation process, missing a link to the corresponding result concept

#title: NeoVoc concepts: lexical innovation PROCESS without corresponding RESULT

PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>

select
?process ?processLabel ?processTypeLabel
where { 
  ?process endp:P4 ?processType; endp:P4+ enwb:Q1731.
  filter not exists {?narrower endp:P4 ?process.}
  filter not exists {?process endp:P69 ?result.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". }
}

Try it!

Concepts classified as lexical innovation result, missing a link from the corresponding process concept

#title: NeoVoc concepts: lexical innovation RESULT without corresponding PROCESS

PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>

select
?result ?resultLabel
where { 
  ?result endp:P4 enwb:Q15.
  filter not exists {?process endp:P69 ?result.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". }
}

Try it!