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: 30171
# 
#  The average duration (ms) and number of selected Read 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 
     + 66.412 51.785 139.769 117.726 73.778 74.681 
     - 88.793 54.618 125.358 94.239 67.906 79.223 
 Total 73.893 53.839 138.560 113.586 72.997 76.163 
# 
# SD

                   @   Diph   Long  Short  Total 
     + 32.565 26.886 52.915 47.458 29.070 39.405 
     - 97.602 29.216 39.936 45.864 30.565 81.422 
 Total 63.258 28.618 52.081 48.013 29.338 56.686 
# 
# Degrees of Freedom

                   @   Diph   Long  Short  Total 
     +  12366    938    654   1976   4389  20327 
     -   6209   2475     59    422    673   9842 
 Total  18576   3414    714   2399   5063  30170 
# 
# counts

                   @   Diph   Long  Short  Total 
     +  12367    939    655   1977   4390  20328 
     -   6210   2476     60    423    674   9843 
 Total  18577   3415    715   2400   5064  30171 
# 
# two-factor ANOVA (extremely simplistic, using the above numbers)
# 
#             	 F       	DoF        	partial W^2 ( = [dof * (F-1)] / [dof*(F-1) + n] )	
# Rows :      	    8.22 	1 / 30161	 0.000 
# Cols :      	  412.77 	4 / 30161	 0.052 
# Interaction:	   37.62 	4 / 30161	 0.005 
# Harmonic Sample Size: 408.405505319068


# 
# 
# Nrows: 30171
# Table: PHONEMESPHONEME
# Function: MEAN
# 
# Date: Sat Feb 28 12:02:48 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 ('T', 'S', 'PS')  
# 	)
#