Copyrigth © 2000, 2004, Nederlandse Taalunie and R.J.J.H. van Son
All materials presented here are licensed under the GNU General Public License (GPL) unless explicitely stated otherwise. Please note that these materials are presented WITHOUT ANY WARRANTY. For information or further details see the License, GNU.org, or contact me at Rob.van.Son@hum.uva.nl.

Use this button to change the query
 
Use this button to select the speech fragments that were used

# 
# COUNT
# 
# Group (rows X columns):
# WORDSPHONEME_speaker X Case1
# 
# Nrows: 315
# 
# The surfacing of underlying /n/ (N vs Schwa) in 
# plural /@n/ in Spontaneous speech. (next word does not start with /n/)
# Spontaneous combines:
# I: Informal
# R: retold
# 
# Read combines:
# T: text Reading
# S: Sentence Reading
# 

# Counts

            N  Schwa  Total 
  F20N      0     28     28 
  F28G      0     66     66 
  F40L      0     46     46 
  F60E      0     58     58 
  M15R      0     11     11 
  M40K      2     49     51 
  M56H      0     23     23 
  M66O      7     25     32 
 Total      9    306    315 


# 
# 
# Nrows: 315
# Table: WORDSPHONEME
# Function: COUNT
# 
# Date: Sun Feb 29 13:10:34 2004
# QUERY: 
# SELECT DISTINCT
# 	WORDSPHONEME.speaker as WORDSPHONEME_speaker, 
# 	WORDSPHONEME.ID as COUNTID,
# CASE 
# 	WHEN  CGNPHONEME.value ~ '@n$' THEN TEXT('N') 
# 	WHEN  CGNPHONEME.value ~ '@$' THEN TEXT('Schwa') 
# END AS Case1  
# FROM 
# 	WORDSPHONEME,
# 	TRANSLITPHONEME,
# 	LEXCGNPHONEME,
# 	POSPOS,
# 	CGNPHONEME,
# 	POSSPECPOS,
# 	INTAS915
# WHERE 
# 	(CGNPHONEME.id = WORDSPHONEME.id AND
# 	WORDSPHONEME.id = CGNPHONEME.id AND
# 	LEXCGNPHONEME.id = WORDSPHONEME.id AND
# 	WORDSPHONEME.id = LEXCGNPHONEME.id AND
# 	TRANSLITPHONEME.id = WORDSPHONEME.sentenceid AND
# 	WORDSPHONEME.sentenceid = TRANSLITPHONEME.id AND
# 	TRANSLITPHONEME.id = LEXCGNPHONEME.sentenceid AND
# 	LEXCGNPHONEME.sentenceid = TRANSLITPHONEME.id AND
# 	TRANSLITPHONEME.id = CGNPHONEME.sentenceid AND
# 	CGNPHONEME.sentenceid = TRANSLITPHONEME.id AND
# 	POSPOS.id = WORDSPHONEME.id AND
# 	WORDSPHONEME.id = POSPOS.id AND
# 	POSSPECPOS.id = WORDSPHONEME.id AND
# 	WORDSPHONEME.id = POSSPECPOS.id AND
# 	INTAS915.id = TRANSLITPHONEME.id AND
# 	TRANSLITPHONEME.id = INTAS915.id) AND
# 	WORDSPHONEME.ID IS NOT NULL AND
# 	( 	POSPOS.value != 'TSW' AND 
# 	CGNPHONEME.value ~ '(@|@n)$' AND 
# 	WORDSPHONEME.value ~ 'en$' AND 
# 	CGNPHONEME.nextvalue !~ '^n' AND 
# 	INTAS915.style IN ('I', 'R') AND 
# 	POSPOS.value IN ('N', 'WW') AND 
# 	POSSPECPOS.value ~ 'mv'  
# 	)
#