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 Case2
# 
# Nrows: 9411
# 
#  The average duration (ms) and number of selected Spontaneous Vowel segments: 
#  Lexical Stress x Vowel Quantity
#  (valid durations only)
#  
#   Stress:   +/-
#   Quantity: 
#   Diphthong - V+
#   Long      - a, o, e, 2 AND V~
#   Short     - i, I, E, Y, A, O, u, y
#   Schwa     - @
#  
# 

# Case1

            @   Diph   Long  Short  Total 
     + 65.994 143.554 122.887 78.522 93.470 
     - 66.179 131.242 100.745 73.038 72.886 
 Total 66.130 142.500 118.640 77.786 86.968 
# 
# SD

            @   Diph   Long  Short  Total 
     + 68.589 54.829 98.855 37.979 67.627 
     - 59.136 52.328 56.003 38.709 56.978 
 Total 61.764 54.687 92.591 38.119 65.157 
# 
# Degrees of Freedom

            @   Diph   Long  Short  Total 
     +    716    565   1541   3612   6437 
     -   1993     52    365    559   2972 
 Total   2710    618   1907   4172   9410 
# 
# counts

            @   Diph   Long  Short  Total 
     +    717    566   1542   3613   6438 
     -   1994     53    366    560   2973 
 Total   2711    619   1908   4173   9411 
# 
# two-factor ANOVA (extremely simplistic, using the above numbers)
# 
#             	 F       	DoF        	partial W^2 ( = [dof * (F-1)] / [dof*(F-1) + n] )	
# Rows :      	   75.16 	1 / 9403	 0.008 
# Cols :      	  239.80 	3 / 9403	 0.071 
# Interaction:	   10.97 	3 / 9403	 0.003 
# Harmonic Sample Size: 285.978252959828


# 
# 
# Nrows: 9411
# Table: PHONEMESPHONEME
# Function: MEAN
# 
# Date: Sat Feb 28 11:59:40 2004
# QUERY: 
# SELECT DISTINCT
# 	PHONEMESPHONEME.stress as PHONEMESPHONEME_stress,
# 	PHONEMESPHONEME.id,
# CASE 
# 	WHEN  PHONEMESPHONEME.duration >= 0 THEN (1000*PHONEMESPHONEME.duration) 
# END AS Case1 ,
# CASE 
# 	WHEN  PHONEMESPHONEME.value ~ '\\+' THEN TEXT('Diph') 
# 	WHEN  PHONEMESPHONEME.value ~ '\\~' THEN TEXT('Long') 
# 	WHEN  PHONEMESPHONEME.value IN ('a', 'o', 'e', '2') THEN TEXT('Long') 
# 	WHEN  PHONEMESPHONEME.value IN ('i', 'I', 'E', 'Y', 'A', 'O', 'u', 'y') THEN TEXT('Short') 
# 	WHEN  PHONEMESPHONEME.value IN ('@') THEN TEXT('@') 
# END AS Case2  
# 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 
# 	PHONEMESPHONEME.manner IN ('V')  
# 	)
#