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: 16618
# 
#  The average duration (ms) and number of selected Read Consonant segments: 
#  Speaker x Manner of Articulation
#  (valid durations only)
#  
#   Manners                   Stress: +/-
#   F: Fricatives       
#   G: Glides           
#   N: Nasals          
#   S: Stops            
#   V: Vowels
#   O: Others (pauses)
#  
# 

# Case1

            F      G      N      S  Total 
     + 82.192 48.555 64.307 63.662 64.755 
     - 80.311 47.113 64.881 61.511 64.119 
 Total 81.611 48.172 64.476 62.982 64.565 
# 
# SD

            F      G      N      S  Total 
     + 33.203 22.790 28.297 26.840 30.327 
     - 29.076 21.563 29.705 25.620 28.967 
 Total 31.993 22.477 28.715 26.477 29.928 
# 
# Degrees of Freedom

            F      G      N      S  Total 
     +   2859   2764   2354   3677  11657 
     -   1277    999    980   1700   4959 
 Total   4137   3764   3335   5378  16617 
# 
# counts

            F      G      N      S  Total 
     +   2860   2765   2355   3678  11658 
     -   1278   1000    981   1701   4960 
 Total   4138   3765   3336   5379  16618 
# 
# two-factor ANOVA (extremely simplistic, using the above numbers)
# 
#             	 F       	DoF        	partial W^2 ( = [dof * (F-1)] / [dof*(F-1) + n] )	
# Rows :      	    2.06 	1 / 16610	 0.000 
# Cols :      	  820.32 	3 / 16610	 0.129 
# Interaction:	    2.51 	3 / 16610	 0.000 
# Harmonic Sample Size: 1667.51451800398


# 
# 
# Nrows: 16618
# Table: PHONEMESPHONEME
# Function: MEAN
# 
# Date: Sat Feb 28 12:27:04 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 ('T', 'S', 'PS') AND NOT 
# 	PHONEMESPHONEME.manner IN ('V', 'O') AND 
# 	PHONEMESPHONEME.sentencealign = 'M'  
# 	)
#