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

# 
# MEAN
# 
# Group (rows X columns):
# PHONEMESPHONEME_stress X PHONEMESPHONEME_manner
# 
# Nrows: 13146
# 
#  The average duration (ms) and number of selected Spontaneous Consonant segments: 
#  Speaker x Manner of Articulation
#  (valid durations only, not from sentece boundaries)
#  
#   Manners                   Stress: +/-
#   F: Fricatives              
#   G: Glides         
#   N: Nasals        
#   S: Stops              
#   V: Vowels
#   O: Others (pauses)
#  
# 

# Case1

            F      G      N      S  Total 
     + 89.852 55.014 76.046 69.849 72.675 
     - 87.422 51.270 73.677 63.509 68.956 
 Total 89.088 53.933 75.409 67.852 71.560 
# 
# SD

            F      G      N      S  Total 
     + 47.252 30.604 49.804 41.141 44.308 
     - 44.459 29.495 47.901 33.121 40.738 
 Total 46.399 30.330 49.302 38.902 43.300 
# 
# Degrees of Freedom

            F      G      N      S  Total 
     +   2255   2077   1889   2978   9202 
     -   1034    843    693   1369   3942 
 Total   3290   2921   2583   4348  13145 
# 
# counts

            F      G      N      S  Total 
     +   2256   2078   1890   2979   9203 
     -   1035    844    694   1370   3943 
 Total   3291   2922   2584   4349  13146 
# 
# two-factor ANOVA (extremely simplistic, using the above numbers)
# 
#             	 F       	DoF        	partial W^2 ( = [dof * (F-1)] / [dof*(F-1) + n] )	
# Rows :      	   24.45 	1 / 13138	 0.002 
# Cols :      	  328.37 	3 / 13138	 0.070 
# Interaction:	    1.47 	3 / 13138	 0.000 
# Harmonic Sample Size: 1309.08366997892


# 
# 
# Nrows: 13146
# Table: PHONEMESPHONEME
# Function: MEAN
# 
# Date: Sat Feb 28 12:24:55 2004
# QUERY: 
# SELECT DISTINCT
# 	PHONEMESPHONEME.stress as PHONEMESPHONEME_stress, 
# 	PHONEMESPHONEME.manner as PHONEMESPHONEME_manner,
# 	PHONEMESPHONEME.id,
# CASE 
# 	WHEN  PHONEMESPHONEME.duration >= 0 THEN (1000*PHONEMESPHONEME.duration) 
# END AS Case1  
# FROM 
# 	PHONEMESPHONEME,
# 	WORDSPHONEME,
# 	TRANSLITPHONEME,
# 	POSPOS,
# 	INTAS915
# WHERE 
# 	(WORDSPHONEME.id = PHONEMESPHONEME.wordsid AND
# 	PHONEMESPHONEME.wordsid = WORDSPHONEME.id AND
# 	TRANSLITPHONEME.id = PHONEMESPHONEME.sentenceid AND
# 	PHONEMESPHONEME.sentenceid = TRANSLITPHONEME.id AND
# 	TRANSLITPHONEME.id = WORDSPHONEME.sentenceid AND
# 	WORDSPHONEME.sentenceid = TRANSLITPHONEME.id AND
# 	POSPOS.id = WORDSPHONEME.id AND
# 	WORDSPHONEME.id = POSPOS.id AND
# 	INTAS915.id = TRANSLITPHONEME.id AND
# 	TRANSLITPHONEME.id = INTAS915.id) AND
# 	( 	PHONEMESPHONEME.manner IN ('F', 'G', 'N', 'O', 'S', 'V') AND 
# 	PHONEMESPHONEME.durationvalid = 'V' AND 
# 	POSPOS.value != 'TSW' AND 
# 	INTAS915.style IN ('I', 'R') AND NOT 
# 	PHONEMESPHONEME.manner IN ('V', 'O') AND 
# 	PHONEMESPHONEME.sentencealign = 'M'  
# 	)
#