Browse Source

fixing order in progress, knits ok

alecristia 2 months ago
parent
commit
5627f9b79a
17 changed files with 397 additions and 640 deletions
  1. 52 31
      CODE/SM.Rmd
  2. 199 167
      CODE/SM.html
  3. 46 45
      CODE/SM.log
  4. BIN
      CODE/SM.pdf
  5. 5 3
      CODE/create-all-rs.R
  6. BIN
      CODE/fig1.png
  7. BIN
      CODE/fig2.png
  8. BIN
      CODE/fig4.png
  9. BIN
      CODE/fig5.png
  10. BIN
      CODE/fig6.png
  11. BIN
      CODE/fig7.png
  12. BIN
      CODE/fig8.png
  13. BIN
      CODE/fig9.png
  14. 18 17
      CODE/sessionInfo.txt
  15. 75 375
      data_output/all_rs.csv
  16. 1 1
      input/el1000-metrics
  17. 1 1
      input/laac-metrics

+ 52 - 31
CODE/SM.Rmd

@@ -1,13 +1,13 @@
 ---
 title: Supplementary Materials to Establishing the reliability and validity of measures extracted from long-form recordings
 output:
-  pdf_document:
-    toc: yes
-    toc_depth: 3
   html_document:
     toc: yes
     toc_depth: '3'
     df_print: paged
+  pdf_document:
+    toc: yes
+    toc_depth: 3
 ---
 
 ```{r setup, include=FALSE, eval=TRUE}
@@ -202,6 +202,8 @@ nrecs=length(levels(mydat_aclew$session_id))
 
 Please see code in the RMarkDown version of the document.
 
+> A variable with one of the lowest Child ICC (LENA's peak hourly AWC, Child ICC = `r round(df.icc.mixed[df.icc.mixed$data_set=="lena" & df.icc.mixed$metric=="peak_wc_adu","icc_child_id"],2)`) has a flatter regression line and wider confidence intervals, with points spread widely around the regression line. In contrast, the variable with the highest Child ICC (ACLEW's other child vocalization duration, Child ICC = `r round(df.icc.mixed[df.icc.mixed$data_set=="aclew" & df.icc.mixed$metric=="voc_och_ph","icc_child_id"],2)`) has points that are less scattered and closer to the diagonal. 
+
 
 ```{r icc-examples-fig1,  fig.width=6, fig.height=4.5,fig.cap="Figure 2 (reproduced). Scatterplots for two selected variables. The left one has relatively low ICCs; the right one has relatively higher ICCs."}
 # figure of bad ICC: lena     used to be: avg_voc_dur_chi, now is: peak_wc_adu_ph; good ICC: lena used to be: voc_och_ph, now is: voc_dur_och_ph
@@ -271,9 +273,10 @@ fig2 = ggarrange(bad, good,
           font.label = list(size = 20))  + labs(color= "Corpus")  +  theme(text = element_text(size = 20))
 fig2 
 
-ggsave("fig2.png", plot = fig2, width = 6, height = 4.5, units = "in")
+ggsave("fig1.png", plot = fig2, width = 6, height = 4.5, units = "in")
 ```
 
+
 ## SM E: Code to reproduce text at the beginning of the "Setting the stage" section
 
 Please see code in the RMarkDown version of the document.
@@ -332,11 +335,27 @@ reg_anova_cor=Anova(lr_cor)
 r_msds=aggregate(rval_tab$m,by=list(rval_tab$data_set),get_msd)
 rownames(r_msds)<-r_msds$Group.1
 
-cor_t=t.test(rval_tab$m ~ rval_tab$data_set)
+
+r_msds_type=aggregate(rval_tab$m,by=list(rval_tab$Type),get_msd)
+rownames(r_msds_type)<-r_msds_type$Group.1
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Other children","Adults")] ~ rval_tab$Type[rval_tab$Type %in% c("Other children","Adults")]) #marginal
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Other children","Male")] ~ rval_tab$Type[rval_tab$Type %in% c("Other children","Male")]) #sig
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Other children","Female")] ~ rval_tab$Type[rval_tab$Type %in% c("Other children","Female")]) #sig
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Other children","Output")] ~ rval_tab$Type[rval_tab$Type %in% c("Other children","Output")]) #not sig
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Male","Output")] ~ rval_tab$Type[rval_tab$Type %in% c("Male","Output")]) #sig
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Female","Output")] ~ rval_tab$Type[rval_tab$Type %in% c("Female","Output")]) #sig
+
+cor_t=t.test(rval_tab$m[rval_tab$Type %in% c("Adults","Output")] ~ rval_tab$Type[rval_tab$Type %in% c("Adults","Output")]) #not sig
 
 ```
 
-> To see whether correlations in this analysis differed by talker types and pipelines, we fit a linear model with the formula $lm(cor ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. The model was overall significant (F(`r round(reg_sum_cor$fstatistic["dendf"],2)`) = `r round(reg_sum_cor$fstatistic["value"],2)`, p < .001). We found an adjusted R-squared of `r round(reg_sum_cor$adj.r.squared*100)`%, suggesting this model did not explain a great deal of variance in correlation coefficients. A Type 3 ANOVA on this model revealed a significant effect of pipeline (F = `r round(reg_anova_cor["data_set","F value"],2)`, p = `r round(reg_anova_cor["data_set","Pr(>F)"],2)`), due to higher correlations for ACLEW (`r r_msds["aclew","x"]`) than for LENA metrics (m = `r r_msds["lena","x"]`). 
+> To see whether correlations in this analysis differed by talker types and pipelines, we fit a linear model with the formula $lm(cor ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. The model was overall significant (F(`r round(reg_sum_cor$fstatistic["dendf"],2)`) = `r round(reg_sum_cor$fstatistic["value"],2)`, p < .001). We found an adjusted R-squared of `r round(reg_sum_cor$adj.r.squared*100)`%. A Type 3 ANOVA on this model revealed   a significant effect of type (F = `r round(reg_anova_cor["Type","F value"],2)`, p < .001), with higher correlations for other children metrics (`r r_msds_type["Other children","x"]`) and output metrics (`r r_msds_type["Output","x"]`) than female (`r r_msds_type["Female","x"]`), and male (`r r_msds_type["Male","x"]`) metrics. There was also a marginal effect of pipeline (F = `r round(reg_anova_cor["data_set","F value"],2)`, p = `r round(reg_anova_cor["data_set","Pr(>F)"],2)`), with numerically higher correlations  for ACLEW (`r r_msds["aclew","x"]`) than for LENA metrics (`r r_msds["lena","x"]`). 
 
 See table below for results of the Type 3 ANOVA.
 
@@ -386,15 +405,39 @@ May it be that correlation coefficients are higher than Child ICC because we con
 
 This is still lower than the correlation observed for this same variable, `r rval_tab[rval_tab$metric=="can_voc_chi_ph","m"]`. We believe this is due to another difference between the two analyses, namely that here we are including all recordings, whereas the other analysis is focused on recordings less than 2 months away.
 
+## SM J: Information that is incorporated in Figure 2 (model fitting)
 
+> Out of the `r dim(df.icc.mixed)[1]` fitted models, `r table(df.icc.mixed$formula)["full"]` could be fit with the full model, yielding a measure of Corpus ICC.  For the `r table(df.icc.mixed$formula)["no_exp"]` for which the full model was singular, we fit the data with the No Corpus model, and none was singular then, allowing us to have Child ICC for all `r dim(df.icc.mixed)[1]` metrics. 
 
 
-## SM J: Code to reproduce text at the beginning of the "Overall reliability" section
+## SM J: Code to reproduce Table 4
 
 Please see code in the RMarkDown version of the document.
 
 
-> Out of the `r dim(df.icc.mixed)[1]` fitted models, `r table(df.icc.mixed$formula)["full"]` could be fit with the full model, yielding a measure of Corpus ICC. Of these, `r round(sum(df.icc.mixed$icc_corpus<.2,na.rm=T)/sum(!is.na(df.icc.mixed$icc_corpus))*100)`% had Corpus ICCs smaller than .2, consistent with the idea that LENA and ACLEW metrics are robust to corpus differences. For the `r table(df.icc.mixed$formula)["no_exp"]` for which the full model was singular, we fit the data with the No Corpus model, and none was singular then, allowing us to have Child ICC for all `r dim(df.icc.mixed)[1]` metrics. 
+```{r tab4, results="as.is"}
+key_metrics = c("wc_adu_ph", "lena_CVC_ph", "lena_CTC_ph",  "voc_fem_ph",  "voc_chi_ph")
+x <- merge(df.icc.mixed[df.icc.mixed$metric %in% key_metrics & df.icc.mixed$data_set=="lena",c("metric","icc_child_id")] ,
+           df.icc.mixed[df.icc.mixed$metric %in% key_metrics & df.icc.mixed$data_set=="aclew",c("metric","icc_child_id")],
+           by='metric', all=TRUE)
+colnames(x) <- c("metric", "LENA ICC", "ACLEW ICC")
+rownames(x)<-x$metric
+x["lena_CTC_ph","ACLEW ICC"]<-df.icc.mixed[df.icc.mixed$metric=="simple_CTC_ph","icc_child_id"]
+x["lena_CVC_ph","ACLEW ICC"]<-df.icc.mixed[df.icc.mixed$metric=="can_voc_chi_ph","icc_child_id"]
+x[,2:3]=round(x[,2:3],2)
+x=x[key_metrics,]
+
+kable(x,row.names = F,digits=2,caption="Table 4 (reproduced). Most commonly used metrics.")
+#x
+```
+
+
+
+
+## SM K: Code to reproduce text below Table 4 at the beginning of the "Overall reliability" section
+
+Please see code in the RMarkDown version of the document.
+
 
 ```{r best_metric}
 
@@ -524,28 +567,6 @@ rownames(msds_p)<-msds_p$Group.1
 > Next, we explored how similar Child ICCs were across different talker types and pipelines. We fit a linear model with the formula $lm(icc\_child\_id ~ type * pipeline)$, where type indicates whether the measure pertained to the key child, (female/male) adults, other children; and pipeline LENA or ACLEW. The model was overall significant (F(`r round(reg_sum$fstatistic["dendf"],2)`) = `r round(reg_sum$fstatistic["value"],2)`, p < .001). We found an adjusted R-squared of `r round(reg_sum$adj.r.squared*100)`%, suggesting much of the variance across Child ICCs was explained by these factors. A Type 3 ANOVA on this model revealed type was a significant predictor (F(`r reg_anova["Type","Df"]`) = `r round(reg_anova["Type","F value"],1)`, p<.001), as was pipeline (F(`r reg_anova["data_set","Df"]`) = `r round(reg_anova["data_set","F value"],1)`, p = `r round(reg_anova["data_set","Pr(>F)"],3)`); the interaction between type and pipeline was not significant. The main effect of type emerged because output metrics tended to have higher Child ICC (`r msds["Output","x"]`)  than those associated to adults in general (`r msds["Adults","x"]`), females (`r msds["Female","x"]`), and males (`r msds["Male","x"]`); whereas those associated with other children had even higher Child ICCs (`r msds["Other children","x"]`). The main effect of pipeline arose because of slightly higher Child ICCs for the ACLEW metrics (`r msds_p["aclew","x"]`) than for LENA metrics (`r msds_p["lena","x"]`). 
 
 
-## SM O: Code to reproduce Table 4
-
-Please see code in the RMarkDown version of the document.
-
-
-```{r tab4, results="as.is"}
-key_metrics = c("wc_adu_ph", "lena_CVC_ph", "lena_CTC_ph",  "voc_fem_ph",  "voc_chi_ph")
-x <- merge(df.icc.mixed[df.icc.mixed$metric %in% key_metrics & df.icc.mixed$data_set=="lena",c("metric","icc_child_id")] ,
-           df.icc.mixed[df.icc.mixed$metric %in% key_metrics & df.icc.mixed$data_set=="aclew",c("metric","icc_child_id")],
-           by='metric', all=TRUE)
-colnames(x) <- c("metric", "LENA ICC", "ACLEW ICC")
-rownames(x)<-x$metric
-x["lena_CTC_ph","ACLEW ICC"]<-df.icc.mixed[df.icc.mixed$metric=="simple_CTC_ph","icc_child_id"]
-x["lena_CVC_ph","ACLEW ICC"]<-df.icc.mixed[df.icc.mixed$metric=="can_voc_chi_ph","icc_child_id"]
-x[,2:3]=round(x[,2:3],2)
-x=x[key_metrics,]
-
-kable(x,row.names = F,digits=2,caption="Table 4 (reproduced). Most commonly used metrics.")
-#x
-```
-
-
 
 ## SM P: Code to reproduce text at the beginning of the "Reliability across age groups" section
 
@@ -801,7 +822,7 @@ bias_tab$recXcor<-bias_tab$recXcor/sum(bias_tab$recXcor)
 
 ```
 
-> Our data draws mainly from urban (`r round(sum(bias_tab$recXcor[urban])*100)`% of recordings, `r round(sum(bias_tab$chiXcor[urban])*100)`% of the children, `r round(sum(urban)/length(urban)*100)`% of the corpora), English-speaking settings (`r round(sum(bias_tab$recXcor[english])*100)`% of recordings, `r round(sum(bias_tab$chiXcor[english])*100)`% of the children, `r round(sum(english)/length(english)*100)`% of the corpora), and almost exclusively from North America (`r round(sum(bias_tab$recXcor[northam])*100)`% of recordings, `r round(sum(bias_tab$chiXcor[northam])*100)`% of the children, `r round(sum(northam)/length(northam)*100)`% of the corpora). 
+> Our data draws mainly from urban (`r round(sum(bias_tab$recXcor[urban])*100)`% of recordings, `r round(sum(bias_tab$chiXcor[urban])*100)`% of the children, `r round(sum(urban)/length(urban)*100)`% of the corpora), English-speaking settings (`r round(sum(bias_tab$recXcor[english])*100)`% of recordings, `r round(sum(bias_tab$chiXcor[english])*100)`% of the children, `r round(sum(english)/length(english)*100)`% of the corpora), largely from North America (`r round(sum(bias_tab$recXcor[northam])*100)`% of recordings, `r round(sum(bias_tab$chiXcor[northam])*100)`% of the children, `r round(sum(northam)/length(northam)*100)`% of the corpora). 
 
 ## SM Y: Variability as a function of hardware
 

File diff suppressed because it is too large
+ 199 - 167
CODE/SM.html


+ 46 - 45
CODE/SM.log

@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.11.25)  14 DEC 2023 16:20
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.11.25)  19 FEB 2024 11:56
 entering extended mode
  restricted \write18 enabled.
  %&-line parsing enabled.
@@ -630,7 +630,7 @@ LaTeX Font Info:    External font `lmex10' loaded for size
 
 {/usr/local/texlive/2021/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
 LaTeX Font Info:    Trying to load font information for TS1+lmr on input line 1
-32.
+33.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/lm/ts1lmr.fd
 File: ts1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
 )
@@ -638,22 +638,22 @@ File: ts1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
 File: SM_files/figure-latex/icc-sim-plot-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/icc-sim-plot-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/icc-sim-plot-1.pdf  used on inpu
-t line 168.
+t line 169.
 (pdftex.def)             Requested size: 440.64517pt x 251.94063pt.
 [2 <./SM_files/figure-latex/icc-sim-plot-1.pdf>] [3]
-<SM_files/figure-latex/icc-examples-fig2-1.pdf, id=94, 423.5825pt x 315.1775pt>
+<SM_files/figure-latex/icc-examples-fig1-1.pdf, id=94, 423.5825pt x 315.1775pt>
 
-File: SM_files/figure-latex/icc-examples-fig2-1.pdf Graphic file (type pdf)
-<use SM_files/figure-latex/icc-examples-fig2-1.pdf>
-Package pdftex.def Info: SM_files/figure-latex/icc-examples-fig2-1.pdf  used on
- input line 352.
+File: SM_files/figure-latex/icc-examples-fig1-1.pdf Graphic file (type pdf)
+<use SM_files/figure-latex/icc-examples-fig1-1.pdf>
+Package pdftex.def Info: SM_files/figure-latex/icc-examples-fig1-1.pdf  used on
+ input line 371.
 (pdftex.def)             Requested size: 423.59439pt x 315.18634pt.
-[4] [5 <./SM_files/figure-latex/icc-examples-fig2-1.pdf>]
+[4] [5 <./SM_files/figure-latex/icc-examples-fig1-1.pdf>]
 <SM_files/figure-latex/r-fig4-1.pdf, id=118, 271.0125pt x 206.7725pt>
 File: SM_files/figure-latex/r-fig4-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/r-fig4-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/r-fig4-1.pdf  used on input line
- 437.
+ 464.
 (pdftex.def)             Requested size: 271.0201pt x 206.77829pt.
 [6] [7 <./SM_files/figure-latex/r-fig4-1.pdf>]
 <SM_files/figure-latex/unnamed-chunk-2-1.pdf, id=151, 452.69125pt x 315.1775pt>
@@ -661,69 +661,70 @@ Package pdftex.def Info: SM_files/figure-latex/r-fig4-1.pdf  used on input line
 File: SM_files/figure-latex/unnamed-chunk-2-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/unnamed-chunk-2-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/unnamed-chunk-2-1.pdf  used on i
-nput line 559.
+nput line 588.
 (pdftex.def)             Requested size: 452.69014pt x 315.17673pt.
 <SM_files/figure-latex/icc-allexp-fig5-1.pdf, id=152, 417.56pt x 206.7725pt>
 File: SM_files/figure-latex/icc-allexp-fig5-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/icc-allexp-fig5-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/icc-allexp-fig5-1.pdf  used on i
-nput line 570.
+nput line 601.
 (pdftex.def)             Requested size: 417.5717pt x 206.77829pt.
-<SM_files/figure-latex/relBYage-fig6-1.pdf, id=153, 421.575pt x 712.6625pt>
+[8] [9 <./SM_files/figure-latex/unnamed-chunk-2-1.pdf> <./SM_files/figure-latex
+/icc-allexp-fig5-1.pdf>]
+<SM_files/figure-latex/relBYage-fig6-1.pdf, id=186, 421.575pt x 712.6625pt>
 File: SM_files/figure-latex/relBYage-fig6-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/relBYage-fig6-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/relBYage-fig6-1.pdf  used on inp
-ut line 643.
+ut line 682.
 (pdftex.def)             Requested size: 384.77885pt x 650.45953pt.
 
-LaTeX Warning: Float too large for page by 35.97395pt on input line 646.
+LaTeX Warning: Float too large for page by 35.97395pt on input line 685.
 
-[8] [9 <./SM_files/figure-latex/unnamed-chunk-2-1.pdf> <./SM_files/figure-latex
-/icc-allexp-fig5-1.pdf>]
-<SM_files/figure-latex/icc-bycor-fig7-1.pdf, id=190, 283.0575pt x 279.0425pt>
+<SM_files/figure-latex/icc-bycor-fig7-1.pdf, id=187, 283.0575pt x 279.0425pt>
 File: SM_files/figure-latex/icc-bycor-fig7-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/icc-bycor-fig7-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/icc-bycor-fig7-1.pdf  used on in
-put line 702.
+put line 745.
 (pdftex.def)             Requested size: 283.06543pt x 279.05032pt.
-<SM_files/figure-latex/icc-bycor-fig8-1.pdf, id=191, 568.1225pt x 269.005pt>
+[10] [11 <./SM_files/figure-latex/relBYage-fig6-1.pdf>] [12 <./SM_files/figure-
+latex/icc-bycor-fig7-1.pdf>]
+<SM_files/figure-latex/icc-bycor-fig8-1.pdf, id=230, 568.1225pt x 269.005pt>
 File: SM_files/figure-latex/icc-bycor-fig8-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/icc-bycor-fig8-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/icc-bycor-fig8-1.pdf  used on in
-put line 727.
+put line 774.
 (pdftex.def)             Requested size: 469.7731pt x 222.43672pt.
-[10] [11 <./SM_files/figure-latex/relBYage-fig6-1.pdf>] [12 <./SM_files/figure-
-latex/icc-bycor-fig7-1.pdf> <./SM_files/figure-latex/icc-bycor-fig8-1.pdf>]
-<SM_files/figure-latex/icc-bycor-fig9-1.pdf, id=245, 572.1375pt x 279.0425pt>
+<SM_files/figure-latex/icc-bycor-fig9-1.pdf, id=231, 572.1375pt x 279.0425pt>
 File: SM_files/figure-latex/icc-bycor-fig9-1.pdf Graphic file (type pdf)
 <use SM_files/figure-latex/icc-bycor-fig9-1.pdf>
 Package pdftex.def Info: SM_files/figure-latex/icc-bycor-fig9-1.pdf  used on in
-put line 789.
+put line 840.
 (pdftex.def)             Requested size: 469.75816pt x 229.1101pt.
-[13 <./SM_files/figure-latex/icc-bycor-fig9-1.pdf>] [14] [15] (./SM.aux) ) 
+[13 <./SM_files/figure-latex/icc-bycor-fig8-1.pdf>] [14 <./SM_files/figure-late
+x/icc-bycor-fig9-1.pdf>] [15] [16] (./SM.aux) ) 
 Here is how much of TeX's memory you used:
- 14225 strings out of 478994
- 213378 string characters out of 5858183
- 567492 words of memory out of 5000000
+ 14226 strings out of 478994
+ 213385 string characters out of 5858183
+ 567494 words of memory out of 5000000
  31199 multiletter control sequences out of 15000+600000
  458644 words of font info for 138 fonts, out of 8000000 for 9000
  1141 hyphenation exceptions out of 8191
- 85i,9n,88p,1305b,397s stack positions out of 5000i,500n,10000p,200000b,80000s
-{/usr
-/local/texlive/2021/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc}{/usr/local/tex
-live/2021/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc}{/usr/local/texlive/2021/
-texmf-dist/fonts/enc/dvips/lm/lm-rm.enc}{/usr/local/texlive/2021/texmf-dist/fon
-ts/enc/dvips/lm/lm-ts1.enc}{/usr/local/texlive/2021/texmf-dist/fonts/enc/dvips/
-lm/lm-ec.enc}</usr/local/texlive/2021/texmf-dist/fonts/type1/public/lm/lmbx12.p
-fb></usr/local/texlive/2021/texmf-dist/fonts/type1/public/lm/lmmi10.pfb></usr/l
-ocal/texlive/2021/texmf-dist/fonts/type1/public/lm/lmmi7.pfb></usr/local/texliv
-e/2021/texmf-dist/fonts/type1/public/lm/lmr10.pfb></usr/local/texlive/2021/texm
-f-dist/fonts/type1/public/lm/lmr17.pfb></usr/local/texlive/2021/texmf-dist/font
-s/type1/public/lm/lmsy10.pfb>
-Output written on SM.pdf (15 pages, 528225 bytes).
+ 85i,9n,88p,1305b,393s stack positions out of 5000i,500n,10000p,200000b,80000s
+{/usr/local/texlive/2021/texmf-d
+ist/fonts/enc/dvips/lm/lm-mathit.enc}{/usr/local/texlive/2021/texmf-dist/fonts/
+enc/dvips/lm/lm-mathsy.enc}{/usr/local/texlive/2021/texmf-dist/fonts/enc/dvips/
+lm/lm-rm.enc}{/usr/local/texlive/2021/texmf-dist/fonts/enc/dvips/lm/lm-ts1.enc}
+{/usr/local/texlive/2021/texmf-dist/fonts/enc/dvips/lm/lm-ec.enc}</usr/local/te
+xlive/2021/texmf-dist/fonts/type1/public/lm/lmbx12.pfb></usr/local/texlive/2021
+/texmf-dist/fonts/type1/public/lm/lmmi10.pfb></usr/local/texlive/2021/texmf-dis
+t/fonts/type1/public/lm/lmmi7.pfb></usr/local/texlive/2021/texmf-dist/fonts/typ
+e1/public/lm/lmr10.pfb></usr/local/texlive/2021/texmf-dist/fonts/type1/public/l
+m/lmr17.pfb></usr/local/texlive/2021/texmf-dist/fonts/type1/public/lm/lmsy10.pf
+b>
+Output written on SM.pdf (16 pages, 533504 bytes).
 PDF statistics:
- 425 PDF objects out of 1000 (max. 8388607)
- 371 compressed objects within 4 object streams
- 88 named destinations out of 1000 (max. 500000)
+ 429 PDF objects out of 1000 (max. 8388607)
+ 374 compressed objects within 4 object streams
+ 89 named destinations out of 1000 (max. 500000)
  30990 words of extra memory for PDF output out of 35830 (max. 10000000)
 

BIN
CODE/SM.pdf


+ 5 - 3
CODE/create-all-rs.R

@@ -17,7 +17,9 @@ mydat_lena = merge(mydat_lena,dist_contig_lena[,c("session_id","next_session")],
 #sum(table(dist_contig_lena$experiment[!duplicated(dist_contig_lena$child_id)])) #and overall
 # maximally, we'll have 148 rows in the samples below
 
-#given those two numbers, with 5 draws we'd cover many combinations in winni, lucid, & trio; but we'll do more because there are a lot of recs in cougar & bergelson. Later increased to 20 bc there was a lot of variability still in the average r
+#given those two numbers, with 5 draws we'd cover many combinations in winni, lucid, & trio; 
+# but we'll do more because there are a lot of recs in cougar & bergelson. 
+# Later increased to 20 bc there was a lot of variability still in the average r
 
 mydat_aclew <- read.csv(paste0('../data_output/', "aclew",'_metrics_scaled.csv')) #1254
 #mydat_aclew=mydat_aclew[order(mydat_aclew$experiment,mydat_aclew$child_id,mydat_aclew$age),]
@@ -49,7 +51,7 @@ mydat_aclew = merge(mydat_aclew,dist_contig_aclew[,c("session_id","next_session"
 nsamples=20
 
 all_rs=data.frame(matrix(NA,nrow=dim(df.icc.mixed)[1],ncol=(nsamples))) 
-# it should have as many rows as there are ICCs, namely number of metrics = 71
+# it should have as many rows as there are ICCs, namely number of metrics = 75
 colnames(all_rs[,1:nsamples])<-paste0("sample",1:nsamples)
 all_rs$data_set<-df.icc.mixed$data_set
 all_rs$metric<-df.icc.mixed$metric
@@ -62,7 +64,7 @@ all_iccs$metric<-df.icc.mixed$metric
 
 #dist_contig_lena[,c("child_id","age","age_dist_next_rec")]
 table(dist_contig_lena[,c("age_dist_next_rec")]) # FYI
-table(dist_contig_lena[,c("age")]) # FYI
+hist(as.numeric(unlist(dist_contig_lena[,c("age")]))) # FYI
 
 for(i in 1:nsamples){#i=1
   

BIN
CODE/fig1.png


BIN
CODE/fig2.png


BIN
CODE/fig4.png


BIN
CODE/fig5.png


BIN
CODE/fig6.png


BIN
CODE/fig7.png


BIN
CODE/fig8.png


BIN
CODE/fig9.png


+ 18 - 17
CODE/sessionInfo.txt

@@ -23,20 +23,21 @@ other attached packages:
 [13] lme4_1.1-33           Matrix_1.5-4.1       
 
 loaded via a namespace (and not attached):
- [1] beeswarm_0.4.0    gtable_0.3.3      xfun_0.39         insight_0.19.2   
- [5] rstatix_0.7.2     lattice_0.21-8    vctrs_0.6.3       tools_4.3.0      
- [9] generics_0.1.3    parallel_4.3.0    tibble_3.2.1      fansi_1.0.4      
-[13] highr_0.10        pkgconfig_2.0.3   webshot_0.5.5     lifecycle_1.0.3  
-[17] farver_2.1.1      compiler_4.3.0    textshaping_0.3.6 munsell_0.5.0    
-[21] mnormt_2.1.1      vipor_0.4.5       htmltools_0.5.5   yaml_2.3.7       
-[25] pillar_1.9.0      nloptr_2.0.3      MASS_7.3-60       boot_1.3-28.1    
-[29] abind_1.4-5       nlme_3.1-162      tidyselect_1.2.0  rvest_1.0.3      
-[33] digest_0.6.33     stringi_1.7.12    purrr_1.0.1       labeling_0.4.2   
-[37] splines_4.3.0     cowplot_1.1.1     fastmap_1.1.1     grid_4.3.0       
-[41] colorspace_2.1-0  cli_3.6.1         magrittr_2.0.3    utf8_1.2.3       
-[45] broom_1.0.5       withr_2.5.0       scales_1.2.1      backports_1.4.1  
-[49] rmarkdown_2.23    httr_1.4.6        gridExtra_2.3     ggsignif_0.6.4   
-[53] ragg_1.2.5        evaluate_0.21     knitr_1.43        viridisLite_0.4.2
-[57] mgcv_1.8-42       rlang_1.1.1       Rcpp_1.0.10       glue_1.6.2       
-[61] xml2_1.3.5        svglite_2.1.1     rstudioapi_0.15.0 minqa_1.2.5      
-[65] R6_2.5.1          systemfonts_1.0.4
+ [1] beeswarm_0.4.0    gtable_0.3.3      xfun_0.39         bslib_0.5.0      
+ [5] insight_0.19.2    rstatix_0.7.2     lattice_0.21-8    vctrs_0.6.3      
+ [9] tools_4.3.0       generics_0.1.3    parallel_4.3.0    tibble_3.2.1     
+[13] fansi_1.0.4       highr_0.10        pkgconfig_2.0.3   webshot_0.5.5    
+[17] lifecycle_1.0.3   farver_2.1.1      compiler_4.3.0    textshaping_0.3.6
+[21] mnormt_2.1.1      munsell_0.5.0     vipor_0.4.5       htmltools_0.5.5  
+[25] sass_0.4.7        yaml_2.3.7        pillar_1.9.0      nloptr_2.0.3     
+[29] jquerylib_0.1.4   MASS_7.3-60       cachem_1.0.8      boot_1.3-28.1    
+[33] abind_1.4-5       nlme_3.1-162      tidyselect_1.2.0  rvest_1.0.3      
+[37] digest_0.6.33     stringi_1.7.12    purrr_1.0.1       labeling_0.4.2   
+[41] splines_4.3.0     cowplot_1.1.1     fastmap_1.1.1     grid_4.3.0       
+[45] colorspace_2.1-0  cli_3.6.1         magrittr_2.0.3    utf8_1.2.3       
+[49] broom_1.0.5       withr_2.5.0       scales_1.2.1      backports_1.4.1  
+[53] rmarkdown_2.23    httr_1.4.6        gridExtra_2.3     ggsignif_0.6.4   
+[57] ragg_1.2.5        evaluate_0.21     knitr_1.43        viridisLite_0.4.2
+[61] mgcv_1.8-42       rlang_1.1.1       Rcpp_1.0.10       glue_1.6.2       
+[65] xml2_1.3.5        svglite_2.1.1     rstudioapi_0.15.0 minqa_1.2.5      
+[69] jsonlite_1.8.7    R6_2.5.1          systemfonts_1.0.4

+ 75 - 375
data_output/all_rs.csv

@@ -1,376 +1,76 @@
 "X1","X2","X3","X4","X5","X6","X7","X8","X9","X10","X11","X12","X13","X14","X15","X16","X17","X18","X19","X20","data_set","metric"
-0.617501415827757,0.663319494714944,0.595437317061506,0.622273437284939,0.581876182126086,0.659260739384003,0.627374515892049,0.598554128233223,0.64188058582628,0.612855302556107,0.583712273690216,0.553938222740731,0.61785712684216,0.624597879497182,0.565402476925473,0.67930778154596,0.534537309586632,0.573950055986047,0.61659920461686,0.560983916954779,"aclew","avg_can_voc_dur_chi"
-0.583500863342014,0.56341739451768,0.586839250414721,0.530343063630888,0.554115872095784,0.544047669288385,0.640942137904335,0.600910963391631,0.52406476423949,0.521060017304864,0.565862866633694,0.515956300954213,0.610912919563559,0.586671495118455,0.573345756475579,0.649623281769695,0.532932093993799,0.540731922992143,0.589930713232514,0.567334897257489,"aclew","avg_cry_voc_dur_chi"
-0.555009670908681,0.583586399095823,0.491305475613682,0.502663957163792,0.505588369564365,0.540648934813805,0.574892671390481,0.613027554316833,0.545039958910585,0.562042078447267,0.483960519625005,0.56292834430224,0.53756987199686,0.506960007842416,0.594164858507186,0.581320093442512,0.568360784084447,0.459811495892549,0.500742946339456,0.470961674146913,"aclew","avg_non_can_voc_dur_chi"
-0.603108847110179,0.652438364589894,0.619188686590074,0.642399089320062,0.65842882365645,0.628077666552184,0.676565438233796,0.641155463242649,0.605347114856744,0.596709990276701,0.546027881007189,0.621518081630193,0.614427187645252,0.68553115316339,0.57921358173119,0.679541104475961,0.581186408402128,0.581900816147946,0.615389914174077,0.59510584204849,"aclew","avg_voc_dur_chi"
-0.437061331612535,0.546607098247521,0.373498857446771,0.418780777620025,0.486583168204571,0.485526468828453,0.500248332630137,0.383019986665134,0.5237449469787,0.506165076286803,0.513812608121882,0.520073768973325,0.502833972171299,0.586500874848478,0.418710411881669,0.470733909117366,0.458622236437926,0.525768583846386,0.411751557541578,0.542386526688872,"aclew","avg_voc_dur_fem"
-0.34205690363917,0.442880406754636,0.519796391490302,0.491433083689546,0.468568416952827,0.483287423617567,0.449701427795879,0.489106714820486,0.504526586974027,0.515805466309508,0.395366833465495,0.527638511180824,0.472939278568,0.487421918701635,0.40619054421642,0.502733863055106,0.577722507790708,0.549443195706567,0.534917485612386,0.488881280235185,"aclew","avg_voc_dur_mal"
-0.690350214729103,0.650071285856013,0.648790251628807,0.685747671342945,0.660204518452614,0.645513680034275,0.601379781603351,0.690301974076448,0.653708191150906,0.698600635959409,0.658003344709924,0.637830920558018,0.672432844305826,0.689311378727803,0.692969204891956,0.68083328495866,0.646643851678661,0.66071668576338,0.725300571699441,0.694753701435535,"aclew","avg_voc_dur_och"
-0.801098123910249,0.779013352988971,0.739309279186926,0.812264614582686,0.820490640570279,0.787869329120326,0.804578695429789,0.795196648952323,0.78160177755542,0.796058787084905,0.782002152392633,0.799422224312673,0.792343953913779,0.809537297193832,0.819508962954372,0.791813922131436,0.805976073193809,0.758760593855271,0.824498821784712,0.817715434497524,"aclew","can_voc_chi_ph"
-0.762470229493643,0.760000245822926,0.699918368487636,0.7814471448864,0.769120228379514,0.745673874127857,0.76819292089,0.780994466353667,0.735448414393642,0.749778059301535,0.691253280716873,0.726817985520017,0.770013451343508,0.800660838581383,0.783022074590453,0.777375639660172,0.754319097245703,0.740281325010194,0.780828790264366,0.757591807390448,"aclew","can_voc_dur_chi_ph"
-0.760253363427766,0.666910812388086,0.659362662581621,0.710705453102384,0.744097775127932,0.742399802864205,0.730580644306645,0.666224433531127,0.691724237102415,0.690060352389976,0.63162373491638,0.627339066869848,0.643657411593276,0.709963336506257,0.723311200331181,0.706396216335111,0.646481580854562,0.71157195184044,0.740942673920095,0.685458825354419,"aclew","cp_dur"
-0.796244432152419,0.718035738635239,0.705536247486034,0.773229185022203,0.768593897882942,0.762030442673198,0.766239741502578,0.745872331851968,0.738039954800821,0.736774027262459,0.681928804752833,0.69781818772845,0.690954105153625,0.764113431894709,0.777501523635639,0.743782449988914,0.720859995015874,0.757112440790421,0.782459884762755,0.752529698025885,"aclew","cp_n"
-0.495030803907562,0.493315671118634,0.466908677080292,0.544546150456564,0.592464845528805,0.526870822130468,0.507121518862983,0.465219236256029,0.537984208662909,0.559433926026323,0.44642297425869,0.511674082665402,0.447847970067897,0.45140142326667,0.587207879262884,0.536446404542855,0.523138874003261,0.399751909172375,0.491596140198644,0.499115356934284,"aclew","cry_voc_chi_ph"
-0.522852457133244,0.563606605189523,0.536065093058066,0.518244689312383,0.591430063293195,0.576739790110789,0.57348840350449,0.480528183779994,0.543601067235463,0.60459359415663,0.483354523868317,0.549601762469355,0.520502294280392,0.495831121913933,0.585586584740731,0.551534940291076,0.533525741661617,0.473438780827435,0.522459572580735,0.535520993513013,"aclew","cry_voc_dur_chi_ph"
-0.556364657277924,0.569096775906363,0.518896018970686,0.483206378579904,0.412584940143778,0.452978952178015,0.529967640673194,0.502266717148032,0.519869179157158,0.53625436658587,0.443245200564825,0.569927420967691,0.483783413517478,0.482646495691115,0.480663513770527,0.475504710413362,0.479923456658723,0.536136441604141,0.435041465795627,0.51177224193138,"aclew","lp_dur"
-0.515688788752308,0.542309052409672,0.490944675718267,0.454168071377254,0.464492494033396,0.420163560392504,0.501343153428419,0.473810449400848,0.509315367811411,0.555283112318298,0.486729108925141,0.538496557852592,0.50761075754214,0.495027485615702,0.465471667315357,0.461759357009416,0.504340523506622,0.443538629718593,0.349014803171965,0.480482004931781,"aclew","lp_n"
-0.626252117648963,0.729607495583924,0.648718616414106,0.700763811661396,0.678249383989521,0.650267874674998,0.723975370868268,0.659406573068626,0.642934155204726,0.708603793271601,0.658954796928821,0.621566388916718,0.599396049864291,0.655880138872611,0.704927667753009,0.633099860445213,0.684112902936648,0.661367703728398,0.703569764750846,0.672777715490825,"aclew","non_can_voc_chi_ph"
-0.606643263833061,0.720250644994242,0.615356375929576,0.674467104444859,0.642668718051216,0.620213743052357,0.70695019700991,0.660871545870006,0.612727805012909,0.676839045197003,0.624730665276679,0.593197917635005,0.586591288373325,0.628277433179362,0.632578512513045,0.633013823411453,0.663079910731587,0.657986525776276,0.677824118397784,0.649788629643789,"aclew","non_can_voc_dur_chi_ph"
-0.603631829210714,0.589403017293206,0.583489686779984,0.557454998084553,0.5622341291018,0.570325326234475,0.680143810031648,0.492108700494507,0.598945078291263,0.593056921755887,0.474954664335555,0.488994168739298,0.573399275237268,0.628100573723797,0.578371591100778,0.504220487657207,0.406347606893138,0.541085068591046,0.59534763443567,0.570178293761996,"aclew","pc_adu_ph"
-0.59139149232511,0.645371698265858,0.53487390073359,0.608837514909207,0.591343959011758,0.602251499086039,0.636294334166652,0.502163725649431,0.544056168874796,0.602650441700476,0.504852930528011,0.472918712607011,0.634230978489406,0.619748345115937,0.617933639180531,0.555215074753585,0.538485680309712,0.607191897941813,0.505716158922985,0.555343137259266,"aclew","pc_fem_ph"
-0.531033629283407,0.463842094476255,0.497435361386951,0.561005370850983,0.464803856793662,0.572869413007277,0.58532951270304,0.492838455515492,0.600794166892415,0.441302245978755,0.448343664919459,0.503443631378163,0.523000407610729,0.553108947457866,0.463166867942332,0.458249936465154,0.428231903601725,0.599019989374238,0.568229174789154,0.479634677664313,"aclew","pc_mal_ph"
-0.655520697218532,0.645393211705228,0.653142749931534,0.683795727648503,0.630409221101938,0.663659264132379,0.624744272906907,0.691971067322469,0.601760190265013,0.689912919003522,0.645533089162996,0.639818035176769,0.623261300987304,0.661852786671964,0.662873468765367,0.689883562057284,0.640633926131661,0.63826108154645,0.678909879006097,0.612686438653602,"aclew","peak_simple_CTC"
-0.632554970688185,0.594326347144652,0.612528448465804,0.668294316271852,0.607134998381571,0.661961790828059,0.632377353348013,0.666914121713413,0.561309213630403,0.643947995938596,0.616113065811954,0.651742583718507,0.596016580558977,0.586952341583998,0.624470252303504,0.649329965614379,0.645318346140761,0.584838017287346,0.677998715975494,0.550460650131994,"aclew","peak_voc_chi"
-0.417507160385446,0.451192269010943,0.329610048324672,0.465424411794533,0.362201802584972,0.343343561916756,0.414278559585331,0.38141275458602,0.341467510318819,0.478787476496903,0.35057490746508,0.413082158874747,0.403622265222556,0.526778907734679,0.432913933100724,0.435874753570261,0.345459734842609,0.414604374232076,0.328751741303804,0.338300003212761,"aclew","peak_voc_fem"
-0.359160380927808,0.328173986530003,0.334327734854978,0.435899455291533,0.361931027596591,0.428326570759005,0.454612022521376,0.308179822682014,0.371699574216582,0.418186781887256,0.20746729438132,0.366060774306298,0.386020681654592,0.359339119142218,0.258609176185606,0.294047358003687,0.270812206024625,0.369480608631135,0.439775885443058,0.434664021414253,"aclew","peak_voc_mal"
-0.726526225729312,0.691275398374798,0.642146368864242,0.682446838457602,0.660646842232706,0.661933743909577,0.672614760761172,0.647860071486746,0.656819195575261,0.715226361282776,0.657018383009679,0.692561503658954,0.660546687891358,0.665838948042883,0.678081586519312,0.731793957331001,0.693424809282188,0.622180055989578,0.699988567233267,0.687176858495227,"aclew","peak_voc_och"
-0.273874030533774,0.276798705968398,0.290267988439095,0.2245158888768,0.122737494800811,0.17642219257172,0.369507877963337,0.101341108789153,0.318291669946921,0.305476400663953,0.229790904568284,0.271946708241364,0.276068621784893,0.302757853594027,0.211876715636762,0.200807213514723,0.163717529280084,0.251237904460042,0.21445767310465,0.244305748874026,"aclew","peak_wc_adu"
-0.289289866081809,0.42687880717693,0.237923650366628,0.31142985573753,0.265647504509225,0.264279382108978,0.417707015235797,0.221082689005034,0.176398389624276,0.284270430129077,0.244601295143861,0.261288769629833,0.277113086504087,0.342867527155415,0.298436534846134,0.35951894404585,0.294466755066619,0.328145414840984,0.176842648382157,0.179236373197996,"aclew","peak_wc_fem"
-0.396604063019732,0.347932098285405,0.445890647961519,0.409901294596568,0.305629850562203,0.360240843064334,0.348309653522767,0.350124482281819,0.370453919522809,0.386536783903399,0.289178916797921,0.420299263599086,0.348706089440504,0.392029751474004,0.292790966035565,0.31449524483922,0.287474627373882,0.437590647753937,0.390147737376023,0.401962503706135,"aclew","peak_wc_mal"
-0.602765855971752,0.591601025497814,0.585131329142734,0.554538040397133,0.560969905455996,0.566288133856331,0.682652214167633,0.494493134023045,0.601415549144969,0.593173084302415,0.47964397427801,0.489245977756836,0.572048861569404,0.629409447924691,0.580312383175257,0.508404394898247,0.41237468079445,0.544414879828435,0.59520107626349,0.571653670948748,"aclew","sc_adu_ph"
-0.573273985081611,0.632650383439887,0.53100220426767,0.603046626676188,0.574217239292477,0.599019994375792,0.639130482648015,0.498937397890751,0.537423221464872,0.599849447565827,0.504379247490154,0.453424381790442,0.617759893935716,0.620650322249886,0.603446451340835,0.554276144753343,0.538403728541959,0.594307380705437,0.485788254568351,0.536695569300149,"aclew","sc_fem_ph"
-0.531602532884168,0.449378308947586,0.503023513760431,0.544124189519392,0.465641716469777,0.572517645821434,0.586473273311933,0.473938691610058,0.602377531435986,0.428531933947211,0.454024487063811,0.503734170261841,0.523016955440831,0.587137363250247,0.463291467524572,0.448792098217091,0.431771266893056,0.59875548449065,0.568563622768719,0.481015431172966,"aclew","sc_mal_ph"
-0.746586278068021,0.77121830317108,0.742124051374642,0.799163836072466,0.768230610676593,0.772210130935468,0.794224638983847,0.770522266083531,0.743482611608547,0.801417580029406,0.725401743317397,0.709520830091221,0.765547222187404,0.784642144866501,0.797903503156545,0.768204815992387,0.722129505044795,0.6861895373825,0.797726461972983,0.747316128999742,"aclew","simple_CTC_ph"
-0.673646379095523,0.715232288151022,0.670509358008795,0.738099984346126,0.705549087832275,0.703684251835122,0.742848492825551,0.698540639606515,0.675108538658995,0.736029745031282,0.684199208744136,0.673166117470944,0.647619652151815,0.702809350158217,0.736081696694081,0.679876550200399,0.671981097108634,0.640003522342296,0.749544470472719,0.677277783861551,"aclew","voc_chi_ph"
-0.675930487522956,0.720850614218119,0.675590104464335,0.734050252395981,0.708155882607906,0.705784452662108,0.745801767435852,0.708955054734624,0.678233216393321,0.725290793217996,0.68607594154999,0.683942984125458,0.670795547306083,0.739349057617369,0.695671325659947,0.740681318318199,0.673832783254295,0.649923497984495,0.764679594758016,0.690207586950744,"aclew","voc_dur_chi_ph"
-0.587233831651475,0.655141556728145,0.538364397680282,0.578973752460774,0.577581563182814,0.621940692129165,0.611640920206725,0.504276648218334,0.582308534296524,0.596150891544365,0.480478112246889,0.520186395802852,0.656371628719733,0.626972239039726,0.574582885073339,0.538906778025216,0.50592343211571,0.585977951027235,0.511655381605437,0.545431866247534,"aclew","voc_dur_fem_ph"
-0.53893263575591,0.46080634236395,0.493371124430727,0.516467928229057,0.540021414313386,0.584397482298114,0.554841503712223,0.519798659716305,0.631378440630034,0.434180620094973,0.451107862460196,0.547179275642313,0.536023864705449,0.589621444540681,0.389243744716077,0.477776897286382,0.508475992144657,0.626536509295314,0.561926087244379,0.493592363886835,"aclew","voc_dur_mal_ph"
-0.795998416401259,0.739710116389252,0.705361002057855,0.743721273029067,0.734034710713667,0.748499771867327,0.749374579372306,0.730490933141235,0.751881009685,0.785821226049998,0.685086599194831,0.725698923958031,0.762698107999993,0.743074604431548,0.7998655661667,0.771962723776265,0.73836540426003,0.695749495232549,0.811298381806998,0.744521127751451,"aclew","voc_dur_och_ph"
-0.688882448065354,0.721438212837162,0.663467162203227,0.714162214522287,0.679243079746391,0.694725115431442,0.715261944719175,0.639209506415092,0.676010276198951,0.740883743792643,0.553174076191768,0.587645876676525,0.735628924382646,0.71507771462742,0.683257859098494,0.654805325191715,0.618338457743789,0.63552627095178,0.66026753402089,0.641580046331522,"aclew","voc_fem_ph"
-0.594181358233978,0.533121503292765,0.587581595821142,0.537965045438498,0.540350192868084,0.569777446084075,0.583551303161786,0.568734328359307,0.579025190334018,0.549297522195546,0.474720627864056,0.53423329736726,0.552177949644864,0.603763819266943,0.569385719081382,0.500235226481417,0.445994417606141,0.602367926618675,0.663100790600542,0.511464414091085,"aclew","voc_mal_ph"
-0.809751943957268,0.768917071518286,0.743030036586344,0.77643742948251,0.786896333843393,0.784980951499682,0.77786367316368,0.757578950742174,0.776018546289704,0.822103484949907,0.724025690254598,0.756764853743853,0.775707328897988,0.776720859417739,0.833661767830746,0.787699790184081,0.742561807090087,0.725911181015478,0.819619482888169,0.782903290173566,"aclew","voc_och_ph"
-0.600685692226056,0.583378669608035,0.576932766065688,0.550914011558347,0.556870927155878,0.565049567035243,0.675334160383316,0.48451510542201,0.593980926526743,0.585710754369168,0.470772136896618,0.487329478249807,0.565858305989878,0.622344079205779,0.57439262185917,0.498241380991833,0.399046989779135,0.535561329731283,0.589762838399572,0.566622341024663,"aclew","wc_adu_ph"
-0.58583124455614,0.640426304511259,0.529165035542401,0.601309064602556,0.585011508607097,0.597644048389598,0.630993508866571,0.494935478781061,0.537625634960103,0.595218409999896,0.498648376021132,0.470115987041285,0.628727707330127,0.613571474066021,0.611047338774759,0.548736762799333,0.533244629051101,0.602833237310063,0.497030879542929,0.548615403972207,"aclew","wc_fem_ph"
-0.529377848050539,0.461247803739647,0.495164470200468,0.558451044077986,0.462405262665897,0.573010539519864,0.583236280701862,0.491811643802858,0.599928887405093,0.43850026615736,0.446215197273486,0.50449546480716,0.52183088747579,0.583454063952264,0.431122144567761,0.458034903393574,0.426238887100779,0.599662629524191,0.54835167294697,0.477792233842331,"aclew","wc_mal_ph"
-0.529632311790713,0.50991353543193,0.476848077949076,0.454212836791689,0.373403485109999,0.379380039072022,0.495504658240426,0.469426836356486,0.538201337010649,0.386462005890101,0.370927959829278,0.414493488030581,0.473256501592153,0.524673955543172,0.366632292939083,0.437027366338368,0.434441058859438,0.491690693743251,0.4949117149642,0.524055184297892,"lena","avg_cry_voc_dur_chi"
-0.613365963527095,0.590797721262198,0.590290059028701,0.601857635981607,0.46984461956128,0.492618344205665,0.664924700439994,0.541507551738892,0.58570997206447,0.488495411590284,0.640120160462269,0.533483277469867,0.561427164723967,0.609097153378314,0.547442719973307,0.595841968315209,0.51146637334102,0.545796595561058,0.573153969164817,0.527272543504471,"lena","avg_voc_dur_chi"
-0.467713472147796,0.440187055049821,0.381460341467593,0.409715650189157,0.425758974932976,0.435564452301561,0.501289000428368,0.35318192718445,0.494984387654409,0.384300483960001,0.43466947450292,0.417986813566646,0.456269354420228,0.510781606855444,0.438888964306434,0.393842526693264,0.350116951410237,0.375823367272621,0.329241774673279,0.45295600010371,"lena","avg_voc_dur_fem"
-0.383126319137126,0.522266791522094,0.387225980290169,0.488590842977638,0.42981360380937,0.439762213415376,0.414673639737387,0.360533764276348,0.441430008664392,0.315398739596439,0.378899516070739,0.44029679482135,0.419275246192747,0.475049239790438,0.396557326488078,0.407986350016263,0.424873293262353,0.446070568887584,0.371005461405172,0.416868671800925,"lena","avg_voc_dur_mal"
-0.515250311444769,0.511535300921712,0.441579438622757,0.530793783747249,0.444526435137349,0.42972695831144,0.52357144825969,0.518761575174783,0.410708861126395,0.511591820297089,0.557147987356124,0.493228572668439,0.529020500971828,0.547482462568476,0.469758147929877,0.490818452484786,0.53822824871965,0.492454425314826,0.443624234509686,0.507170538703947,"lena","avg_voc_dur_och"
-0.44383087599931,0.429552503013781,0.469335536425704,0.503320332427298,0.539184196903333,0.423025992488875,0.441900688206929,0.461254121042729,0.478530880387744,0.515375507525924,0.44479020224841,0.462751470557121,0.433799365287896,0.471352641917425,0.479276862663711,0.508657943652713,0.520332356410108,0.538061177005251,0.447140555252504,0.4612105144464,"lena","cry_voc_chi_ph"
-0.462304187460461,0.464739133952312,0.446677556684493,0.506228227015972,0.534805732583255,0.423656097392353,0.478007928779967,0.49683350099443,0.495337460750148,0.490963170052345,0.475576051794474,0.458155100016352,0.44588518565551,0.504227983368874,0.510068965047616,0.514676904281489,0.546687690818818,0.528172938017029,0.468930384804564,0.506561510424101,"lena","cry_voc_dur_chi_ph"
-0.672234375100049,0.665570297774445,0.680481658119276,0.710174009370606,0.748019360148181,0.679918223625536,0.69052166557658,0.64650747770882,0.673152030977836,0.681764773142585,0.600991287565016,0.670794096354187,0.690125289816434,0.683586422883392,0.707657673696081,0.650501111352224,0.664111613282136,0.607552449020958,0.753013794884833,0.646820871405072,"lena","lena_CTC_ph"
-0.68435350455467,0.691705372538895,0.692192339085878,0.74049787410876,0.726199654066355,0.742540021514852,0.710624166325196,0.730169624866038,0.636185115366377,0.737143902662371,0.669755384950763,0.684378215475842,0.726365634762151,0.721888052345599,0.695012642606676,0.740844668736371,0.664581302578819,0.620579298682848,0.77320382234601,0.687478191485773,"lena","lena_CVC_ph"
-0.767218499752663,0.785657781944853,0.791708736911874,0.776044230449767,0.758004438482362,0.762657005359924,0.804872408719502,0.820447320703934,0.781960477150493,0.808032213523435,0.724019969679374,0.755742718911543,0.786003444112663,0.763165385749948,0.776104575620864,0.787845766701316,0.808004729918502,0.808369920112386,0.780257184910944,0.784569429866985,"lena","lp_dur"
-0.788840597007571,0.777710953461189,0.809758604075822,0.797376561851807,0.776761775334131,0.801767148716341,0.811075727648039,0.827563496880315,0.785086283006403,0.810050981460553,0.708231627884753,0.770764782000057,0.79608076674845,0.771632362992267,0.788175669283299,0.802178090833132,0.802429384351973,0.823324942874715,0.794638819647339,0.779067911049732,"lena","lp_n"
-0.572461173488456,0.587573522518749,0.599243726062633,0.60349745811331,0.634775755433477,0.595194377025579,0.645758680115769,0.565250802505224,0.507307157446071,0.556765280647613,0.552768506815019,0.568915095425081,0.607167213348118,0.573012504266229,0.552041280205829,0.601819639139692,0.582909830110699,0.504743490479379,0.621807805794401,0.529913035323655,"lena","peak_lena_CTC"
-0.632713145842526,0.571114105130832,0.672887411998941,0.694169430587965,0.597011145886088,0.693973453861277,0.622803747719292,0.631802702421909,0.615596213068432,0.625520612762818,0.594827951683007,0.626333893469088,0.673885512829064,0.631229525826502,0.580741936501286,0.723787169471325,0.63139601417104,0.610214363266078,0.698352956746046,0.573294541836022,"lena","peak_lena_CVC"
-0.492285217015612,0.481341536340802,0.50991636564021,0.579606534938903,0.479500224806278,0.550721175970533,0.548044009524075,0.56770419683685,0.493172421454895,0.559735234464496,0.460222805371566,0.538685431942698,0.487873671558339,0.540445067076667,0.526709444728653,0.624737943918821,0.550926822039089,0.494329616071369,0.58934912058243,0.470953224787133,"lena","peak_voc_chi"
-0.291651042519264,0.354259448436257,0.315051348887315,0.289541055458449,0.294231951248555,0.243389107600351,0.371084693133064,0.273778534567574,0.280190093279418,0.366195101045202,0.321267527573009,0.316631740480627,0.33621591246635,0.424675741739995,0.365894834034242,0.310543708678465,0.305786237570686,0.346802830781434,0.265364899617465,0.181985899501161,"lena","peak_voc_fem"
-0.447074607561509,0.351915368736206,0.468952978720984,0.465799321964889,0.35288529175254,0.397861288863683,0.435127036310904,0.42098289886115,0.366161611943626,0.426630865907204,0.245320086694944,0.475885980549954,0.332857597325262,0.358193053396669,0.337307119448279,0.335396993934712,0.347452595753199,0.379613333982636,0.403160271264769,0.378340452422915,"lena","peak_voc_mal"
-0.574434163733267,0.501251745739978,0.473601451344721,0.516764377245767,0.471941204983913,0.510470849320336,0.505086868596476,0.541066076861353,0.467418770317431,0.515689786031787,0.565919140299027,0.549283399931665,0.495949083700762,0.559554876325464,0.55727032046059,0.530918343897256,0.518086503827639,0.584399942910613,0.568261748579748,0.544271049463898,"lena","peak_voc_och"
-0.280320899451802,0.290196414274575,0.412573647306386,0.304003695106465,0.257074012992511,0.320479590603707,0.334521000316203,0.262852178460729,0.355067929594012,0.318922590167553,0.370257203374036,0.389685946046199,0.264184110988472,0.414936075762327,0.39671388215062,0.258728695642282,0.241802603056404,0.273588805235624,0.237435634894836,0.298551374686732,"lena","peak_wc_adu"
-0.251267737494783,0.294102627114562,0.305096696988737,0.272375382208701,0.219609998987595,0.220835934823682,0.331867173669763,0.252548870871861,0.268557130226001,0.279588882416367,0.336449642702233,0.291779302684401,0.279116195610394,0.395314593406186,0.334705560582131,0.244459813636429,0.224633914799123,0.274397327081167,0.212040634995332,0.19166806327367,"lena","peak_wc_fem"
-0.506962592641561,0.38174822185219,0.518736811673787,0.47175685567434,0.417459873996447,0.415358794621466,0.450256656930805,0.459952989254429,0.462453463641349,0.447393538355017,0.336152436938499,0.510421848998483,0.372866523145206,0.423522194262699,0.32409092183599,0.394627908636973,0.387951359148364,0.416845658549367,0.45399253639714,0.402430485259211,"lena","peak_wc_mal"
-0.469534017270089,0.474310028783182,0.535889934708857,0.387991651714866,0.481278442409662,0.421427391742807,0.499434329957533,0.387199845173854,0.52081033936218,0.502417375108504,0.376090904646438,0.488964047347011,0.465737474265549,0.3799124589765,0.450950505080632,0.5299048375476,0.491823717581158,0.414565345144619,0.332251432780522,0.41172399420958,"lena","standardScore"
-0.555781069294244,0.574656080924958,0.572454635368111,0.640347544740844,0.621982332805476,0.624725775663358,0.6251146151666,0.611780711968396,0.550022063433827,0.647272450663945,0.566830682890886,0.578102802266115,0.586622368450927,0.633521319815065,0.606556870057246,0.667210783441632,0.574393521842023,0.543412827586669,0.675814005061156,0.589792279202405,"lena","voc_chi_ph"
-0.592254811751614,0.598468450308493,0.598477920675071,0.647984761989643,0.595734153544517,0.647687881370591,0.657998407524856,0.595304849186625,0.5819161776125,0.663975293601587,0.622523448553215,0.579471830552569,0.643921947731552,0.609444615484315,0.591920032913183,0.700597738234767,0.561815424163442,0.563667454896813,0.615748941099511,0.571193021184931,"lena","voc_dur_chi_ph"
-0.587905466316564,0.622126038352705,0.515078088443244,0.461831346707623,0.590986982762626,0.574085144281828,0.543811216207794,0.479930242586252,0.475744264878332,0.48446753281033,0.436121373691285,0.498386045372399,0.595364179870183,0.539333781051454,0.575274698385866,0.493459958630389,0.497294973756241,0.505955398714571,0.434341580524769,0.457174631229745,"lena","voc_dur_fem_ph"
-0.499683488581197,0.493699892739207,0.512651627760294,0.458448485050224,0.482439547788361,0.552164040996873,0.570566545510991,0.48576467254944,0.622201305010855,0.45255720881485,0.370308574492648,0.555894479325716,0.505747118590651,0.558074595357549,0.371506436784858,0.447291251499663,0.448346773668459,0.565454429964638,0.547149213890819,0.498295901667961,"lena","voc_dur_mal_ph"
-0.755614235998673,0.650694882362997,0.62855442618791,0.665629715929489,0.656148368524546,0.666070397104876,0.681928356912807,0.661362624032417,0.641783636378652,0.693053432157072,0.700550155840917,0.694047396628594,0.647287006748031,0.745159200117537,0.707351444975424,0.665587820793395,0.639804740375592,0.717439028455527,0.688596524815987,0.663249670937588,"lena","voc_dur_och_ph"
-0.585735902433246,0.619649445238461,0.574143825433242,0.549585752587865,0.603106187748214,0.608246263192463,0.617321006851306,0.488874784210349,0.504983504810881,0.585484443528091,0.432139067577807,0.452475178971631,0.617673656040587,0.59026001585117,0.593023791705151,0.511490767825073,0.548837402433584,0.501461110502677,0.45133555464682,0.457997782246236,"lena","voc_fem_ph"
-0.39803426932379,0.464694770367648,0.476968505385761,0.458397932435309,0.483671928563218,0.516737618005379,0.556707498050988,0.496051826797976,0.604093201974883,0.440180543251438,0.384558078555418,0.531145430796513,0.458559615049563,0.517166584615878,0.38923380951806,0.426151147884115,0.453493653452529,0.504490105283025,0.513550457033679,0.492178278439302,"lena","voc_mal_ph"
-0.735458043570209,0.670485682932091,0.62279177027049,0.65882283227438,0.637231069429586,0.666039904158141,0.67259610185085,0.651464366707324,0.624706456896268,0.683017336398496,0.69065536932179,0.707887865274507,0.641871964018487,0.715937223227943,0.700714943919076,0.641112495125127,0.652424114848894,0.725968356308026,0.674987169276903,0.669837751536955,"lena","voc_och_ph"
-0.5550460859098,0.500211183281753,0.545498944822827,0.485966979637966,0.571916087253262,0.5686524355063,0.554386810898866,0.459918836007674,0.535914954188888,0.46990106849363,0.463858570196812,0.549450830571755,0.489202471154046,0.523381357318158,0.571981384982405,0.515633061995623,0.455773190915381,0.501345011720658,0.548379313262923,0.378841306971482,"lena","wc_adu_ph"
-0.578111731868861,0.61410071551278,0.544768894913735,0.487146898852977,0.595041844227047,0.603087745469636,0.557189448383626,0.496475614052111,0.50466635661172,0.504785565560793,0.445221949650908,0.49083363054541,0.615498074775479,0.58098821760619,0.583080727556477,0.510979388096872,0.508459882727958,0.512480920427094,0.439729356791908,0.458586384486856,"lena","wc_fem_ph"
-0.391447624662368,0.491934656649314,0.50414551641364,0.481480198463865,0.534522418802732,0.543336018613237,0.532944605653388,0.53402982065386,0.633487537860234,0.432467852529957,0.4522310298169,0.48317448607348,0.485420261097407,0.529765604318049,0.437738360545724,0.413897963101722,0.501858921601679,0.53701471665186,0.460737651797721,0.470969004127799,"lena","wc_mal_ph"
-0.617501415827757,0.663319494714944,0.595437317061506,0.622273437284939,0.581876182126086,0.659260739384003,0.627374515892049,0.598554128233223,0.64188058582628,0.612855302556107,0.583712273690216,0.553938222740731,0.61785712684216,0.624597879497182,0.565402476925473,0.67930778154596,0.534537309586632,0.573950055986047,0.61659920461686,0.560983916954779,"aclew","avg_can_voc_dur_chi"
-0.583500863342014,0.56341739451768,0.586839250414721,0.530343063630888,0.554115872095784,0.544047669288385,0.640942137904335,0.600910963391631,0.52406476423949,0.521060017304864,0.565862866633694,0.515956300954213,0.610912919563559,0.586671495118455,0.573345756475579,0.649623281769695,0.532932093993799,0.540731922992143,0.589930713232514,0.567334897257489,"aclew","avg_cry_voc_dur_chi"
-0.555009670908681,0.583586399095823,0.491305475613682,0.502663957163792,0.505588369564365,0.540648934813805,0.574892671390481,0.613027554316833,0.545039958910585,0.562042078447267,0.483960519625005,0.56292834430224,0.53756987199686,0.506960007842416,0.594164858507186,0.581320093442512,0.568360784084447,0.459811495892549,0.500742946339456,0.470961674146913,"aclew","avg_non_can_voc_dur_chi"
-0.603108847110179,0.652438364589894,0.619188686590074,0.642399089320062,0.65842882365645,0.628077666552184,0.676565438233796,0.641155463242649,0.605347114856744,0.596709990276701,0.546027881007189,0.621518081630193,0.614427187645252,0.68553115316339,0.57921358173119,0.679541104475961,0.581186408402128,0.581900816147946,0.615389914174077,0.59510584204849,"aclew","avg_voc_dur_chi"
-0.437061331612535,0.546607098247521,0.373498857446771,0.418780777620025,0.486583168204571,0.485526468828453,0.500248332630137,0.383019986665134,0.5237449469787,0.506165076286803,0.513812608121882,0.520073768973325,0.502833972171299,0.586500874848478,0.418710411881669,0.470733909117366,0.458622236437926,0.525768583846386,0.411751557541578,0.542386526688872,"aclew","avg_voc_dur_fem"
-0.34205690363917,0.442880406754636,0.519796391490302,0.491433083689546,0.468568416952827,0.483287423617567,0.449701427795879,0.489106714820486,0.504526586974027,0.515805466309508,0.395366833465495,0.527638511180824,0.472939278568,0.487421918701635,0.40619054421642,0.502733863055106,0.577722507790708,0.549443195706567,0.534917485612386,0.488881280235185,"aclew","avg_voc_dur_mal"
-0.690350214729103,0.650071285856013,0.648790251628807,0.685747671342945,0.660204518452614,0.645513680034275,0.601379781603351,0.690301974076448,0.653708191150906,0.698600635959409,0.658003344709924,0.637830920558018,0.672432844305826,0.689311378727803,0.692969204891956,0.68083328495866,0.646643851678661,0.66071668576338,0.725300571699441,0.694753701435535,"aclew","avg_voc_dur_och"
-0.801098123910249,0.779013352988971,0.739309279186926,0.812264614582686,0.820490640570279,0.787869329120326,0.804578695429789,0.795196648952323,0.78160177755542,0.796058787084905,0.782002152392633,0.799422224312673,0.792343953913779,0.809537297193832,0.819508962954372,0.791813922131436,0.805976073193809,0.758760593855271,0.824498821784712,0.817715434497524,"aclew","can_voc_chi_ph"
-0.762470229493643,0.760000245822926,0.699918368487636,0.7814471448864,0.769120228379514,0.745673874127857,0.76819292089,0.780994466353667,0.735448414393642,0.749778059301535,0.691253280716873,0.726817985520017,0.770013451343508,0.800660838581383,0.783022074590453,0.777375639660172,0.754319097245703,0.740281325010194,0.780828790264366,0.757591807390448,"aclew","can_voc_dur_chi_ph"
-0.760253363427766,0.666910812388086,0.659362662581621,0.710705453102384,0.744097775127932,0.742399802864205,0.730580644306645,0.666224433531127,0.691724237102415,0.690060352389976,0.63162373491638,0.627339066869848,0.643657411593276,0.709963336506257,0.723311200331181,0.706396216335111,0.646481580854562,0.71157195184044,0.740942673920095,0.685458825354419,"aclew","cp_dur"
-0.796244432152419,0.718035738635239,0.705536247486034,0.773229185022203,0.768593897882942,0.762030442673198,0.766239741502578,0.745872331851968,0.738039954800821,0.736774027262459,0.681928804752833,0.69781818772845,0.690954105153625,0.764113431894709,0.777501523635639,0.743782449988914,0.720859995015874,0.757112440790421,0.782459884762755,0.752529698025885,"aclew","cp_n"
-0.495030803907562,0.493315671118634,0.466908677080292,0.544546150456564,0.592464845528805,0.526870822130468,0.507121518862983,0.465219236256029,0.537984208662909,0.559433926026323,0.44642297425869,0.511674082665402,0.447847970067897,0.45140142326667,0.587207879262884,0.536446404542855,0.523138874003261,0.399751909172375,0.491596140198644,0.499115356934284,"aclew","cry_voc_chi_ph"
-0.522852457133244,0.563606605189523,0.536065093058066,0.518244689312383,0.591430063293195,0.576739790110789,0.57348840350449,0.480528183779994,0.543601067235463,0.60459359415663,0.483354523868317,0.549601762469355,0.520502294280392,0.495831121913933,0.585586584740731,0.551534940291076,0.533525741661617,0.473438780827435,0.522459572580735,0.535520993513013,"aclew","cry_voc_dur_chi_ph"
-0.556364657277924,0.569096775906363,0.518896018970686,0.483206378579904,0.412584940143778,0.452978952178015,0.529967640673194,0.502266717148032,0.519869179157158,0.53625436658587,0.443245200564825,0.569927420967691,0.483783413517478,0.482646495691115,0.480663513770527,0.475504710413362,0.479923456658723,0.536136441604141,0.435041465795627,0.51177224193138,"aclew","lp_dur"
-0.515688788752308,0.542309052409672,0.490944675718267,0.454168071377254,0.464492494033396,0.420163560392504,0.501343153428419,0.473810449400848,0.509315367811411,0.555283112318298,0.486729108925141,0.538496557852592,0.50761075754214,0.495027485615702,0.465471667315357,0.461759357009416,0.504340523506622,0.443538629718593,0.349014803171965,0.480482004931781,"aclew","lp_n"
-0.626252117648963,0.729607495583924,0.648718616414106,0.700763811661396,0.678249383989521,0.650267874674998,0.723975370868268,0.659406573068626,0.642934155204726,0.708603793271601,0.658954796928821,0.621566388916718,0.599396049864291,0.655880138872611,0.704927667753009,0.633099860445213,0.684112902936648,0.661367703728398,0.703569764750846,0.672777715490825,"aclew","non_can_voc_chi_ph"
-0.606643263833061,0.720250644994242,0.615356375929576,0.674467104444859,0.642668718051216,0.620213743052357,0.70695019700991,0.660871545870006,0.612727805012909,0.676839045197003,0.624730665276679,0.593197917635005,0.586591288373325,0.628277433179362,0.632578512513045,0.633013823411453,0.663079910731587,0.657986525776276,0.677824118397784,0.649788629643789,"aclew","non_can_voc_dur_chi_ph"
-0.603631829210714,0.589403017293206,0.583489686779984,0.557454998084553,0.5622341291018,0.570325326234475,0.680143810031648,0.492108700494507,0.598945078291263,0.593056921755887,0.474954664335555,0.488994168739298,0.573399275237268,0.628100573723797,0.578371591100778,0.504220487657207,0.406347606893138,0.541085068591046,0.59534763443567,0.570178293761996,"aclew","pc_adu_ph"
-0.59139149232511,0.645371698265858,0.53487390073359,0.608837514909207,0.591343959011758,0.602251499086039,0.636294334166652,0.502163725649431,0.544056168874796,0.602650441700476,0.504852930528011,0.472918712607011,0.634230978489406,0.619748345115937,0.617933639180531,0.555215074753585,0.538485680309712,0.607191897941813,0.505716158922985,0.555343137259266,"aclew","pc_fem_ph"
-0.531033629283407,0.463842094476255,0.497435361386951,0.561005370850983,0.464803856793662,0.572869413007277,0.58532951270304,0.492838455515492,0.600794166892415,0.441302245978755,0.448343664919459,0.503443631378163,0.523000407610729,0.553108947457866,0.463166867942332,0.458249936465154,0.428231903601725,0.599019989374238,0.568229174789154,0.479634677664313,"aclew","pc_mal_ph"
-0.655520697218532,0.645393211705228,0.653142749931534,0.683795727648503,0.630409221101938,0.663659264132379,0.624744272906907,0.691971067322469,0.601760190265013,0.689912919003522,0.645533089162996,0.639818035176769,0.623261300987304,0.661852786671964,0.662873468765367,0.689883562057284,0.640633926131661,0.63826108154645,0.678909879006097,0.612686438653602,"aclew","peak_simple_CTC"
-0.632554970688185,0.594326347144652,0.612528448465804,0.668294316271852,0.607134998381571,0.661961790828059,0.632377353348013,0.666914121713413,0.561309213630403,0.643947995938596,0.616113065811954,0.651742583718507,0.596016580558977,0.586952341583998,0.624470252303504,0.649329965614379,0.645318346140761,0.584838017287346,0.677998715975494,0.550460650131994,"aclew","peak_voc_chi"
-0.417507160385446,0.451192269010943,0.329610048324672,0.465424411794533,0.362201802584972,0.343343561916756,0.414278559585331,0.38141275458602,0.341467510318819,0.478787476496903,0.35057490746508,0.413082158874747,0.403622265222556,0.526778907734679,0.432913933100724,0.435874753570261,0.345459734842609,0.414604374232076,0.328751741303804,0.338300003212761,"aclew","peak_voc_fem"
-0.359160380927808,0.328173986530003,0.334327734854978,0.435899455291533,0.361931027596591,0.428326570759005,0.454612022521376,0.308179822682014,0.371699574216582,0.418186781887256,0.20746729438132,0.366060774306298,0.386020681654592,0.359339119142218,0.258609176185606,0.294047358003687,0.270812206024625,0.369480608631135,0.439775885443058,0.434664021414253,"aclew","peak_voc_mal"
-0.726526225729312,0.691275398374798,0.642146368864242,0.682446838457602,0.660646842232706,0.661933743909577,0.672614760761172,0.647860071486746,0.656819195575261,0.715226361282776,0.657018383009679,0.692561503658954,0.660546687891358,0.665838948042883,0.678081586519312,0.731793957331001,0.693424809282188,0.622180055989578,0.699988567233267,0.687176858495227,"aclew","peak_voc_och"
-0.273874030533774,0.276798705968398,0.290267988439095,0.2245158888768,0.122737494800811,0.17642219257172,0.369507877963337,0.101341108789153,0.318291669946921,0.305476400663953,0.229790904568284,0.271946708241364,0.276068621784893,0.302757853594027,0.211876715636762,0.200807213514723,0.163717529280084,0.251237904460042,0.21445767310465,0.244305748874026,"aclew","peak_wc_adu"
-0.289289866081809,0.42687880717693,0.237923650366628,0.31142985573753,0.265647504509225,0.264279382108978,0.417707015235797,0.221082689005034,0.176398389624276,0.284270430129077,0.244601295143861,0.261288769629833,0.277113086504087,0.342867527155415,0.298436534846134,0.35951894404585,0.294466755066619,0.328145414840984,0.176842648382157,0.179236373197996,"aclew","peak_wc_fem"
-0.396604063019732,0.347932098285405,0.445890647961519,0.409901294596568,0.305629850562203,0.360240843064334,0.348309653522767,0.350124482281819,0.370453919522809,0.386536783903399,0.289178916797921,0.420299263599086,0.348706089440504,0.392029751474004,0.292790966035565,0.31449524483922,0.287474627373882,0.437590647753937,0.390147737376023,0.401962503706135,"aclew","peak_wc_mal"
-0.602765855971752,0.591601025497814,0.585131329142734,0.554538040397133,0.560969905455996,0.566288133856331,0.682652214167633,0.494493134023045,0.601415549144969,0.593173084302415,0.47964397427801,0.489245977756836,0.572048861569404,0.629409447924691,0.580312383175257,0.508404394898247,0.41237468079445,0.544414879828435,0.59520107626349,0.571653670948748,"aclew","sc_adu_ph"
-0.573273985081611,0.632650383439887,0.53100220426767,0.603046626676188,0.574217239292477,0.599019994375792,0.639130482648015,0.498937397890751,0.537423221464872,0.599849447565827,0.504379247490154,0.453424381790442,0.617759893935716,0.620650322249886,0.603446451340835,0.554276144753343,0.538403728541959,0.594307380705437,0.485788254568351,0.536695569300149,"aclew","sc_fem_ph"
-0.531602532884168,0.449378308947586,0.503023513760431,0.544124189519392,0.465641716469777,0.572517645821434,0.586473273311933,0.473938691610058,0.602377531435986,0.428531933947211,0.454024487063811,0.503734170261841,0.523016955440831,0.587137363250247,0.463291467524572,0.448792098217091,0.431771266893056,0.59875548449065,0.568563622768719,0.481015431172966,"aclew","sc_mal_ph"
-0.746586278068021,0.77121830317108,0.742124051374642,0.799163836072466,0.768230610676593,0.772210130935468,0.794224638983847,0.770522266083531,0.743482611608547,0.801417580029406,0.725401743317397,0.709520830091221,0.765547222187404,0.784642144866501,0.797903503156545,0.768204815992387,0.722129505044795,0.6861895373825,0.797726461972983,0.747316128999742,"aclew","simple_CTC_ph"
-0.673646379095523,0.715232288151022,0.670509358008795,0.738099984346126,0.705549087832275,0.703684251835122,0.742848492825551,0.698540639606515,0.675108538658995,0.736029745031282,0.684199208744136,0.673166117470944,0.647619652151815,0.702809350158217,0.736081696694081,0.679876550200399,0.671981097108634,0.640003522342296,0.749544470472719,0.677277783861551,"aclew","voc_chi_ph"
-0.675930487522956,0.720850614218119,0.675590104464335,0.734050252395981,0.708155882607906,0.705784452662108,0.745801767435852,0.708955054734624,0.678233216393321,0.725290793217996,0.68607594154999,0.683942984125458,0.670795547306083,0.739349057617369,0.695671325659947,0.740681318318199,0.673832783254295,0.649923497984495,0.764679594758016,0.690207586950744,"aclew","voc_dur_chi_ph"
-0.587233831651475,0.655141556728145,0.538364397680282,0.578973752460774,0.577581563182814,0.621940692129165,0.611640920206725,0.504276648218334,0.582308534296524,0.596150891544365,0.480478112246889,0.520186395802852,0.656371628719733,0.626972239039726,0.574582885073339,0.538906778025216,0.50592343211571,0.585977951027235,0.511655381605437,0.545431866247534,"aclew","voc_dur_fem_ph"
-0.53893263575591,0.46080634236395,0.493371124430727,0.516467928229057,0.540021414313386,0.584397482298114,0.554841503712223,0.519798659716305,0.631378440630034,0.434180620094973,0.451107862460196,0.547179275642313,0.536023864705449,0.589621444540681,0.389243744716077,0.477776897286382,0.508475992144657,0.626536509295314,0.561926087244379,0.493592363886835,"aclew","voc_dur_mal_ph"
-0.795998416401259,0.739710116389252,0.705361002057855,0.743721273029067,0.734034710713667,0.748499771867327,0.749374579372306,0.730490933141235,0.751881009685,0.785821226049998,0.685086599194831,0.725698923958031,0.762698107999993,0.743074604431548,0.7998655661667,0.771962723776265,0.73836540426003,0.695749495232549,0.811298381806998,0.744521127751451,"aclew","voc_dur_och_ph"
-0.688882448065354,0.721438212837162,0.663467162203227,0.714162214522287,0.679243079746391,0.694725115431442,0.715261944719175,0.639209506415092,0.676010276198951,0.740883743792643,0.553174076191768,0.587645876676525,0.735628924382646,0.71507771462742,0.683257859098494,0.654805325191715,0.618338457743789,0.63552627095178,0.66026753402089,0.641580046331522,"aclew","voc_fem_ph"
-0.594181358233978,0.533121503292765,0.587581595821142,0.537965045438498,0.540350192868084,0.569777446084075,0.583551303161786,0.568734328359307,0.579025190334018,0.549297522195546,0.474720627864056,0.53423329736726,0.552177949644864,0.603763819266943,0.569385719081382,0.500235226481417,0.445994417606141,0.602367926618675,0.663100790600542,0.511464414091085,"aclew","voc_mal_ph"
-0.809751943957268,0.768917071518286,0.743030036586344,0.77643742948251,0.786896333843393,0.784980951499682,0.77786367316368,0.757578950742174,0.776018546289704,0.822103484949907,0.724025690254598,0.756764853743853,0.775707328897988,0.776720859417739,0.833661767830746,0.787699790184081,0.742561807090087,0.725911181015478,0.819619482888169,0.782903290173566,"aclew","voc_och_ph"
-0.600685692226056,0.583378669608035,0.576932766065688,0.550914011558347,0.556870927155878,0.565049567035243,0.675334160383316,0.48451510542201,0.593980926526743,0.585710754369168,0.470772136896618,0.487329478249807,0.565858305989878,0.622344079205779,0.57439262185917,0.498241380991833,0.399046989779135,0.535561329731283,0.589762838399572,0.566622341024663,"aclew","wc_adu_ph"
-0.58583124455614,0.640426304511259,0.529165035542401,0.601309064602556,0.585011508607097,0.597644048389598,0.630993508866571,0.494935478781061,0.537625634960103,0.595218409999896,0.498648376021132,0.470115987041285,0.628727707330127,0.613571474066021,0.611047338774759,0.548736762799333,0.533244629051101,0.602833237310063,0.497030879542929,0.548615403972207,"aclew","wc_fem_ph"
-0.529377848050539,0.461247803739647,0.495164470200468,0.558451044077986,0.462405262665897,0.573010539519864,0.583236280701862,0.491811643802858,0.599928887405093,0.43850026615736,0.446215197273486,0.50449546480716,0.52183088747579,0.583454063952264,0.431122144567761,0.458034903393574,0.426238887100779,0.599662629524191,0.54835167294697,0.477792233842331,"aclew","wc_mal_ph"
-0.529632311790713,0.50991353543193,0.476848077949076,0.454212836791689,0.373403485109999,0.379380039072022,0.495504658240426,0.469426836356486,0.538201337010649,0.386462005890101,0.370927959829278,0.414493488030581,0.473256501592153,0.524673955543172,0.366632292939083,0.437027366338368,0.434441058859438,0.491690693743251,0.4949117149642,0.524055184297892,"lena","avg_cry_voc_dur_chi"
-0.613365963527095,0.590797721262198,0.590290059028701,0.601857635981607,0.46984461956128,0.492618344205665,0.664924700439994,0.541507551738892,0.58570997206447,0.488495411590284,0.640120160462269,0.533483277469867,0.561427164723967,0.609097153378314,0.547442719973307,0.595841968315209,0.51146637334102,0.545796595561058,0.573153969164817,0.527272543504471,"lena","avg_voc_dur_chi"
-0.467713472147796,0.440187055049821,0.381460341467593,0.409715650189157,0.425758974932976,0.435564452301561,0.501289000428368,0.35318192718445,0.494984387654409,0.384300483960001,0.43466947450292,0.417986813566646,0.456269354420228,0.510781606855444,0.438888964306434,0.393842526693264,0.350116951410237,0.375823367272621,0.329241774673279,0.45295600010371,"lena","avg_voc_dur_fem"
-0.383126319137126,0.522266791522094,0.387225980290169,0.488590842977638,0.42981360380937,0.439762213415376,0.414673639737387,0.360533764276348,0.441430008664392,0.315398739596439,0.378899516070739,0.44029679482135,0.419275246192747,0.475049239790438,0.396557326488078,0.407986350016263,0.424873293262353,0.446070568887584,0.371005461405172,0.416868671800925,"lena","avg_voc_dur_mal"
-0.515250311444769,0.511535300921712,0.441579438622757,0.530793783747249,0.444526435137349,0.42972695831144,0.52357144825969,0.518761575174783,0.410708861126395,0.511591820297089,0.557147987356124,0.493228572668439,0.529020500971828,0.547482462568476,0.469758147929877,0.490818452484786,0.53822824871965,0.492454425314826,0.443624234509686,0.507170538703947,"lena","avg_voc_dur_och"
-0.44383087599931,0.429552503013781,0.469335536425704,0.503320332427298,0.539184196903333,0.423025992488875,0.441900688206929,0.461254121042729,0.478530880387744,0.515375507525924,0.44479020224841,0.462751470557121,0.433799365287896,0.471352641917425,0.479276862663711,0.508657943652713,0.520332356410108,0.538061177005251,0.447140555252504,0.4612105144464,"lena","cry_voc_chi_ph"
-0.462304187460461,0.464739133952312,0.446677556684493,0.506228227015972,0.534805732583255,0.423656097392353,0.478007928779967,0.49683350099443,0.495337460750148,0.490963170052345,0.475576051794474,0.458155100016352,0.44588518565551,0.504227983368874,0.510068965047616,0.514676904281489,0.546687690818818,0.528172938017029,0.468930384804564,0.506561510424101,"lena","cry_voc_dur_chi_ph"
-0.672234375100049,0.665570297774445,0.680481658119276,0.710174009370606,0.748019360148181,0.679918223625536,0.69052166557658,0.64650747770882,0.673152030977836,0.681764773142585,0.600991287565016,0.670794096354187,0.690125289816434,0.683586422883392,0.707657673696081,0.650501111352224,0.664111613282136,0.607552449020958,0.753013794884833,0.646820871405072,"lena","lena_CTC_ph"
-0.68435350455467,0.691705372538895,0.692192339085878,0.74049787410876,0.726199654066355,0.742540021514852,0.710624166325196,0.730169624866038,0.636185115366377,0.737143902662371,0.669755384950763,0.684378215475842,0.726365634762151,0.721888052345599,0.695012642606676,0.740844668736371,0.664581302578819,0.620579298682848,0.77320382234601,0.687478191485773,"lena","lena_CVC_ph"
-0.767218499752663,0.785657781944853,0.791708736911874,0.776044230449767,0.758004438482362,0.762657005359924,0.804872408719502,0.820447320703934,0.781960477150493,0.808032213523435,0.724019969679374,0.755742718911543,0.786003444112663,0.763165385749948,0.776104575620864,0.787845766701316,0.808004729918502,0.808369920112386,0.780257184910944,0.784569429866985,"lena","lp_dur"
-0.788840597007571,0.777710953461189,0.809758604075822,0.797376561851807,0.776761775334131,0.801767148716341,0.811075727648039,0.827563496880315,0.785086283006403,0.810050981460553,0.708231627884753,0.770764782000057,0.79608076674845,0.771632362992267,0.788175669283299,0.802178090833132,0.802429384351973,0.823324942874715,0.794638819647339,0.779067911049732,"lena","lp_n"
-0.572461173488456,0.587573522518749,0.599243726062633,0.60349745811331,0.634775755433477,0.595194377025579,0.645758680115769,0.565250802505224,0.507307157446071,0.556765280647613,0.552768506815019,0.568915095425081,0.607167213348118,0.573012504266229,0.552041280205829,0.601819639139692,0.582909830110699,0.504743490479379,0.621807805794401,0.529913035323655,"lena","peak_lena_CTC"
-0.632713145842526,0.571114105130832,0.672887411998941,0.694169430587965,0.597011145886088,0.693973453861277,0.622803747719292,0.631802702421909,0.615596213068432,0.625520612762818,0.594827951683007,0.626333893469088,0.673885512829064,0.631229525826502,0.580741936501286,0.723787169471325,0.63139601417104,0.610214363266078,0.698352956746046,0.573294541836022,"lena","peak_lena_CVC"
-0.492285217015612,0.481341536340802,0.50991636564021,0.579606534938903,0.479500224806278,0.550721175970533,0.548044009524075,0.56770419683685,0.493172421454895,0.559735234464496,0.460222805371566,0.538685431942698,0.487873671558339,0.540445067076667,0.526709444728653,0.624737943918821,0.550926822039089,0.494329616071369,0.58934912058243,0.470953224787133,"lena","peak_voc_chi"
-0.291651042519264,0.354259448436257,0.315051348887315,0.289541055458449,0.294231951248555,0.243389107600351,0.371084693133064,0.273778534567574,0.280190093279418,0.366195101045202,0.321267527573009,0.316631740480627,0.33621591246635,0.424675741739995,0.365894834034242,0.310543708678465,0.305786237570686,0.346802830781434,0.265364899617465,0.181985899501161,"lena","peak_voc_fem"
-0.447074607561509,0.351915368736206,0.468952978720984,0.465799321964889,0.35288529175254,0.397861288863683,0.435127036310904,0.42098289886115,0.366161611943626,0.426630865907204,0.245320086694944,0.475885980549954,0.332857597325262,0.358193053396669,0.337307119448279,0.335396993934712,0.347452595753199,0.379613333982636,0.403160271264769,0.378340452422915,"lena","peak_voc_mal"
-0.574434163733267,0.501251745739978,0.473601451344721,0.516764377245767,0.471941204983913,0.510470849320336,0.505086868596476,0.541066076861353,0.467418770317431,0.515689786031787,0.565919140299027,0.549283399931665,0.495949083700762,0.559554876325464,0.55727032046059,0.530918343897256,0.518086503827639,0.584399942910613,0.568261748579748,0.544271049463898,"lena","peak_voc_och"
-0.280320899451802,0.290196414274575,0.412573647306386,0.304003695106465,0.257074012992511,0.320479590603707,0.334521000316203,0.262852178460729,0.355067929594012,0.318922590167553,0.370257203374036,0.389685946046199,0.264184110988472,0.414936075762327,0.39671388215062,0.258728695642282,0.241802603056404,0.273588805235624,0.237435634894836,0.298551374686732,"lena","peak_wc_adu"
-0.251267737494783,0.294102627114562,0.305096696988737,0.272375382208701,0.219609998987595,0.220835934823682,0.331867173669763,0.252548870871861,0.268557130226001,0.279588882416367,0.336449642702233,0.291779302684401,0.279116195610394,0.395314593406186,0.334705560582131,0.244459813636429,0.224633914799123,0.274397327081167,0.212040634995332,0.19166806327367,"lena","peak_wc_fem"
-0.506962592641561,0.38174822185219,0.518736811673787,0.47175685567434,0.417459873996447,0.415358794621466,0.450256656930805,0.459952989254429,0.462453463641349,0.447393538355017,0.336152436938499,0.510421848998483,0.372866523145206,0.423522194262699,0.32409092183599,0.394627908636973,0.387951359148364,0.416845658549367,0.45399253639714,0.402430485259211,"lena","peak_wc_mal"
-0.469534017270089,0.474310028783182,0.535889934708857,0.387991651714866,0.481278442409662,0.421427391742807,0.499434329957533,0.387199845173854,0.52081033936218,0.502417375108504,0.376090904646438,0.488964047347011,0.465737474265549,0.3799124589765,0.450950505080632,0.5299048375476,0.491823717581158,0.414565345144619,0.332251432780522,0.41172399420958,"lena","standardScore"
-0.555781069294244,0.574656080924958,0.572454635368111,0.640347544740844,0.621982332805476,0.624725775663358,0.6251146151666,0.611780711968396,0.550022063433827,0.647272450663945,0.566830682890886,0.578102802266115,0.586622368450927,0.633521319815065,0.606556870057246,0.667210783441632,0.574393521842023,0.543412827586669,0.675814005061156,0.589792279202405,"lena","voc_chi_ph"
-0.592254811751614,0.598468450308493,0.598477920675071,0.647984761989643,0.595734153544517,0.647687881370591,0.657998407524856,0.595304849186625,0.5819161776125,0.663975293601587,0.622523448553215,0.579471830552569,0.643921947731552,0.609444615484315,0.591920032913183,0.700597738234767,0.561815424163442,0.563667454896813,0.615748941099511,0.571193021184931,"lena","voc_dur_chi_ph"
-0.587905466316564,0.622126038352705,0.515078088443244,0.461831346707623,0.590986982762626,0.574085144281828,0.543811216207794,0.479930242586252,0.475744264878332,0.48446753281033,0.436121373691285,0.498386045372399,0.595364179870183,0.539333781051454,0.575274698385866,0.493459958630389,0.497294973756241,0.505955398714571,0.434341580524769,0.457174631229745,"lena","voc_dur_fem_ph"
-0.499683488581197,0.493699892739207,0.512651627760294,0.458448485050224,0.482439547788361,0.552164040996873,0.570566545510991,0.48576467254944,0.622201305010855,0.45255720881485,0.370308574492648,0.555894479325716,0.505747118590651,0.558074595357549,0.371506436784858,0.447291251499663,0.448346773668459,0.565454429964638,0.547149213890819,0.498295901667961,"lena","voc_dur_mal_ph"
-0.755614235998673,0.650694882362997,0.62855442618791,0.665629715929489,0.656148368524546,0.666070397104876,0.681928356912807,0.661362624032417,0.641783636378652,0.693053432157072,0.700550155840917,0.694047396628594,0.647287006748031,0.745159200117537,0.707351444975424,0.665587820793395,0.639804740375592,0.717439028455527,0.688596524815987,0.663249670937588,"lena","voc_dur_och_ph"
-0.585735902433246,0.619649445238461,0.574143825433242,0.549585752587865,0.603106187748214,0.608246263192463,0.617321006851306,0.488874784210349,0.504983504810881,0.585484443528091,0.432139067577807,0.452475178971631,0.617673656040587,0.59026001585117,0.593023791705151,0.511490767825073,0.548837402433584,0.501461110502677,0.45133555464682,0.457997782246236,"lena","voc_fem_ph"
-0.39803426932379,0.464694770367648,0.476968505385761,0.458397932435309,0.483671928563218,0.516737618005379,0.556707498050988,0.496051826797976,0.604093201974883,0.440180543251438,0.384558078555418,0.531145430796513,0.458559615049563,0.517166584615878,0.38923380951806,0.426151147884115,0.453493653452529,0.504490105283025,0.513550457033679,0.492178278439302,"lena","voc_mal_ph"
-0.735458043570209,0.670485682932091,0.62279177027049,0.65882283227438,0.637231069429586,0.666039904158141,0.67259610185085,0.651464366707324,0.624706456896268,0.683017336398496,0.69065536932179,0.707887865274507,0.641871964018487,0.715937223227943,0.700714943919076,0.641112495125127,0.652424114848894,0.725968356308026,0.674987169276903,0.669837751536955,"lena","voc_och_ph"
-0.5550460859098,0.500211183281753,0.545498944822827,0.485966979637966,0.571916087253262,0.5686524355063,0.554386810898866,0.459918836007674,0.535914954188888,0.46990106849363,0.463858570196812,0.549450830571755,0.489202471154046,0.523381357318158,0.571981384982405,0.515633061995623,0.455773190915381,0.501345011720658,0.548379313262923,0.378841306971482,"lena","wc_adu_ph"
-0.578111731868861,0.61410071551278,0.544768894913735,0.487146898852977,0.595041844227047,0.603087745469636,0.557189448383626,0.496475614052111,0.50466635661172,0.504785565560793,0.445221949650908,0.49083363054541,0.615498074775479,0.58098821760619,0.583080727556477,0.510979388096872,0.508459882727958,0.512480920427094,0.439729356791908,0.458586384486856,"lena","wc_fem_ph"
-0.391447624662368,0.491934656649314,0.50414551641364,0.481480198463865,0.534522418802732,0.543336018613237,0.532944605653388,0.53402982065386,0.633487537860234,0.432467852529957,0.4522310298169,0.48317448607348,0.485420261097407,0.529765604318049,0.437738360545724,0.413897963101722,0.501858921601679,0.53701471665186,0.460737651797721,0.470969004127799,"lena","wc_mal_ph"
-0.617501415827757,0.663319494714944,0.595437317061506,0.622273437284939,0.581876182126086,0.659260739384003,0.627374515892049,0.598554128233223,0.64188058582628,0.612855302556107,0.583712273690216,0.553938222740731,0.61785712684216,0.624597879497182,0.565402476925473,0.67930778154596,0.534537309586632,0.573950055986047,0.61659920461686,0.560983916954779,"aclew","avg_can_voc_dur_chi"
-0.583500863342014,0.56341739451768,0.586839250414721,0.530343063630888,0.554115872095784,0.544047669288385,0.640942137904335,0.600910963391631,0.52406476423949,0.521060017304864,0.565862866633694,0.515956300954213,0.610912919563559,0.586671495118455,0.573345756475579,0.649623281769695,0.532932093993799,0.540731922992143,0.589930713232514,0.567334897257489,"aclew","avg_cry_voc_dur_chi"
-0.555009670908681,0.583586399095823,0.491305475613682,0.502663957163792,0.505588369564365,0.540648934813805,0.574892671390481,0.613027554316833,0.545039958910585,0.562042078447267,0.483960519625005,0.56292834430224,0.53756987199686,0.506960007842416,0.594164858507186,0.581320093442512,0.568360784084447,0.459811495892549,0.500742946339456,0.470961674146913,"aclew","avg_non_can_voc_dur_chi"
-0.603108847110179,0.652438364589894,0.619188686590074,0.642399089320062,0.65842882365645,0.628077666552184,0.676565438233796,0.641155463242649,0.605347114856744,0.596709990276701,0.546027881007189,0.621518081630193,0.614427187645252,0.68553115316339,0.57921358173119,0.679541104475961,0.581186408402128,0.581900816147946,0.615389914174077,0.59510584204849,"aclew","avg_voc_dur_chi"
-0.437061331612535,0.546607098247521,0.373498857446771,0.418780777620025,0.486583168204571,0.485526468828453,0.500248332630137,0.383019986665134,0.5237449469787,0.506165076286803,0.513812608121882,0.520073768973325,0.502833972171299,0.586500874848478,0.418710411881669,0.470733909117366,0.458622236437926,0.525768583846386,0.411751557541578,0.542386526688872,"aclew","avg_voc_dur_fem"
-0.34205690363917,0.442880406754636,0.519796391490302,0.491433083689546,0.468568416952827,0.483287423617567,0.449701427795879,0.489106714820486,0.504526586974027,0.515805466309508,0.395366833465495,0.527638511180824,0.472939278568,0.487421918701635,0.40619054421642,0.502733863055106,0.577722507790708,0.549443195706567,0.534917485612386,0.488881280235185,"aclew","avg_voc_dur_mal"
-0.690350214729103,0.650071285856013,0.648790251628807,0.685747671342945,0.660204518452614,0.645513680034275,0.601379781603351,0.690301974076448,0.653708191150906,0.698600635959409,0.658003344709924,0.637830920558018,0.672432844305826,0.689311378727803,0.692969204891956,0.68083328495866,0.646643851678661,0.66071668576338,0.725300571699441,0.694753701435535,"aclew","avg_voc_dur_och"
-0.801098123910249,0.779013352988971,0.739309279186926,0.812264614582686,0.820490640570279,0.787869329120326,0.804578695429789,0.795196648952323,0.78160177755542,0.796058787084905,0.782002152392633,0.799422224312673,0.792343953913779,0.809537297193832,0.819508962954372,0.791813922131436,0.805976073193809,0.758760593855271,0.824498821784712,0.817715434497524,"aclew","can_voc_chi_ph"
-0.762470229493643,0.760000245822926,0.699918368487636,0.7814471448864,0.769120228379514,0.745673874127857,0.76819292089,0.780994466353667,0.735448414393642,0.749778059301535,0.691253280716873,0.726817985520017,0.770013451343508,0.800660838581383,0.783022074590453,0.777375639660172,0.754319097245703,0.740281325010194,0.780828790264366,0.757591807390448,"aclew","can_voc_dur_chi_ph"
-0.760253363427766,0.666910812388086,0.659362662581621,0.710705453102384,0.744097775127932,0.742399802864205,0.730580644306645,0.666224433531127,0.691724237102415,0.690060352389976,0.63162373491638,0.627339066869848,0.643657411593276,0.709963336506257,0.723311200331181,0.706396216335111,0.646481580854562,0.71157195184044,0.740942673920095,0.685458825354419,"aclew","cp_dur"
-0.796244432152419,0.718035738635239,0.705536247486034,0.773229185022203,0.768593897882942,0.762030442673198,0.766239741502578,0.745872331851968,0.738039954800821,0.736774027262459,0.681928804752833,0.69781818772845,0.690954105153625,0.764113431894709,0.777501523635639,0.743782449988914,0.720859995015874,0.757112440790421,0.782459884762755,0.752529698025885,"aclew","cp_n"
-0.495030803907562,0.493315671118634,0.466908677080292,0.544546150456564,0.592464845528805,0.526870822130468,0.507121518862983,0.465219236256029,0.537984208662909,0.559433926026323,0.44642297425869,0.511674082665402,0.447847970067897,0.45140142326667,0.587207879262884,0.536446404542855,0.523138874003261,0.399751909172375,0.491596140198644,0.499115356934284,"aclew","cry_voc_chi_ph"
-0.522852457133244,0.563606605189523,0.536065093058066,0.518244689312383,0.591430063293195,0.576739790110789,0.57348840350449,0.480528183779994,0.543601067235463,0.60459359415663,0.483354523868317,0.549601762469355,0.520502294280392,0.495831121913933,0.585586584740731,0.551534940291076,0.533525741661617,0.473438780827435,0.522459572580735,0.535520993513013,"aclew","cry_voc_dur_chi_ph"
-0.556364657277924,0.569096775906363,0.518896018970686,0.483206378579904,0.412584940143778,0.452978952178015,0.529967640673194,0.502266717148032,0.519869179157158,0.53625436658587,0.443245200564825,0.569927420967691,0.483783413517478,0.482646495691115,0.480663513770527,0.475504710413362,0.479923456658723,0.536136441604141,0.435041465795627,0.51177224193138,"aclew","lp_dur"
-0.515688788752308,0.542309052409672,0.490944675718267,0.454168071377254,0.464492494033396,0.420163560392504,0.501343153428419,0.473810449400848,0.509315367811411,0.555283112318298,0.486729108925141,0.538496557852592,0.50761075754214,0.495027485615702,0.465471667315357,0.461759357009416,0.504340523506622,0.443538629718593,0.349014803171965,0.480482004931781,"aclew","lp_n"
-0.626252117648963,0.729607495583924,0.648718616414106,0.700763811661396,0.678249383989521,0.650267874674998,0.723975370868268,0.659406573068626,0.642934155204726,0.708603793271601,0.658954796928821,0.621566388916718,0.599396049864291,0.655880138872611,0.704927667753009,0.633099860445213,0.684112902936648,0.661367703728398,0.703569764750846,0.672777715490825,"aclew","non_can_voc_chi_ph"
-0.606643263833061,0.720250644994242,0.615356375929576,0.674467104444859,0.642668718051216,0.620213743052357,0.70695019700991,0.660871545870006,0.612727805012909,0.676839045197003,0.624730665276679,0.593197917635005,0.586591288373325,0.628277433179362,0.632578512513045,0.633013823411453,0.663079910731587,0.657986525776276,0.677824118397784,0.649788629643789,"aclew","non_can_voc_dur_chi_ph"
-0.603631829210714,0.589403017293206,0.583489686779984,0.557454998084553,0.5622341291018,0.570325326234475,0.680143810031648,0.492108700494507,0.598945078291263,0.593056921755887,0.474954664335555,0.488994168739298,0.573399275237268,0.628100573723797,0.578371591100778,0.504220487657207,0.406347606893138,0.541085068591046,0.59534763443567,0.570178293761996,"aclew","pc_adu_ph"
-0.59139149232511,0.645371698265858,0.53487390073359,0.608837514909207,0.591343959011758,0.602251499086039,0.636294334166652,0.502163725649431,0.544056168874796,0.602650441700476,0.504852930528011,0.472918712607011,0.634230978489406,0.619748345115937,0.617933639180531,0.555215074753585,0.538485680309712,0.607191897941813,0.505716158922985,0.555343137259266,"aclew","pc_fem_ph"
-0.531033629283407,0.463842094476255,0.497435361386951,0.561005370850983,0.464803856793662,0.572869413007277,0.58532951270304,0.492838455515492,0.600794166892415,0.441302245978755,0.448343664919459,0.503443631378163,0.523000407610729,0.553108947457866,0.463166867942332,0.458249936465154,0.428231903601725,0.599019989374238,0.568229174789154,0.479634677664313,"aclew","pc_mal_ph"
-0.655520697218532,0.645393211705228,0.653142749931534,0.683795727648503,0.630409221101938,0.663659264132379,0.624744272906907,0.691971067322469,0.601760190265013,0.689912919003522,0.645533089162996,0.639818035176769,0.623261300987304,0.661852786671964,0.662873468765367,0.689883562057284,0.640633926131661,0.63826108154645,0.678909879006097,0.612686438653602,"aclew","peak_simple_CTC"
-0.632554970688185,0.594326347144652,0.612528448465804,0.668294316271852,0.607134998381571,0.661961790828059,0.632377353348013,0.666914121713413,0.561309213630403,0.643947995938596,0.616113065811954,0.651742583718507,0.596016580558977,0.586952341583998,0.624470252303504,0.649329965614379,0.645318346140761,0.584838017287346,0.677998715975494,0.550460650131994,"aclew","peak_voc_chi"
-0.417507160385446,0.451192269010943,0.329610048324672,0.465424411794533,0.362201802584972,0.343343561916756,0.414278559585331,0.38141275458602,0.341467510318819,0.478787476496903,0.35057490746508,0.413082158874747,0.403622265222556,0.526778907734679,0.432913933100724,0.435874753570261,0.345459734842609,0.414604374232076,0.328751741303804,0.338300003212761,"aclew","peak_voc_fem"
-0.359160380927808,0.328173986530003,0.334327734854978,0.435899455291533,0.361931027596591,0.428326570759005,0.454612022521376,0.308179822682014,0.371699574216582,0.418186781887256,0.20746729438132,0.366060774306298,0.386020681654592,0.359339119142218,0.258609176185606,0.294047358003687,0.270812206024625,0.369480608631135,0.439775885443058,0.434664021414253,"aclew","peak_voc_mal"
-0.726526225729312,0.691275398374798,0.642146368864242,0.682446838457602,0.660646842232706,0.661933743909577,0.672614760761172,0.647860071486746,0.656819195575261,0.715226361282776,0.657018383009679,0.692561503658954,0.660546687891358,0.665838948042883,0.678081586519312,0.731793957331001,0.693424809282188,0.622180055989578,0.699988567233267,0.687176858495227,"aclew","peak_voc_och"
-0.273874030533774,0.276798705968398,0.290267988439095,0.2245158888768,0.122737494800811,0.17642219257172,0.369507877963337,0.101341108789153,0.318291669946921,0.305476400663953,0.229790904568284,0.271946708241364,0.276068621784893,0.302757853594027,0.211876715636762,0.200807213514723,0.163717529280084,0.251237904460042,0.21445767310465,0.244305748874026,"aclew","peak_wc_adu"
-0.289289866081809,0.42687880717693,0.237923650366628,0.31142985573753,0.265647504509225,0.264279382108978,0.417707015235797,0.221082689005034,0.176398389624276,0.284270430129077,0.244601295143861,0.261288769629833,0.277113086504087,0.342867527155415,0.298436534846134,0.35951894404585,0.294466755066619,0.328145414840984,0.176842648382157,0.179236373197996,"aclew","peak_wc_fem"
-0.396604063019732,0.347932098285405,0.445890647961519,0.409901294596568,0.305629850562203,0.360240843064334,0.348309653522767,0.350124482281819,0.370453919522809,0.386536783903399,0.289178916797921,0.420299263599086,0.348706089440504,0.392029751474004,0.292790966035565,0.31449524483922,0.287474627373882,0.437590647753937,0.390147737376023,0.401962503706135,"aclew","peak_wc_mal"
-0.602765855971752,0.591601025497814,0.585131329142734,0.554538040397133,0.560969905455996,0.566288133856331,0.682652214167633,0.494493134023045,0.601415549144969,0.593173084302415,0.47964397427801,0.489245977756836,0.572048861569404,0.629409447924691,0.580312383175257,0.508404394898247,0.41237468079445,0.544414879828435,0.59520107626349,0.571653670948748,"aclew","sc_adu_ph"
-0.573273985081611,0.632650383439887,0.53100220426767,0.603046626676188,0.574217239292477,0.599019994375792,0.639130482648015,0.498937397890751,0.537423221464872,0.599849447565827,0.504379247490154,0.453424381790442,0.617759893935716,0.620650322249886,0.603446451340835,0.554276144753343,0.538403728541959,0.594307380705437,0.485788254568351,0.536695569300149,"aclew","sc_fem_ph"
-0.531602532884168,0.449378308947586,0.503023513760431,0.544124189519392,0.465641716469777,0.572517645821434,0.586473273311933,0.473938691610058,0.602377531435986,0.428531933947211,0.454024487063811,0.503734170261841,0.523016955440831,0.587137363250247,0.463291467524572,0.448792098217091,0.431771266893056,0.59875548449065,0.568563622768719,0.481015431172966,"aclew","sc_mal_ph"
-0.746586278068021,0.77121830317108,0.742124051374642,0.799163836072466,0.768230610676593,0.772210130935468,0.794224638983847,0.770522266083531,0.743482611608547,0.801417580029406,0.725401743317397,0.709520830091221,0.765547222187404,0.784642144866501,0.797903503156545,0.768204815992387,0.722129505044795,0.6861895373825,0.797726461972983,0.747316128999742,"aclew","simple_CTC_ph"
-0.673646379095523,0.715232288151022,0.670509358008795,0.738099984346126,0.705549087832275,0.703684251835122,0.742848492825551,0.698540639606515,0.675108538658995,0.736029745031282,0.684199208744136,0.673166117470944,0.647619652151815,0.702809350158217,0.736081696694081,0.679876550200399,0.671981097108634,0.640003522342296,0.749544470472719,0.677277783861551,"aclew","voc_chi_ph"
-0.675930487522956,0.720850614218119,0.675590104464335,0.734050252395981,0.708155882607906,0.705784452662108,0.745801767435852,0.708955054734624,0.678233216393321,0.725290793217996,0.68607594154999,0.683942984125458,0.670795547306083,0.739349057617369,0.695671325659947,0.740681318318199,0.673832783254295,0.649923497984495,0.764679594758016,0.690207586950744,"aclew","voc_dur_chi_ph"
-0.587233831651475,0.655141556728145,0.538364397680282,0.578973752460774,0.577581563182814,0.621940692129165,0.611640920206725,0.504276648218334,0.582308534296524,0.596150891544365,0.480478112246889,0.520186395802852,0.656371628719733,0.626972239039726,0.574582885073339,0.538906778025216,0.50592343211571,0.585977951027235,0.511655381605437,0.545431866247534,"aclew","voc_dur_fem_ph"
-0.53893263575591,0.46080634236395,0.493371124430727,0.516467928229057,0.540021414313386,0.584397482298114,0.554841503712223,0.519798659716305,0.631378440630034,0.434180620094973,0.451107862460196,0.547179275642313,0.536023864705449,0.589621444540681,0.389243744716077,0.477776897286382,0.508475992144657,0.626536509295314,0.561926087244379,0.493592363886835,"aclew","voc_dur_mal_ph"
-0.795998416401259,0.739710116389252,0.705361002057855,0.743721273029067,0.734034710713667,0.748499771867327,0.749374579372306,0.730490933141235,0.751881009685,0.785821226049998,0.685086599194831,0.725698923958031,0.762698107999993,0.743074604431548,0.7998655661667,0.771962723776265,0.73836540426003,0.695749495232549,0.811298381806998,0.744521127751451,"aclew","voc_dur_och_ph"
-0.688882448065354,0.721438212837162,0.663467162203227,0.714162214522287,0.679243079746391,0.694725115431442,0.715261944719175,0.639209506415092,0.676010276198951,0.740883743792643,0.553174076191768,0.587645876676525,0.735628924382646,0.71507771462742,0.683257859098494,0.654805325191715,0.618338457743789,0.63552627095178,0.66026753402089,0.641580046331522,"aclew","voc_fem_ph"
-0.594181358233978,0.533121503292765,0.587581595821142,0.537965045438498,0.540350192868084,0.569777446084075,0.583551303161786,0.568734328359307,0.579025190334018,0.549297522195546,0.474720627864056,0.53423329736726,0.552177949644864,0.603763819266943,0.569385719081382,0.500235226481417,0.445994417606141,0.602367926618675,0.663100790600542,0.511464414091085,"aclew","voc_mal_ph"
-0.809751943957268,0.768917071518286,0.743030036586344,0.77643742948251,0.786896333843393,0.784980951499682,0.77786367316368,0.757578950742174,0.776018546289704,0.822103484949907,0.724025690254598,0.756764853743853,0.775707328897988,0.776720859417739,0.833661767830746,0.787699790184081,0.742561807090087,0.725911181015478,0.819619482888169,0.782903290173566,"aclew","voc_och_ph"
-0.600685692226056,0.583378669608035,0.576932766065688,0.550914011558347,0.556870927155878,0.565049567035243,0.675334160383316,0.48451510542201,0.593980926526743,0.585710754369168,0.470772136896618,0.487329478249807,0.565858305989878,0.622344079205779,0.57439262185917,0.498241380991833,0.399046989779135,0.535561329731283,0.589762838399572,0.566622341024663,"aclew","wc_adu_ph"
-0.58583124455614,0.640426304511259,0.529165035542401,0.601309064602556,0.585011508607097,0.597644048389598,0.630993508866571,0.494935478781061,0.537625634960103,0.595218409999896,0.498648376021132,0.470115987041285,0.628727707330127,0.613571474066021,0.611047338774759,0.548736762799333,0.533244629051101,0.602833237310063,0.497030879542929,0.548615403972207,"aclew","wc_fem_ph"
-0.529377848050539,0.461247803739647,0.495164470200468,0.558451044077986,0.462405262665897,0.573010539519864,0.583236280701862,0.491811643802858,0.599928887405093,0.43850026615736,0.446215197273486,0.50449546480716,0.52183088747579,0.583454063952264,0.431122144567761,0.458034903393574,0.426238887100779,0.599662629524191,0.54835167294697,0.477792233842331,"aclew","wc_mal_ph"
-0.529632311790713,0.50991353543193,0.476848077949076,0.454212836791689,0.373403485109999,0.379380039072022,0.495504658240426,0.469426836356486,0.538201337010649,0.386462005890101,0.370927959829278,0.414493488030581,0.473256501592153,0.524673955543172,0.366632292939083,0.437027366338368,0.434441058859438,0.491690693743251,0.4949117149642,0.524055184297892,"lena","avg_cry_voc_dur_chi"
-0.613365963527095,0.590797721262198,0.590290059028701,0.601857635981607,0.46984461956128,0.492618344205665,0.664924700439994,0.541507551738892,0.58570997206447,0.488495411590284,0.640120160462269,0.533483277469867,0.561427164723967,0.609097153378314,0.547442719973307,0.595841968315209,0.51146637334102,0.545796595561058,0.573153969164817,0.527272543504471,"lena","avg_voc_dur_chi"
-0.467713472147796,0.440187055049821,0.381460341467593,0.409715650189157,0.425758974932976,0.435564452301561,0.501289000428368,0.35318192718445,0.494984387654409,0.384300483960001,0.43466947450292,0.417986813566646,0.456269354420228,0.510781606855444,0.438888964306434,0.393842526693264,0.350116951410237,0.375823367272621,0.329241774673279,0.45295600010371,"lena","avg_voc_dur_fem"
-0.383126319137126,0.522266791522094,0.387225980290169,0.488590842977638,0.42981360380937,0.439762213415376,0.414673639737387,0.360533764276348,0.441430008664392,0.315398739596439,0.378899516070739,0.44029679482135,0.419275246192747,0.475049239790438,0.396557326488078,0.407986350016263,0.424873293262353,0.446070568887584,0.371005461405172,0.416868671800925,"lena","avg_voc_dur_mal"
-0.515250311444769,0.511535300921712,0.441579438622757,0.530793783747249,0.444526435137349,0.42972695831144,0.52357144825969,0.518761575174783,0.410708861126395,0.511591820297089,0.557147987356124,0.493228572668439,0.529020500971828,0.547482462568476,0.469758147929877,0.490818452484786,0.53822824871965,0.492454425314826,0.443624234509686,0.507170538703947,"lena","avg_voc_dur_och"
-0.44383087599931,0.429552503013781,0.469335536425704,0.503320332427298,0.539184196903333,0.423025992488875,0.441900688206929,0.461254121042729,0.478530880387744,0.515375507525924,0.44479020224841,0.462751470557121,0.433799365287896,0.471352641917425,0.479276862663711,0.508657943652713,0.520332356410108,0.538061177005251,0.447140555252504,0.4612105144464,"lena","cry_voc_chi_ph"
-0.462304187460461,0.464739133952312,0.446677556684493,0.506228227015972,0.534805732583255,0.423656097392353,0.478007928779967,0.49683350099443,0.495337460750148,0.490963170052345,0.475576051794474,0.458155100016352,0.44588518565551,0.504227983368874,0.510068965047616,0.514676904281489,0.546687690818818,0.528172938017029,0.468930384804564,0.506561510424101,"lena","cry_voc_dur_chi_ph"
-0.672234375100049,0.665570297774445,0.680481658119276,0.710174009370606,0.748019360148181,0.679918223625536,0.69052166557658,0.64650747770882,0.673152030977836,0.681764773142585,0.600991287565016,0.670794096354187,0.690125289816434,0.683586422883392,0.707657673696081,0.650501111352224,0.664111613282136,0.607552449020958,0.753013794884833,0.646820871405072,"lena","lena_CTC_ph"
-0.68435350455467,0.691705372538895,0.692192339085878,0.74049787410876,0.726199654066355,0.742540021514852,0.710624166325196,0.730169624866038,0.636185115366377,0.737143902662371,0.669755384950763,0.684378215475842,0.726365634762151,0.721888052345599,0.695012642606676,0.740844668736371,0.664581302578819,0.620579298682848,0.77320382234601,0.687478191485773,"lena","lena_CVC_ph"
-0.767218499752663,0.785657781944853,0.791708736911874,0.776044230449767,0.758004438482362,0.762657005359924,0.804872408719502,0.820447320703934,0.781960477150493,0.808032213523435,0.724019969679374,0.755742718911543,0.786003444112663,0.763165385749948,0.776104575620864,0.787845766701316,0.808004729918502,0.808369920112386,0.780257184910944,0.784569429866985,"lena","lp_dur"
-0.788840597007571,0.777710953461189,0.809758604075822,0.797376561851807,0.776761775334131,0.801767148716341,0.811075727648039,0.827563496880315,0.785086283006403,0.810050981460553,0.708231627884753,0.770764782000057,0.79608076674845,0.771632362992267,0.788175669283299,0.802178090833132,0.802429384351973,0.823324942874715,0.794638819647339,0.779067911049732,"lena","lp_n"
-0.572461173488456,0.587573522518749,0.599243726062633,0.60349745811331,0.634775755433477,0.595194377025579,0.645758680115769,0.565250802505224,0.507307157446071,0.556765280647613,0.552768506815019,0.568915095425081,0.607167213348118,0.573012504266229,0.552041280205829,0.601819639139692,0.582909830110699,0.504743490479379,0.621807805794401,0.529913035323655,"lena","peak_lena_CTC"
-0.632713145842526,0.571114105130832,0.672887411998941,0.694169430587965,0.597011145886088,0.693973453861277,0.622803747719292,0.631802702421909,0.615596213068432,0.625520612762818,0.594827951683007,0.626333893469088,0.673885512829064,0.631229525826502,0.580741936501286,0.723787169471325,0.63139601417104,0.610214363266078,0.698352956746046,0.573294541836022,"lena","peak_lena_CVC"
-0.492285217015612,0.481341536340802,0.50991636564021,0.579606534938903,0.479500224806278,0.550721175970533,0.548044009524075,0.56770419683685,0.493172421454895,0.559735234464496,0.460222805371566,0.538685431942698,0.487873671558339,0.540445067076667,0.526709444728653,0.624737943918821,0.550926822039089,0.494329616071369,0.58934912058243,0.470953224787133,"lena","peak_voc_chi"
-0.291651042519264,0.354259448436257,0.315051348887315,0.289541055458449,0.294231951248555,0.243389107600351,0.371084693133064,0.273778534567574,0.280190093279418,0.366195101045202,0.321267527573009,0.316631740480627,0.33621591246635,0.424675741739995,0.365894834034242,0.310543708678465,0.305786237570686,0.346802830781434,0.265364899617465,0.181985899501161,"lena","peak_voc_fem"
-0.447074607561509,0.351915368736206,0.468952978720984,0.465799321964889,0.35288529175254,0.397861288863683,0.435127036310904,0.42098289886115,0.366161611943626,0.426630865907204,0.245320086694944,0.475885980549954,0.332857597325262,0.358193053396669,0.337307119448279,0.335396993934712,0.347452595753199,0.379613333982636,0.403160271264769,0.378340452422915,"lena","peak_voc_mal"
-0.574434163733267,0.501251745739978,0.473601451344721,0.516764377245767,0.471941204983913,0.510470849320336,0.505086868596476,0.541066076861353,0.467418770317431,0.515689786031787,0.565919140299027,0.549283399931665,0.495949083700762,0.559554876325464,0.55727032046059,0.530918343897256,0.518086503827639,0.584399942910613,0.568261748579748,0.544271049463898,"lena","peak_voc_och"
-0.280320899451802,0.290196414274575,0.412573647306386,0.304003695106465,0.257074012992511,0.320479590603707,0.334521000316203,0.262852178460729,0.355067929594012,0.318922590167553,0.370257203374036,0.389685946046199,0.264184110988472,0.414936075762327,0.39671388215062,0.258728695642282,0.241802603056404,0.273588805235624,0.237435634894836,0.298551374686732,"lena","peak_wc_adu"
-0.251267737494783,0.294102627114562,0.305096696988737,0.272375382208701,0.219609998987595,0.220835934823682,0.331867173669763,0.252548870871861,0.268557130226001,0.279588882416367,0.336449642702233,0.291779302684401,0.279116195610394,0.395314593406186,0.334705560582131,0.244459813636429,0.224633914799123,0.274397327081167,0.212040634995332,0.19166806327367,"lena","peak_wc_fem"
-0.506962592641561,0.38174822185219,0.518736811673787,0.47175685567434,0.417459873996447,0.415358794621466,0.450256656930805,0.459952989254429,0.462453463641349,0.447393538355017,0.336152436938499,0.510421848998483,0.372866523145206,0.423522194262699,0.32409092183599,0.394627908636973,0.387951359148364,0.416845658549367,0.45399253639714,0.402430485259211,"lena","peak_wc_mal"
-0.469534017270089,0.474310028783182,0.535889934708857,0.387991651714866,0.481278442409662,0.421427391742807,0.499434329957533,0.387199845173854,0.52081033936218,0.502417375108504,0.376090904646438,0.488964047347011,0.465737474265549,0.3799124589765,0.450950505080632,0.5299048375476,0.491823717581158,0.414565345144619,0.332251432780522,0.41172399420958,"lena","standardScore"
-0.555781069294244,0.574656080924958,0.572454635368111,0.640347544740844,0.621982332805476,0.624725775663358,0.6251146151666,0.611780711968396,0.550022063433827,0.647272450663945,0.566830682890886,0.578102802266115,0.586622368450927,0.633521319815065,0.606556870057246,0.667210783441632,0.574393521842023,0.543412827586669,0.675814005061156,0.589792279202405,"lena","voc_chi_ph"
-0.592254811751614,0.598468450308493,0.598477920675071,0.647984761989643,0.595734153544517,0.647687881370591,0.657998407524856,0.595304849186625,0.5819161776125,0.663975293601587,0.622523448553215,0.579471830552569,0.643921947731552,0.609444615484315,0.591920032913183,0.700597738234767,0.561815424163442,0.563667454896813,0.615748941099511,0.571193021184931,"lena","voc_dur_chi_ph"
-0.587905466316564,0.622126038352705,0.515078088443244,0.461831346707623,0.590986982762626,0.574085144281828,0.543811216207794,0.479930242586252,0.475744264878332,0.48446753281033,0.436121373691285,0.498386045372399,0.595364179870183,0.539333781051454,0.575274698385866,0.493459958630389,0.497294973756241,0.505955398714571,0.434341580524769,0.457174631229745,"lena","voc_dur_fem_ph"
-0.499683488581197,0.493699892739207,0.512651627760294,0.458448485050224,0.482439547788361,0.552164040996873,0.570566545510991,0.48576467254944,0.622201305010855,0.45255720881485,0.370308574492648,0.555894479325716,0.505747118590651,0.558074595357549,0.371506436784858,0.447291251499663,0.448346773668459,0.565454429964638,0.547149213890819,0.498295901667961,"lena","voc_dur_mal_ph"
-0.755614235998673,0.650694882362997,0.62855442618791,0.665629715929489,0.656148368524546,0.666070397104876,0.681928356912807,0.661362624032417,0.641783636378652,0.693053432157072,0.700550155840917,0.694047396628594,0.647287006748031,0.745159200117537,0.707351444975424,0.665587820793395,0.639804740375592,0.717439028455527,0.688596524815987,0.663249670937588,"lena","voc_dur_och_ph"
-0.585735902433246,0.619649445238461,0.574143825433242,0.549585752587865,0.603106187748214,0.608246263192463,0.617321006851306,0.488874784210349,0.504983504810881,0.585484443528091,0.432139067577807,0.452475178971631,0.617673656040587,0.59026001585117,0.593023791705151,0.511490767825073,0.548837402433584,0.501461110502677,0.45133555464682,0.457997782246236,"lena","voc_fem_ph"
-0.39803426932379,0.464694770367648,0.476968505385761,0.458397932435309,0.483671928563218,0.516737618005379,0.556707498050988,0.496051826797976,0.604093201974883,0.440180543251438,0.384558078555418,0.531145430796513,0.458559615049563,0.517166584615878,0.38923380951806,0.426151147884115,0.453493653452529,0.504490105283025,0.513550457033679,0.492178278439302,"lena","voc_mal_ph"
-0.735458043570209,0.670485682932091,0.62279177027049,0.65882283227438,0.637231069429586,0.666039904158141,0.67259610185085,0.651464366707324,0.624706456896268,0.683017336398496,0.69065536932179,0.707887865274507,0.641871964018487,0.715937223227943,0.700714943919076,0.641112495125127,0.652424114848894,0.725968356308026,0.674987169276903,0.669837751536955,"lena","voc_och_ph"
-0.5550460859098,0.500211183281753,0.545498944822827,0.485966979637966,0.571916087253262,0.5686524355063,0.554386810898866,0.459918836007674,0.535914954188888,0.46990106849363,0.463858570196812,0.549450830571755,0.489202471154046,0.523381357318158,0.571981384982405,0.515633061995623,0.455773190915381,0.501345011720658,0.548379313262923,0.378841306971482,"lena","wc_adu_ph"
-0.578111731868861,0.61410071551278,0.544768894913735,0.487146898852977,0.595041844227047,0.603087745469636,0.557189448383626,0.496475614052111,0.50466635661172,0.504785565560793,0.445221949650908,0.49083363054541,0.615498074775479,0.58098821760619,0.583080727556477,0.510979388096872,0.508459882727958,0.512480920427094,0.439729356791908,0.458586384486856,"lena","wc_fem_ph"
-0.391447624662368,0.491934656649314,0.50414551641364,0.481480198463865,0.534522418802732,0.543336018613237,0.532944605653388,0.53402982065386,0.633487537860234,0.432467852529957,0.4522310298169,0.48317448607348,0.485420261097407,0.529765604318049,0.437738360545724,0.413897963101722,0.501858921601679,0.53701471665186,0.460737651797721,0.470969004127799,"lena","wc_mal_ph"
-0.617501415827757,0.663319494714944,0.595437317061506,0.622273437284939,0.581876182126086,0.659260739384003,0.627374515892049,0.598554128233223,0.64188058582628,0.612855302556107,0.583712273690216,0.553938222740731,0.61785712684216,0.624597879497182,0.565402476925473,0.67930778154596,0.534537309586632,0.573950055986047,0.61659920461686,0.560983916954779,"aclew","avg_can_voc_dur_chi"
-0.583500863342014,0.56341739451768,0.586839250414721,0.530343063630888,0.554115872095784,0.544047669288385,0.640942137904335,0.600910963391631,0.52406476423949,0.521060017304864,0.565862866633694,0.515956300954213,0.610912919563559,0.586671495118455,0.573345756475579,0.649623281769695,0.532932093993799,0.540731922992143,0.589930713232514,0.567334897257489,"aclew","avg_cry_voc_dur_chi"
-0.555009670908681,0.583586399095823,0.491305475613682,0.502663957163792,0.505588369564365,0.540648934813805,0.574892671390481,0.613027554316833,0.545039958910585,0.562042078447267,0.483960519625005,0.56292834430224,0.53756987199686,0.506960007842416,0.594164858507186,0.581320093442512,0.568360784084447,0.459811495892549,0.500742946339456,0.470961674146913,"aclew","avg_non_can_voc_dur_chi"
-0.603108847110179,0.652438364589894,0.619188686590074,0.642399089320062,0.65842882365645,0.628077666552184,0.676565438233796,0.641155463242649,0.605347114856744,0.596709990276701,0.546027881007189,0.621518081630193,0.614427187645252,0.68553115316339,0.57921358173119,0.679541104475961,0.581186408402128,0.581900816147946,0.615389914174077,0.59510584204849,"aclew","avg_voc_dur_chi"
-0.437061331612535,0.546607098247521,0.373498857446771,0.418780777620025,0.486583168204571,0.485526468828453,0.500248332630137,0.383019986665134,0.5237449469787,0.506165076286803,0.513812608121882,0.520073768973325,0.502833972171299,0.586500874848478,0.418710411881669,0.470733909117366,0.458622236437926,0.525768583846386,0.411751557541578,0.542386526688872,"aclew","avg_voc_dur_fem"
-0.34205690363917,0.442880406754636,0.519796391490302,0.491433083689546,0.468568416952827,0.483287423617567,0.449701427795879,0.489106714820486,0.504526586974027,0.515805466309508,0.395366833465495,0.527638511180824,0.472939278568,0.487421918701635,0.40619054421642,0.502733863055106,0.577722507790708,0.549443195706567,0.534917485612386,0.488881280235185,"aclew","avg_voc_dur_mal"
-0.690350214729103,0.650071285856013,0.648790251628807,0.685747671342945,0.660204518452614,0.645513680034275,0.601379781603351,0.690301974076448,0.653708191150906,0.698600635959409,0.658003344709924,0.637830920558018,0.672432844305826,0.689311378727803,0.692969204891956,0.68083328495866,0.646643851678661,0.66071668576338,0.725300571699441,0.694753701435535,"aclew","avg_voc_dur_och"
-0.801098123910249,0.779013352988971,0.739309279186926,0.812264614582686,0.820490640570279,0.787869329120326,0.804578695429789,0.795196648952323,0.78160177755542,0.796058787084905,0.782002152392633,0.799422224312673,0.792343953913779,0.809537297193832,0.819508962954372,0.791813922131436,0.805976073193809,0.758760593855271,0.824498821784712,0.817715434497524,"aclew","can_voc_chi_ph"
-0.762470229493643,0.760000245822926,0.699918368487636,0.7814471448864,0.769120228379514,0.745673874127857,0.76819292089,0.780994466353667,0.735448414393642,0.749778059301535,0.691253280716873,0.726817985520017,0.770013451343508,0.800660838581383,0.783022074590453,0.777375639660172,0.754319097245703,0.740281325010194,0.780828790264366,0.757591807390448,"aclew","can_voc_dur_chi_ph"
-0.760253363427766,0.666910812388086,0.659362662581621,0.710705453102384,0.744097775127932,0.742399802864205,0.730580644306645,0.666224433531127,0.691724237102415,0.690060352389976,0.63162373491638,0.627339066869848,0.643657411593276,0.709963336506257,0.723311200331181,0.706396216335111,0.646481580854562,0.71157195184044,0.740942673920095,0.685458825354419,"aclew","cp_dur"
-0.796244432152419,0.718035738635239,0.705536247486034,0.773229185022203,0.768593897882942,0.762030442673198,0.766239741502578,0.745872331851968,0.738039954800821,0.736774027262459,0.681928804752833,0.69781818772845,0.690954105153625,0.764113431894709,0.777501523635639,0.743782449988914,0.720859995015874,0.757112440790421,0.782459884762755,0.752529698025885,"aclew","cp_n"
-0.495030803907562,0.493315671118634,0.466908677080292,0.544546150456564,0.592464845528805,0.526870822130468,0.507121518862983,0.465219236256029,0.537984208662909,0.559433926026323,0.44642297425869,0.511674082665402,0.447847970067897,0.45140142326667,0.587207879262884,0.536446404542855,0.523138874003261,0.399751909172375,0.491596140198644,0.499115356934284,"aclew","cry_voc_chi_ph"
-0.522852457133244,0.563606605189523,0.536065093058066,0.518244689312383,0.591430063293195,0.576739790110789,0.57348840350449,0.480528183779994,0.543601067235463,0.60459359415663,0.483354523868317,0.549601762469355,0.520502294280392,0.495831121913933,0.585586584740731,0.551534940291076,0.533525741661617,0.473438780827435,0.522459572580735,0.535520993513013,"aclew","cry_voc_dur_chi_ph"
-0.556364657277924,0.569096775906363,0.518896018970686,0.483206378579904,0.412584940143778,0.452978952178015,0.529967640673194,0.502266717148032,0.519869179157158,0.53625436658587,0.443245200564825,0.569927420967691,0.483783413517478,0.482646495691115,0.480663513770527,0.475504710413362,0.479923456658723,0.536136441604141,0.435041465795627,0.51177224193138,"aclew","lp_dur"
-0.515688788752308,0.542309052409672,0.490944675718267,0.454168071377254,0.464492494033396,0.420163560392504,0.501343153428419,0.473810449400848,0.509315367811411,0.555283112318298,0.486729108925141,0.538496557852592,0.50761075754214,0.495027485615702,0.465471667315357,0.461759357009416,0.504340523506622,0.443538629718593,0.349014803171965,0.480482004931781,"aclew","lp_n"
-0.626252117648963,0.729607495583924,0.648718616414106,0.700763811661396,0.678249383989521,0.650267874674998,0.723975370868268,0.659406573068626,0.642934155204726,0.708603793271601,0.658954796928821,0.621566388916718,0.599396049864291,0.655880138872611,0.704927667753009,0.633099860445213,0.684112902936648,0.661367703728398,0.703569764750846,0.672777715490825,"aclew","non_can_voc_chi_ph"
-0.606643263833061,0.720250644994242,0.615356375929576,0.674467104444859,0.642668718051216,0.620213743052357,0.70695019700991,0.660871545870006,0.612727805012909,0.676839045197003,0.624730665276679,0.593197917635005,0.586591288373325,0.628277433179362,0.632578512513045,0.633013823411453,0.663079910731587,0.657986525776276,0.677824118397784,0.649788629643789,"aclew","non_can_voc_dur_chi_ph"
-0.603631829210714,0.589403017293206,0.583489686779984,0.557454998084553,0.5622341291018,0.570325326234475,0.680143810031648,0.492108700494507,0.598945078291263,0.593056921755887,0.474954664335555,0.488994168739298,0.573399275237268,0.628100573723797,0.578371591100778,0.504220487657207,0.406347606893138,0.541085068591046,0.59534763443567,0.570178293761996,"aclew","pc_adu_ph"
-0.59139149232511,0.645371698265858,0.53487390073359,0.608837514909207,0.591343959011758,0.602251499086039,0.636294334166652,0.502163725649431,0.544056168874796,0.602650441700476,0.504852930528011,0.472918712607011,0.634230978489406,0.619748345115937,0.617933639180531,0.555215074753585,0.538485680309712,0.607191897941813,0.505716158922985,0.555343137259266,"aclew","pc_fem_ph"
-0.531033629283407,0.463842094476255,0.497435361386951,0.561005370850983,0.464803856793662,0.572869413007277,0.58532951270304,0.492838455515492,0.600794166892415,0.441302245978755,0.448343664919459,0.503443631378163,0.523000407610729,0.553108947457866,0.463166867942332,0.458249936465154,0.428231903601725,0.599019989374238,0.568229174789154,0.479634677664313,"aclew","pc_mal_ph"
-0.655520697218532,0.645393211705228,0.653142749931534,0.683795727648503,0.630409221101938,0.663659264132379,0.624744272906907,0.691971067322469,0.601760190265013,0.689912919003522,0.645533089162996,0.639818035176769,0.623261300987304,0.661852786671964,0.662873468765367,0.689883562057284,0.640633926131661,0.63826108154645,0.678909879006097,0.612686438653602,"aclew","peak_simple_CTC"
-0.632554970688185,0.594326347144652,0.612528448465804,0.668294316271852,0.607134998381571,0.661961790828059,0.632377353348013,0.666914121713413,0.561309213630403,0.643947995938596,0.616113065811954,0.651742583718507,0.596016580558977,0.586952341583998,0.624470252303504,0.649329965614379,0.645318346140761,0.584838017287346,0.677998715975494,0.550460650131994,"aclew","peak_voc_chi"
-0.417507160385446,0.451192269010943,0.329610048324672,0.465424411794533,0.362201802584972,0.343343561916756,0.414278559585331,0.38141275458602,0.341467510318819,0.478787476496903,0.35057490746508,0.413082158874747,0.403622265222556,0.526778907734679,0.432913933100724,0.435874753570261,0.345459734842609,0.414604374232076,0.328751741303804,0.338300003212761,"aclew","peak_voc_fem"
-0.359160380927808,0.328173986530003,0.334327734854978,0.435899455291533,0.361931027596591,0.428326570759005,0.454612022521376,0.308179822682014,0.371699574216582,0.418186781887256,0.20746729438132,0.366060774306298,0.386020681654592,0.359339119142218,0.258609176185606,0.294047358003687,0.270812206024625,0.369480608631135,0.439775885443058,0.434664021414253,"aclew","peak_voc_mal"
-0.726526225729312,0.691275398374798,0.642146368864242,0.682446838457602,0.660646842232706,0.661933743909577,0.672614760761172,0.647860071486746,0.656819195575261,0.715226361282776,0.657018383009679,0.692561503658954,0.660546687891358,0.665838948042883,0.678081586519312,0.731793957331001,0.693424809282188,0.622180055989578,0.699988567233267,0.687176858495227,"aclew","peak_voc_och"
-0.273874030533774,0.276798705968398,0.290267988439095,0.2245158888768,0.122737494800811,0.17642219257172,0.369507877963337,0.101341108789153,0.318291669946921,0.305476400663953,0.229790904568284,0.271946708241364,0.276068621784893,0.302757853594027,0.211876715636762,0.200807213514723,0.163717529280084,0.251237904460042,0.21445767310465,0.244305748874026,"aclew","peak_wc_adu"
-0.289289866081809,0.42687880717693,0.237923650366628,0.31142985573753,0.265647504509225,0.264279382108978,0.417707015235797,0.221082689005034,0.176398389624276,0.284270430129077,0.244601295143861,0.261288769629833,0.277113086504087,0.342867527155415,0.298436534846134,0.35951894404585,0.294466755066619,0.328145414840984,0.176842648382157,0.179236373197996,"aclew","peak_wc_fem"
-0.396604063019732,0.347932098285405,0.445890647961519,0.409901294596568,0.305629850562203,0.360240843064334,0.348309653522767,0.350124482281819,0.370453919522809,0.386536783903399,0.289178916797921,0.420299263599086,0.348706089440504,0.392029751474004,0.292790966035565,0.31449524483922,0.287474627373882,0.437590647753937,0.390147737376023,0.401962503706135,"aclew","peak_wc_mal"
-0.602765855971752,0.591601025497814,0.585131329142734,0.554538040397133,0.560969905455996,0.566288133856331,0.682652214167633,0.494493134023045,0.601415549144969,0.593173084302415,0.47964397427801,0.489245977756836,0.572048861569404,0.629409447924691,0.580312383175257,0.508404394898247,0.41237468079445,0.544414879828435,0.59520107626349,0.571653670948748,"aclew","sc_adu_ph"
-0.573273985081611,0.632650383439887,0.53100220426767,0.603046626676188,0.574217239292477,0.599019994375792,0.639130482648015,0.498937397890751,0.537423221464872,0.599849447565827,0.504379247490154,0.453424381790442,0.617759893935716,0.620650322249886,0.603446451340835,0.554276144753343,0.538403728541959,0.594307380705437,0.485788254568351,0.536695569300149,"aclew","sc_fem_ph"
-0.531602532884168,0.449378308947586,0.503023513760431,0.544124189519392,0.465641716469777,0.572517645821434,0.586473273311933,0.473938691610058,0.602377531435986,0.428531933947211,0.454024487063811,0.503734170261841,0.523016955440831,0.587137363250247,0.463291467524572,0.448792098217091,0.431771266893056,0.59875548449065,0.568563622768719,0.481015431172966,"aclew","sc_mal_ph"
-0.746586278068021,0.77121830317108,0.742124051374642,0.799163836072466,0.768230610676593,0.772210130935468,0.794224638983847,0.770522266083531,0.743482611608547,0.801417580029406,0.725401743317397,0.709520830091221,0.765547222187404,0.784642144866501,0.797903503156545,0.768204815992387,0.722129505044795,0.6861895373825,0.797726461972983,0.747316128999742,"aclew","simple_CTC_ph"
-0.673646379095523,0.715232288151022,0.670509358008795,0.738099984346126,0.705549087832275,0.703684251835122,0.742848492825551,0.698540639606515,0.675108538658995,0.736029745031282,0.684199208744136,0.673166117470944,0.647619652151815,0.702809350158217,0.736081696694081,0.679876550200399,0.671981097108634,0.640003522342296,0.749544470472719,0.677277783861551,"aclew","voc_chi_ph"
-0.675930487522956,0.720850614218119,0.675590104464335,0.734050252395981,0.708155882607906,0.705784452662108,0.745801767435852,0.708955054734624,0.678233216393321,0.725290793217996,0.68607594154999,0.683942984125458,0.670795547306083,0.739349057617369,0.695671325659947,0.740681318318199,0.673832783254295,0.649923497984495,0.764679594758016,0.690207586950744,"aclew","voc_dur_chi_ph"
-0.587233831651475,0.655141556728145,0.538364397680282,0.578973752460774,0.577581563182814,0.621940692129165,0.611640920206725,0.504276648218334,0.582308534296524,0.596150891544365,0.480478112246889,0.520186395802852,0.656371628719733,0.626972239039726,0.574582885073339,0.538906778025216,0.50592343211571,0.585977951027235,0.511655381605437,0.545431866247534,"aclew","voc_dur_fem_ph"
-0.53893263575591,0.46080634236395,0.493371124430727,0.516467928229057,0.540021414313386,0.584397482298114,0.554841503712223,0.519798659716305,0.631378440630034,0.434180620094973,0.451107862460196,0.547179275642313,0.536023864705449,0.589621444540681,0.389243744716077,0.477776897286382,0.508475992144657,0.626536509295314,0.561926087244379,0.493592363886835,"aclew","voc_dur_mal_ph"
-0.795998416401259,0.739710116389252,0.705361002057855,0.743721273029067,0.734034710713667,0.748499771867327,0.749374579372306,0.730490933141235,0.751881009685,0.785821226049998,0.685086599194831,0.725698923958031,0.762698107999993,0.743074604431548,0.7998655661667,0.771962723776265,0.73836540426003,0.695749495232549,0.811298381806998,0.744521127751451,"aclew","voc_dur_och_ph"
-0.688882448065354,0.721438212837162,0.663467162203227,0.714162214522287,0.679243079746391,0.694725115431442,0.715261944719175,0.639209506415092,0.676010276198951,0.740883743792643,0.553174076191768,0.587645876676525,0.735628924382646,0.71507771462742,0.683257859098494,0.654805325191715,0.618338457743789,0.63552627095178,0.66026753402089,0.641580046331522,"aclew","voc_fem_ph"
-0.594181358233978,0.533121503292765,0.587581595821142,0.537965045438498,0.540350192868084,0.569777446084075,0.583551303161786,0.568734328359307,0.579025190334018,0.549297522195546,0.474720627864056,0.53423329736726,0.552177949644864,0.603763819266943,0.569385719081382,0.500235226481417,0.445994417606141,0.602367926618675,0.663100790600542,0.511464414091085,"aclew","voc_mal_ph"
-0.809751943957268,0.768917071518286,0.743030036586344,0.77643742948251,0.786896333843393,0.784980951499682,0.77786367316368,0.757578950742174,0.776018546289704,0.822103484949907,0.724025690254598,0.756764853743853,0.775707328897988,0.776720859417739,0.833661767830746,0.787699790184081,0.742561807090087,0.725911181015478,0.819619482888169,0.782903290173566,"aclew","voc_och_ph"
-0.600685692226056,0.583378669608035,0.576932766065688,0.550914011558347,0.556870927155878,0.565049567035243,0.675334160383316,0.48451510542201,0.593980926526743,0.585710754369168,0.470772136896618,0.487329478249807,0.565858305989878,0.622344079205779,0.57439262185917,0.498241380991833,0.399046989779135,0.535561329731283,0.589762838399572,0.566622341024663,"aclew","wc_adu_ph"
-0.58583124455614,0.640426304511259,0.529165035542401,0.601309064602556,0.585011508607097,0.597644048389598,0.630993508866571,0.494935478781061,0.537625634960103,0.595218409999896,0.498648376021132,0.470115987041285,0.628727707330127,0.613571474066021,0.611047338774759,0.548736762799333,0.533244629051101,0.602833237310063,0.497030879542929,0.548615403972207,"aclew","wc_fem_ph"
-0.529377848050539,0.461247803739647,0.495164470200468,0.558451044077986,0.462405262665897,0.573010539519864,0.583236280701862,0.491811643802858,0.599928887405093,0.43850026615736,0.446215197273486,0.50449546480716,0.52183088747579,0.583454063952264,0.431122144567761,0.458034903393574,0.426238887100779,0.599662629524191,0.54835167294697,0.477792233842331,"aclew","wc_mal_ph"
-0.529632311790713,0.50991353543193,0.476848077949076,0.454212836791689,0.373403485109999,0.379380039072022,0.495504658240426,0.469426836356486,0.538201337010649,0.386462005890101,0.370927959829278,0.414493488030581,0.473256501592153,0.524673955543172,0.366632292939083,0.437027366338368,0.434441058859438,0.491690693743251,0.4949117149642,0.524055184297892,"lena","avg_cry_voc_dur_chi"
-0.613365963527095,0.590797721262198,0.590290059028701,0.601857635981607,0.46984461956128,0.492618344205665,0.664924700439994,0.541507551738892,0.58570997206447,0.488495411590284,0.640120160462269,0.533483277469867,0.561427164723967,0.609097153378314,0.547442719973307,0.595841968315209,0.51146637334102,0.545796595561058,0.573153969164817,0.527272543504471,"lena","avg_voc_dur_chi"
-0.467713472147796,0.440187055049821,0.381460341467593,0.409715650189157,0.425758974932976,0.435564452301561,0.501289000428368,0.35318192718445,0.494984387654409,0.384300483960001,0.43466947450292,0.417986813566646,0.456269354420228,0.510781606855444,0.438888964306434,0.393842526693264,0.350116951410237,0.375823367272621,0.329241774673279,0.45295600010371,"lena","avg_voc_dur_fem"
-0.383126319137126,0.522266791522094,0.387225980290169,0.488590842977638,0.42981360380937,0.439762213415376,0.414673639737387,0.360533764276348,0.441430008664392,0.315398739596439,0.378899516070739,0.44029679482135,0.419275246192747,0.475049239790438,0.396557326488078,0.407986350016263,0.424873293262353,0.446070568887584,0.371005461405172,0.416868671800925,"lena","avg_voc_dur_mal"
-0.515250311444769,0.511535300921712,0.441579438622757,0.530793783747249,0.444526435137349,0.42972695831144,0.52357144825969,0.518761575174783,0.410708861126395,0.511591820297089,0.557147987356124,0.493228572668439,0.529020500971828,0.547482462568476,0.469758147929877,0.490818452484786,0.53822824871965,0.492454425314826,0.443624234509686,0.507170538703947,"lena","avg_voc_dur_och"
-0.44383087599931,0.429552503013781,0.469335536425704,0.503320332427298,0.539184196903333,0.423025992488875,0.441900688206929,0.461254121042729,0.478530880387744,0.515375507525924,0.44479020224841,0.462751470557121,0.433799365287896,0.471352641917425,0.479276862663711,0.508657943652713,0.520332356410108,0.538061177005251,0.447140555252504,0.4612105144464,"lena","cry_voc_chi_ph"
-0.462304187460461,0.464739133952312,0.446677556684493,0.506228227015972,0.534805732583255,0.423656097392353,0.478007928779967,0.49683350099443,0.495337460750148,0.490963170052345,0.475576051794474,0.458155100016352,0.44588518565551,0.504227983368874,0.510068965047616,0.514676904281489,0.546687690818818,0.528172938017029,0.468930384804564,0.506561510424101,"lena","cry_voc_dur_chi_ph"
-0.672234375100049,0.665570297774445,0.680481658119276,0.710174009370606,0.748019360148181,0.679918223625536,0.69052166557658,0.64650747770882,0.673152030977836,0.681764773142585,0.600991287565016,0.670794096354187,0.690125289816434,0.683586422883392,0.707657673696081,0.650501111352224,0.664111613282136,0.607552449020958,0.753013794884833,0.646820871405072,"lena","lena_CTC_ph"
-0.68435350455467,0.691705372538895,0.692192339085878,0.74049787410876,0.726199654066355,0.742540021514852,0.710624166325196,0.730169624866038,0.636185115366377,0.737143902662371,0.669755384950763,0.684378215475842,0.726365634762151,0.721888052345599,0.695012642606676,0.740844668736371,0.664581302578819,0.620579298682848,0.77320382234601,0.687478191485773,"lena","lena_CVC_ph"
-0.767218499752663,0.785657781944853,0.791708736911874,0.776044230449767,0.758004438482362,0.762657005359924,0.804872408719502,0.820447320703934,0.781960477150493,0.808032213523435,0.724019969679374,0.755742718911543,0.786003444112663,0.763165385749948,0.776104575620864,0.787845766701316,0.808004729918502,0.808369920112386,0.780257184910944,0.784569429866985,"lena","lp_dur"
-0.788840597007571,0.777710953461189,0.809758604075822,0.797376561851807,0.776761775334131,0.801767148716341,0.811075727648039,0.827563496880315,0.785086283006403,0.810050981460553,0.708231627884753,0.770764782000057,0.79608076674845,0.771632362992267,0.788175669283299,0.802178090833132,0.802429384351973,0.823324942874715,0.794638819647339,0.779067911049732,"lena","lp_n"
-0.572461173488456,0.587573522518749,0.599243726062633,0.60349745811331,0.634775755433477,0.595194377025579,0.645758680115769,0.565250802505224,0.507307157446071,0.556765280647613,0.552768506815019,0.568915095425081,0.607167213348118,0.573012504266229,0.552041280205829,0.601819639139692,0.582909830110699,0.504743490479379,0.621807805794401,0.529913035323655,"lena","peak_lena_CTC"
-0.632713145842526,0.571114105130832,0.672887411998941,0.694169430587965,0.597011145886088,0.693973453861277,0.622803747719292,0.631802702421909,0.615596213068432,0.625520612762818,0.594827951683007,0.626333893469088,0.673885512829064,0.631229525826502,0.580741936501286,0.723787169471325,0.63139601417104,0.610214363266078,0.698352956746046,0.573294541836022,"lena","peak_lena_CVC"
-0.492285217015612,0.481341536340802,0.50991636564021,0.579606534938903,0.479500224806278,0.550721175970533,0.548044009524075,0.56770419683685,0.493172421454895,0.559735234464496,0.460222805371566,0.538685431942698,0.487873671558339,0.540445067076667,0.526709444728653,0.624737943918821,0.550926822039089,0.494329616071369,0.58934912058243,0.470953224787133,"lena","peak_voc_chi"
-0.291651042519264,0.354259448436257,0.315051348887315,0.289541055458449,0.294231951248555,0.243389107600351,0.371084693133064,0.273778534567574,0.280190093279418,0.366195101045202,0.321267527573009,0.316631740480627,0.33621591246635,0.424675741739995,0.365894834034242,0.310543708678465,0.305786237570686,0.346802830781434,0.265364899617465,0.181985899501161,"lena","peak_voc_fem"
-0.447074607561509,0.351915368736206,0.468952978720984,0.465799321964889,0.35288529175254,0.397861288863683,0.435127036310904,0.42098289886115,0.366161611943626,0.426630865907204,0.245320086694944,0.475885980549954,0.332857597325262,0.358193053396669,0.337307119448279,0.335396993934712,0.347452595753199,0.379613333982636,0.403160271264769,0.378340452422915,"lena","peak_voc_mal"
-0.574434163733267,0.501251745739978,0.473601451344721,0.516764377245767,0.471941204983913,0.510470849320336,0.505086868596476,0.541066076861353,0.467418770317431,0.515689786031787,0.565919140299027,0.549283399931665,0.495949083700762,0.559554876325464,0.55727032046059,0.530918343897256,0.518086503827639,0.584399942910613,0.568261748579748,0.544271049463898,"lena","peak_voc_och"
-0.280320899451802,0.290196414274575,0.412573647306386,0.304003695106465,0.257074012992511,0.320479590603707,0.334521000316203,0.262852178460729,0.355067929594012,0.318922590167553,0.370257203374036,0.389685946046199,0.264184110988472,0.414936075762327,0.39671388215062,0.258728695642282,0.241802603056404,0.273588805235624,0.237435634894836,0.298551374686732,"lena","peak_wc_adu"
-0.251267737494783,0.294102627114562,0.305096696988737,0.272375382208701,0.219609998987595,0.220835934823682,0.331867173669763,0.252548870871861,0.268557130226001,0.279588882416367,0.336449642702233,0.291779302684401,0.279116195610394,0.395314593406186,0.334705560582131,0.244459813636429,0.224633914799123,0.274397327081167,0.212040634995332,0.19166806327367,"lena","peak_wc_fem"
-0.506962592641561,0.38174822185219,0.518736811673787,0.47175685567434,0.417459873996447,0.415358794621466,0.450256656930805,0.459952989254429,0.462453463641349,0.447393538355017,0.336152436938499,0.510421848998483,0.372866523145206,0.423522194262699,0.32409092183599,0.394627908636973,0.387951359148364,0.416845658549367,0.45399253639714,0.402430485259211,"lena","peak_wc_mal"
-0.469534017270089,0.474310028783182,0.535889934708857,0.387991651714866,0.481278442409662,0.421427391742807,0.499434329957533,0.387199845173854,0.52081033936218,0.502417375108504,0.376090904646438,0.488964047347011,0.465737474265549,0.3799124589765,0.450950505080632,0.5299048375476,0.491823717581158,0.414565345144619,0.332251432780522,0.41172399420958,"lena","standardScore"
-0.555781069294244,0.574656080924958,0.572454635368111,0.640347544740844,0.621982332805476,0.624725775663358,0.6251146151666,0.611780711968396,0.550022063433827,0.647272450663945,0.566830682890886,0.578102802266115,0.586622368450927,0.633521319815065,0.606556870057246,0.667210783441632,0.574393521842023,0.543412827586669,0.675814005061156,0.589792279202405,"lena","voc_chi_ph"
-0.592254811751614,0.598468450308493,0.598477920675071,0.647984761989643,0.595734153544517,0.647687881370591,0.657998407524856,0.595304849186625,0.5819161776125,0.663975293601587,0.622523448553215,0.579471830552569,0.643921947731552,0.609444615484315,0.591920032913183,0.700597738234767,0.561815424163442,0.563667454896813,0.615748941099511,0.571193021184931,"lena","voc_dur_chi_ph"
-0.587905466316564,0.622126038352705,0.515078088443244,0.461831346707623,0.590986982762626,0.574085144281828,0.543811216207794,0.479930242586252,0.475744264878332,0.48446753281033,0.436121373691285,0.498386045372399,0.595364179870183,0.539333781051454,0.575274698385866,0.493459958630389,0.497294973756241,0.505955398714571,0.434341580524769,0.457174631229745,"lena","voc_dur_fem_ph"
-0.499683488581197,0.493699892739207,0.512651627760294,0.458448485050224,0.482439547788361,0.552164040996873,0.570566545510991,0.48576467254944,0.622201305010855,0.45255720881485,0.370308574492648,0.555894479325716,0.505747118590651,0.558074595357549,0.371506436784858,0.447291251499663,0.448346773668459,0.565454429964638,0.547149213890819,0.498295901667961,"lena","voc_dur_mal_ph"
-0.755614235998673,0.650694882362997,0.62855442618791,0.665629715929489,0.656148368524546,0.666070397104876,0.681928356912807,0.661362624032417,0.641783636378652,0.693053432157072,0.700550155840917,0.694047396628594,0.647287006748031,0.745159200117537,0.707351444975424,0.665587820793395,0.639804740375592,0.717439028455527,0.688596524815987,0.663249670937588,"lena","voc_dur_och_ph"
-0.585735902433246,0.619649445238461,0.574143825433242,0.549585752587865,0.603106187748214,0.608246263192463,0.617321006851306,0.488874784210349,0.504983504810881,0.585484443528091,0.432139067577807,0.452475178971631,0.617673656040587,0.59026001585117,0.593023791705151,0.511490767825073,0.548837402433584,0.501461110502677,0.45133555464682,0.457997782246236,"lena","voc_fem_ph"
-0.39803426932379,0.464694770367648,0.476968505385761,0.458397932435309,0.483671928563218,0.516737618005379,0.556707498050988,0.496051826797976,0.604093201974883,0.440180543251438,0.384558078555418,0.531145430796513,0.458559615049563,0.517166584615878,0.38923380951806,0.426151147884115,0.453493653452529,0.504490105283025,0.513550457033679,0.492178278439302,"lena","voc_mal_ph"
-0.735458043570209,0.670485682932091,0.62279177027049,0.65882283227438,0.637231069429586,0.666039904158141,0.67259610185085,0.651464366707324,0.624706456896268,0.683017336398496,0.69065536932179,0.707887865274507,0.641871964018487,0.715937223227943,0.700714943919076,0.641112495125127,0.652424114848894,0.725968356308026,0.674987169276903,0.669837751536955,"lena","voc_och_ph"
-0.5550460859098,0.500211183281753,0.545498944822827,0.485966979637966,0.571916087253262,0.5686524355063,0.554386810898866,0.459918836007674,0.535914954188888,0.46990106849363,0.463858570196812,0.549450830571755,0.489202471154046,0.523381357318158,0.571981384982405,0.515633061995623,0.455773190915381,0.501345011720658,0.548379313262923,0.378841306971482,"lena","wc_adu_ph"
-0.578111731868861,0.61410071551278,0.544768894913735,0.487146898852977,0.595041844227047,0.603087745469636,0.557189448383626,0.496475614052111,0.50466635661172,0.504785565560793,0.445221949650908,0.49083363054541,0.615498074775479,0.58098821760619,0.583080727556477,0.510979388096872,0.508459882727958,0.512480920427094,0.439729356791908,0.458586384486856,"lena","wc_fem_ph"
-0.391447624662368,0.491934656649314,0.50414551641364,0.481480198463865,0.534522418802732,0.543336018613237,0.532944605653388,0.53402982065386,0.633487537860234,0.432467852529957,0.4522310298169,0.48317448607348,0.485420261097407,0.529765604318049,0.437738360545724,0.413897963101722,0.501858921601679,0.53701471665186,0.460737651797721,0.470969004127799,"lena","wc_mal_ph"
-0.617501415827757,0.663319494714944,0.595437317061506,0.622273437284939,0.581876182126086,0.659260739384003,0.627374515892049,0.598554128233223,0.64188058582628,0.612855302556107,0.583712273690216,0.553938222740731,0.61785712684216,0.624597879497182,0.565402476925473,0.67930778154596,0.534537309586632,0.573950055986047,0.61659920461686,0.560983916954779,"aclew","avg_can_voc_dur_chi"
-0.583500863342014,0.56341739451768,0.586839250414721,0.530343063630888,0.554115872095784,0.544047669288385,0.640942137904335,0.600910963391631,0.52406476423949,0.521060017304864,0.565862866633694,0.515956300954213,0.610912919563559,0.586671495118455,0.573345756475579,0.649623281769695,0.532932093993799,0.540731922992143,0.589930713232514,0.567334897257489,"aclew","avg_cry_voc_dur_chi"
-0.555009670908681,0.583586399095823,0.491305475613682,0.502663957163792,0.505588369564365,0.540648934813805,0.574892671390481,0.613027554316833,0.545039958910585,0.562042078447267,0.483960519625005,0.56292834430224,0.53756987199686,0.506960007842416,0.594164858507186,0.581320093442512,0.568360784084447,0.459811495892549,0.500742946339456,0.470961674146913,"aclew","avg_non_can_voc_dur_chi"
-0.603108847110179,0.652438364589894,0.619188686590074,0.642399089320062,0.65842882365645,0.628077666552184,0.676565438233796,0.641155463242649,0.605347114856744,0.596709990276701,0.546027881007189,0.621518081630193,0.614427187645252,0.68553115316339,0.57921358173119,0.679541104475961,0.581186408402128,0.581900816147946,0.615389914174077,0.59510584204849,"aclew","avg_voc_dur_chi"
-0.437061331612535,0.546607098247521,0.373498857446771,0.418780777620025,0.486583168204571,0.485526468828453,0.500248332630137,0.383019986665134,0.5237449469787,0.506165076286803,0.513812608121882,0.520073768973325,0.502833972171299,0.586500874848478,0.418710411881669,0.470733909117366,0.458622236437926,0.525768583846386,0.411751557541578,0.542386526688872,"aclew","avg_voc_dur_fem"
-0.34205690363917,0.442880406754636,0.519796391490302,0.491433083689546,0.468568416952827,0.483287423617567,0.449701427795879,0.489106714820486,0.504526586974027,0.515805466309508,0.395366833465495,0.527638511180824,0.472939278568,0.487421918701635,0.40619054421642,0.502733863055106,0.577722507790708,0.549443195706567,0.534917485612386,0.488881280235185,"aclew","avg_voc_dur_mal"
-0.690350214729103,0.650071285856013,0.648790251628807,0.685747671342945,0.660204518452614,0.645513680034275,0.601379781603351,0.690301974076448,0.653708191150906,0.698600635959409,0.658003344709924,0.637830920558018,0.672432844305826,0.689311378727803,0.692969204891956,0.68083328495866,0.646643851678661,0.66071668576338,0.725300571699441,0.694753701435535,"aclew","avg_voc_dur_och"
-0.801098123910249,0.779013352988971,0.739309279186926,0.812264614582686,0.820490640570279,0.787869329120326,0.804578695429789,0.795196648952323,0.78160177755542,0.796058787084905,0.782002152392633,0.799422224312673,0.792343953913779,0.809537297193832,0.819508962954372,0.791813922131436,0.805976073193809,0.758760593855271,0.824498821784712,0.817715434497524,"aclew","can_voc_chi_ph"
-0.762470229493643,0.760000245822926,0.699918368487636,0.7814471448864,0.769120228379514,0.745673874127857,0.76819292089,0.780994466353667,0.735448414393642,0.749778059301535,0.691253280716873,0.726817985520017,0.770013451343508,0.800660838581383,0.783022074590453,0.777375639660172,0.754319097245703,0.740281325010194,0.780828790264366,0.757591807390448,"aclew","can_voc_dur_chi_ph"
-0.760253363427766,0.666910812388086,0.659362662581621,0.710705453102384,0.744097775127932,0.742399802864205,0.730580644306645,0.666224433531127,0.691724237102415,0.690060352389976,0.63162373491638,0.627339066869848,0.643657411593276,0.709963336506257,0.723311200331181,0.706396216335111,0.646481580854562,0.71157195184044,0.740942673920095,0.685458825354419,"aclew","cp_dur"
-0.796244432152419,0.718035738635239,0.705536247486034,0.773229185022203,0.768593897882942,0.762030442673198,0.766239741502578,0.745872331851968,0.738039954800821,0.736774027262459,0.681928804752833,0.69781818772845,0.690954105153625,0.764113431894709,0.777501523635639,0.743782449988914,0.720859995015874,0.757112440790421,0.782459884762755,0.752529698025885,"aclew","cp_n"
-0.495030803907562,0.493315671118634,0.466908677080292,0.544546150456564,0.592464845528805,0.526870822130468,0.507121518862983,0.465219236256029,0.537984208662909,0.559433926026323,0.44642297425869,0.511674082665402,0.447847970067897,0.45140142326667,0.587207879262884,0.536446404542855,0.523138874003261,0.399751909172375,0.491596140198644,0.499115356934284,"aclew","cry_voc_chi_ph"
-0.522852457133244,0.563606605189523,0.536065093058066,0.518244689312383,0.591430063293195,0.576739790110789,0.57348840350449,0.480528183779994,0.543601067235463,0.60459359415663,0.483354523868317,0.549601762469355,0.520502294280392,0.495831121913933,0.585586584740731,0.551534940291076,0.533525741661617,0.473438780827435,0.522459572580735,0.535520993513013,"aclew","cry_voc_dur_chi_ph"
-0.556364657277924,0.569096775906363,0.518896018970686,0.483206378579904,0.412584940143778,0.452978952178015,0.529967640673194,0.502266717148032,0.519869179157158,0.53625436658587,0.443245200564825,0.569927420967691,0.483783413517478,0.482646495691115,0.480663513770527,0.475504710413362,0.479923456658723,0.536136441604141,0.435041465795627,0.51177224193138,"aclew","lp_dur"
-0.515688788752308,0.542309052409672,0.490944675718267,0.454168071377254,0.464492494033396,0.420163560392504,0.501343153428419,0.473810449400848,0.509315367811411,0.555283112318298,0.486729108925141,0.538496557852592,0.50761075754214,0.495027485615702,0.465471667315357,0.461759357009416,0.504340523506622,0.443538629718593,0.349014803171965,0.480482004931781,"aclew","lp_n"
-0.626252117648963,0.729607495583924,0.648718616414106,0.700763811661396,0.678249383989521,0.650267874674998,0.723975370868268,0.659406573068626,0.642934155204726,0.708603793271601,0.658954796928821,0.621566388916718,0.599396049864291,0.655880138872611,0.704927667753009,0.633099860445213,0.684112902936648,0.661367703728398,0.703569764750846,0.672777715490825,"aclew","non_can_voc_chi_ph"
-0.606643263833061,0.720250644994242,0.615356375929576,0.674467104444859,0.642668718051216,0.620213743052357,0.70695019700991,0.660871545870006,0.612727805012909,0.676839045197003,0.624730665276679,0.593197917635005,0.586591288373325,0.628277433179362,0.632578512513045,0.633013823411453,0.663079910731587,0.657986525776276,0.677824118397784,0.649788629643789,"aclew","non_can_voc_dur_chi_ph"
-0.603631829210714,0.589403017293206,0.583489686779984,0.557454998084553,0.5622341291018,0.570325326234475,0.680143810031648,0.492108700494507,0.598945078291263,0.593056921755887,0.474954664335555,0.488994168739298,0.573399275237268,0.628100573723797,0.578371591100778,0.504220487657207,0.406347606893138,0.541085068591046,0.59534763443567,0.570178293761996,"aclew","pc_adu_ph"
-0.59139149232511,0.645371698265858,0.53487390073359,0.608837514909207,0.591343959011758,0.602251499086039,0.636294334166652,0.502163725649431,0.544056168874796,0.602650441700476,0.504852930528011,0.472918712607011,0.634230978489406,0.619748345115937,0.617933639180531,0.555215074753585,0.538485680309712,0.607191897941813,0.505716158922985,0.555343137259266,"aclew","pc_fem_ph"
-0.531033629283407,0.463842094476255,0.497435361386951,0.561005370850983,0.464803856793662,0.572869413007277,0.58532951270304,0.492838455515492,0.600794166892415,0.441302245978755,0.448343664919459,0.503443631378163,0.523000407610729,0.553108947457866,0.463166867942332,0.458249936465154,0.428231903601725,0.599019989374238,0.568229174789154,0.479634677664313,"aclew","pc_mal_ph"
-0.655520697218532,0.645393211705228,0.653142749931534,0.683795727648503,0.630409221101938,0.663659264132379,0.624744272906907,0.691971067322469,0.601760190265013,0.689912919003522,0.645533089162996,0.639818035176769,0.623261300987304,0.661852786671964,0.662873468765367,0.689883562057284,0.640633926131661,0.63826108154645,0.678909879006097,0.612686438653602,"aclew","peak_simple_CTC"
-0.632554970688185,0.594326347144652,0.612528448465804,0.668294316271852,0.607134998381571,0.661961790828059,0.632377353348013,0.666914121713413,0.561309213630403,0.643947995938596,0.616113065811954,0.651742583718507,0.596016580558977,0.586952341583998,0.624470252303504,0.649329965614379,0.645318346140761,0.584838017287346,0.677998715975494,0.550460650131994,"aclew","peak_voc_chi"
-0.417507160385446,0.451192269010943,0.329610048324672,0.465424411794533,0.362201802584972,0.343343561916756,0.414278559585331,0.38141275458602,0.341467510318819,0.478787476496903,0.35057490746508,0.413082158874747,0.403622265222556,0.526778907734679,0.432913933100724,0.435874753570261,0.345459734842609,0.414604374232076,0.328751741303804,0.338300003212761,"aclew","peak_voc_fem"
-0.359160380927808,0.328173986530003,0.334327734854978,0.435899455291533,0.361931027596591,0.428326570759005,0.454612022521376,0.308179822682014,0.371699574216582,0.418186781887256,0.20746729438132,0.366060774306298,0.386020681654592,0.359339119142218,0.258609176185606,0.294047358003687,0.270812206024625,0.369480608631135,0.439775885443058,0.434664021414253,"aclew","peak_voc_mal"
-0.726526225729312,0.691275398374798,0.642146368864242,0.682446838457602,0.660646842232706,0.661933743909577,0.672614760761172,0.647860071486746,0.656819195575261,0.715226361282776,0.657018383009679,0.692561503658954,0.660546687891358,0.665838948042883,0.678081586519312,0.731793957331001,0.693424809282188,0.622180055989578,0.699988567233267,0.687176858495227,"aclew","peak_voc_och"
-0.273874030533774,0.276798705968398,0.290267988439095,0.2245158888768,0.122737494800811,0.17642219257172,0.369507877963337,0.101341108789153,0.318291669946921,0.305476400663953,0.229790904568284,0.271946708241364,0.276068621784893,0.302757853594027,0.211876715636762,0.200807213514723,0.163717529280084,0.251237904460042,0.21445767310465,0.244305748874026,"aclew","peak_wc_adu"
-0.289289866081809,0.42687880717693,0.237923650366628,0.31142985573753,0.265647504509225,0.264279382108978,0.417707015235797,0.221082689005034,0.176398389624276,0.284270430129077,0.244601295143861,0.261288769629833,0.277113086504087,0.342867527155415,0.298436534846134,0.35951894404585,0.294466755066619,0.328145414840984,0.176842648382157,0.179236373197996,"aclew","peak_wc_fem"
-0.396604063019732,0.347932098285405,0.445890647961519,0.409901294596568,0.305629850562203,0.360240843064334,0.348309653522767,0.350124482281819,0.370453919522809,0.386536783903399,0.289178916797921,0.420299263599086,0.348706089440504,0.392029751474004,0.292790966035565,0.31449524483922,0.287474627373882,0.437590647753937,0.390147737376023,0.401962503706135,"aclew","peak_wc_mal"
-0.602765855971752,0.591601025497814,0.585131329142734,0.554538040397133,0.560969905455996,0.566288133856331,0.682652214167633,0.494493134023045,0.601415549144969,0.593173084302415,0.47964397427801,0.489245977756836,0.572048861569404,0.629409447924691,0.580312383175257,0.508404394898247,0.41237468079445,0.544414879828435,0.59520107626349,0.571653670948748,"aclew","sc_adu_ph"
-0.573273985081611,0.632650383439887,0.53100220426767,0.603046626676188,0.574217239292477,0.599019994375792,0.639130482648015,0.498937397890751,0.537423221464872,0.599849447565827,0.504379247490154,0.453424381790442,0.617759893935716,0.620650322249886,0.603446451340835,0.554276144753343,0.538403728541959,0.594307380705437,0.485788254568351,0.536695569300149,"aclew","sc_fem_ph"
-0.531602532884168,0.449378308947586,0.503023513760431,0.544124189519392,0.465641716469777,0.572517645821434,0.586473273311933,0.473938691610058,0.602377531435986,0.428531933947211,0.454024487063811,0.503734170261841,0.523016955440831,0.587137363250247,0.463291467524572,0.448792098217091,0.431771266893056,0.59875548449065,0.568563622768719,0.481015431172966,"aclew","sc_mal_ph"
-0.746586278068021,0.77121830317108,0.742124051374642,0.799163836072466,0.768230610676593,0.772210130935468,0.794224638983847,0.770522266083531,0.743482611608547,0.801417580029406,0.725401743317397,0.709520830091221,0.765547222187404,0.784642144866501,0.797903503156545,0.768204815992387,0.722129505044795,0.6861895373825,0.797726461972983,0.747316128999742,"aclew","simple_CTC_ph"
-0.673646379095523,0.715232288151022,0.670509358008795,0.738099984346126,0.705549087832275,0.703684251835122,0.742848492825551,0.698540639606515,0.675108538658995,0.736029745031282,0.684199208744136,0.673166117470944,0.647619652151815,0.702809350158217,0.736081696694081,0.679876550200399,0.671981097108634,0.640003522342296,0.749544470472719,0.677277783861551,"aclew","voc_chi_ph"
-0.675930487522956,0.720850614218119,0.675590104464335,0.734050252395981,0.708155882607906,0.705784452662108,0.745801767435852,0.708955054734624,0.678233216393321,0.725290793217996,0.68607594154999,0.683942984125458,0.670795547306083,0.739349057617369,0.695671325659947,0.740681318318199,0.673832783254295,0.649923497984495,0.764679594758016,0.690207586950744,"aclew","voc_dur_chi_ph"
-0.587233831651475,0.655141556728145,0.538364397680282,0.578973752460774,0.577581563182814,0.621940692129165,0.611640920206725,0.504276648218334,0.582308534296524,0.596150891544365,0.480478112246889,0.520186395802852,0.656371628719733,0.626972239039726,0.574582885073339,0.538906778025216,0.50592343211571,0.585977951027235,0.511655381605437,0.545431866247534,"aclew","voc_dur_fem_ph"
-0.53893263575591,0.46080634236395,0.493371124430727,0.516467928229057,0.540021414313386,0.584397482298114,0.554841503712223,0.519798659716305,0.631378440630034,0.434180620094973,0.451107862460196,0.547179275642313,0.536023864705449,0.589621444540681,0.389243744716077,0.477776897286382,0.508475992144657,0.626536509295314,0.561926087244379,0.493592363886835,"aclew","voc_dur_mal_ph"
-0.795998416401259,0.739710116389252,0.705361002057855,0.743721273029067,0.734034710713667,0.748499771867327,0.749374579372306,0.730490933141235,0.751881009685,0.785821226049998,0.685086599194831,0.725698923958031,0.762698107999993,0.743074604431548,0.7998655661667,0.771962723776265,0.73836540426003,0.695749495232549,0.811298381806998,0.744521127751451,"aclew","voc_dur_och_ph"
-0.688882448065354,0.721438212837162,0.663467162203227,0.714162214522287,0.679243079746391,0.694725115431442,0.715261944719175,0.639209506415092,0.676010276198951,0.740883743792643,0.553174076191768,0.587645876676525,0.735628924382646,0.71507771462742,0.683257859098494,0.654805325191715,0.618338457743789,0.63552627095178,0.66026753402089,0.641580046331522,"aclew","voc_fem_ph"
-0.594181358233978,0.533121503292765,0.587581595821142,0.537965045438498,0.540350192868084,0.569777446084075,0.583551303161786,0.568734328359307,0.579025190334018,0.549297522195546,0.474720627864056,0.53423329736726,0.552177949644864,0.603763819266943,0.569385719081382,0.500235226481417,0.445994417606141,0.602367926618675,0.663100790600542,0.511464414091085,"aclew","voc_mal_ph"
-0.809751943957268,0.768917071518286,0.743030036586344,0.77643742948251,0.786896333843393,0.784980951499682,0.77786367316368,0.757578950742174,0.776018546289704,0.822103484949907,0.724025690254598,0.756764853743853,0.775707328897988,0.776720859417739,0.833661767830746,0.787699790184081,0.742561807090087,0.725911181015478,0.819619482888169,0.782903290173566,"aclew","voc_och_ph"
-0.600685692226056,0.583378669608035,0.576932766065688,0.550914011558347,0.556870927155878,0.565049567035243,0.675334160383316,0.48451510542201,0.593980926526743,0.585710754369168,0.470772136896618,0.487329478249807,0.565858305989878,0.622344079205779,0.57439262185917,0.498241380991833,0.399046989779135,0.535561329731283,0.589762838399572,0.566622341024663,"aclew","wc_adu_ph"
-0.58583124455614,0.640426304511259,0.529165035542401,0.601309064602556,0.585011508607097,0.597644048389598,0.630993508866571,0.494935478781061,0.537625634960103,0.595218409999896,0.498648376021132,0.470115987041285,0.628727707330127,0.613571474066021,0.611047338774759,0.548736762799333,0.533244629051101,0.602833237310063,0.497030879542929,0.548615403972207,"aclew","wc_fem_ph"
-0.529377848050539,0.461247803739647,0.495164470200468,0.558451044077986,0.462405262665897,0.573010539519864,0.583236280701862,0.491811643802858,0.599928887405093,0.43850026615736,0.446215197273486,0.50449546480716,0.52183088747579,0.583454063952264,0.431122144567761,0.458034903393574,0.426238887100779,0.599662629524191,0.54835167294697,0.477792233842331,"aclew","wc_mal_ph"
-0.529632311790713,0.50991353543193,0.476848077949076,0.454212836791689,0.373403485109999,0.379380039072022,0.495504658240426,0.469426836356486,0.538201337010649,0.386462005890101,0.370927959829278,0.414493488030581,0.473256501592153,0.524673955543172,0.366632292939083,0.437027366338368,0.434441058859438,0.491690693743251,0.4949117149642,0.524055184297892,"lena","avg_cry_voc_dur_chi"
-0.613365963527095,0.590797721262198,0.590290059028701,0.601857635981607,0.46984461956128,0.492618344205665,0.664924700439994,0.541507551738892,0.58570997206447,0.488495411590284,0.640120160462269,0.533483277469867,0.561427164723967,0.609097153378314,0.547442719973307,0.595841968315209,0.51146637334102,0.545796595561058,0.573153969164817,0.527272543504471,"lena","avg_voc_dur_chi"
-0.467713472147796,0.440187055049821,0.381460341467593,0.409715650189157,0.425758974932976,0.435564452301561,0.501289000428368,0.35318192718445,0.494984387654409,0.384300483960001,0.43466947450292,0.417986813566646,0.456269354420228,0.510781606855444,0.438888964306434,0.393842526693264,0.350116951410237,0.375823367272621,0.329241774673279,0.45295600010371,"lena","avg_voc_dur_fem"
-0.383126319137126,0.522266791522094,0.387225980290169,0.488590842977638,0.42981360380937,0.439762213415376,0.414673639737387,0.360533764276348,0.441430008664392,0.315398739596439,0.378899516070739,0.44029679482135,0.419275246192747,0.475049239790438,0.396557326488078,0.407986350016263,0.424873293262353,0.446070568887584,0.371005461405172,0.416868671800925,"lena","avg_voc_dur_mal"
-0.515250311444769,0.511535300921712,0.441579438622757,0.530793783747249,0.444526435137349,0.42972695831144,0.52357144825969,0.518761575174783,0.410708861126395,0.511591820297089,0.557147987356124,0.493228572668439,0.529020500971828,0.547482462568476,0.469758147929877,0.490818452484786,0.53822824871965,0.492454425314826,0.443624234509686,0.507170538703947,"lena","avg_voc_dur_och"
-0.44383087599931,0.429552503013781,0.469335536425704,0.503320332427298,0.539184196903333,0.423025992488875,0.441900688206929,0.461254121042729,0.478530880387744,0.515375507525924,0.44479020224841,0.462751470557121,0.433799365287896,0.471352641917425,0.479276862663711,0.508657943652713,0.520332356410108,0.538061177005251,0.447140555252504,0.4612105144464,"lena","cry_voc_chi_ph"
-0.462304187460461,0.464739133952312,0.446677556684493,0.506228227015972,0.534805732583255,0.423656097392353,0.478007928779967,0.49683350099443,0.495337460750148,0.490963170052345,0.475576051794474,0.458155100016352,0.44588518565551,0.504227983368874,0.510068965047616,0.514676904281489,0.546687690818818,0.528172938017029,0.468930384804564,0.506561510424101,"lena","cry_voc_dur_chi_ph"
-0.672234375100049,0.665570297774445,0.680481658119276,0.710174009370606,0.748019360148181,0.679918223625536,0.69052166557658,0.64650747770882,0.673152030977836,0.681764773142585,0.600991287565016,0.670794096354187,0.690125289816434,0.683586422883392,0.707657673696081,0.650501111352224,0.664111613282136,0.607552449020958,0.753013794884833,0.646820871405072,"lena","lena_CTC_ph"
-0.68435350455467,0.691705372538895,0.692192339085878,0.74049787410876,0.726199654066355,0.742540021514852,0.710624166325196,0.730169624866038,0.636185115366377,0.737143902662371,0.669755384950763,0.684378215475842,0.726365634762151,0.721888052345599,0.695012642606676,0.740844668736371,0.664581302578819,0.620579298682848,0.77320382234601,0.687478191485773,"lena","lena_CVC_ph"
-0.767218499752663,0.785657781944853,0.791708736911874,0.776044230449767,0.758004438482362,0.762657005359924,0.804872408719502,0.820447320703934,0.781960477150493,0.808032213523435,0.724019969679374,0.755742718911543,0.786003444112663,0.763165385749948,0.776104575620864,0.787845766701316,0.808004729918502,0.808369920112386,0.780257184910944,0.784569429866985,"lena","lp_dur"
-0.788840597007571,0.777710953461189,0.809758604075822,0.797376561851807,0.776761775334131,0.801767148716341,0.811075727648039,0.827563496880315,0.785086283006403,0.810050981460553,0.708231627884753,0.770764782000057,0.79608076674845,0.771632362992267,0.788175669283299,0.802178090833132,0.802429384351973,0.823324942874715,0.794638819647339,0.779067911049732,"lena","lp_n"
-0.572461173488456,0.587573522518749,0.599243726062633,0.60349745811331,0.634775755433477,0.595194377025579,0.645758680115769,0.565250802505224,0.507307157446071,0.556765280647613,0.552768506815019,0.568915095425081,0.607167213348118,0.573012504266229,0.552041280205829,0.601819639139692,0.582909830110699,0.504743490479379,0.621807805794401,0.529913035323655,"lena","peak_lena_CTC"
-0.632713145842526,0.571114105130832,0.672887411998941,0.694169430587965,0.597011145886088,0.693973453861277,0.622803747719292,0.631802702421909,0.615596213068432,0.625520612762818,0.594827951683007,0.626333893469088,0.673885512829064,0.631229525826502,0.580741936501286,0.723787169471325,0.63139601417104,0.610214363266078,0.698352956746046,0.573294541836022,"lena","peak_lena_CVC"
-0.492285217015612,0.481341536340802,0.50991636564021,0.579606534938903,0.479500224806278,0.550721175970533,0.548044009524075,0.56770419683685,0.493172421454895,0.559735234464496,0.460222805371566,0.538685431942698,0.487873671558339,0.540445067076667,0.526709444728653,0.624737943918821,0.550926822039089,0.494329616071369,0.58934912058243,0.470953224787133,"lena","peak_voc_chi"
-0.291651042519264,0.354259448436257,0.315051348887315,0.289541055458449,0.294231951248555,0.243389107600351,0.371084693133064,0.273778534567574,0.280190093279418,0.366195101045202,0.321267527573009,0.316631740480627,0.33621591246635,0.424675741739995,0.365894834034242,0.310543708678465,0.305786237570686,0.346802830781434,0.265364899617465,0.181985899501161,"lena","peak_voc_fem"
-0.447074607561509,0.351915368736206,0.468952978720984,0.465799321964889,0.35288529175254,0.397861288863683,0.435127036310904,0.42098289886115,0.366161611943626,0.426630865907204,0.245320086694944,0.475885980549954,0.332857597325262,0.358193053396669,0.337307119448279,0.335396993934712,0.347452595753199,0.379613333982636,0.403160271264769,0.378340452422915,"lena","peak_voc_mal"
-0.574434163733267,0.501251745739978,0.473601451344721,0.516764377245767,0.471941204983913,0.510470849320336,0.505086868596476,0.541066076861353,0.467418770317431,0.515689786031787,0.565919140299027,0.549283399931665,0.495949083700762,0.559554876325464,0.55727032046059,0.530918343897256,0.518086503827639,0.584399942910613,0.568261748579748,0.544271049463898,"lena","peak_voc_och"
-0.280320899451802,0.290196414274575,0.412573647306386,0.304003695106465,0.257074012992511,0.320479590603707,0.334521000316203,0.262852178460729,0.355067929594012,0.318922590167553,0.370257203374036,0.389685946046199,0.264184110988472,0.414936075762327,0.39671388215062,0.258728695642282,0.241802603056404,0.273588805235624,0.237435634894836,0.298551374686732,"lena","peak_wc_adu"
-0.251267737494783,0.294102627114562,0.305096696988737,0.272375382208701,0.219609998987595,0.220835934823682,0.331867173669763,0.252548870871861,0.268557130226001,0.279588882416367,0.336449642702233,0.291779302684401,0.279116195610394,0.395314593406186,0.334705560582131,0.244459813636429,0.224633914799123,0.274397327081167,0.212040634995332,0.19166806327367,"lena","peak_wc_fem"
-0.506962592641561,0.38174822185219,0.518736811673787,0.47175685567434,0.417459873996447,0.415358794621466,0.450256656930805,0.459952989254429,0.462453463641349,0.447393538355017,0.336152436938499,0.510421848998483,0.372866523145206,0.423522194262699,0.32409092183599,0.394627908636973,0.387951359148364,0.416845658549367,0.45399253639714,0.402430485259211,"lena","peak_wc_mal"
-0.469534017270089,0.474310028783182,0.535889934708857,0.387991651714866,0.481278442409662,0.421427391742807,0.499434329957533,0.387199845173854,0.52081033936218,0.502417375108504,0.376090904646438,0.488964047347011,0.465737474265549,0.3799124589765,0.450950505080632,0.5299048375476,0.491823717581158,0.414565345144619,0.332251432780522,0.41172399420958,"lena","standardScore"
-0.555781069294244,0.574656080924958,0.572454635368111,0.640347544740844,0.621982332805476,0.624725775663358,0.6251146151666,0.611780711968396,0.550022063433827,0.647272450663945,0.566830682890886,0.578102802266115,0.586622368450927,0.633521319815065,0.606556870057246,0.667210783441632,0.574393521842023,0.543412827586669,0.675814005061156,0.589792279202405,"lena","voc_chi_ph"
-0.592254811751614,0.598468450308493,0.598477920675071,0.647984761989643,0.595734153544517,0.647687881370591,0.657998407524856,0.595304849186625,0.5819161776125,0.663975293601587,0.622523448553215,0.579471830552569,0.643921947731552,0.609444615484315,0.591920032913183,0.700597738234767,0.561815424163442,0.563667454896813,0.615748941099511,0.571193021184931,"lena","voc_dur_chi_ph"
-0.587905466316564,0.622126038352705,0.515078088443244,0.461831346707623,0.590986982762626,0.574085144281828,0.543811216207794,0.479930242586252,0.475744264878332,0.48446753281033,0.436121373691285,0.498386045372399,0.595364179870183,0.539333781051454,0.575274698385866,0.493459958630389,0.497294973756241,0.505955398714571,0.434341580524769,0.457174631229745,"lena","voc_dur_fem_ph"
-0.499683488581197,0.493699892739207,0.512651627760294,0.458448485050224,0.482439547788361,0.552164040996873,0.570566545510991,0.48576467254944,0.622201305010855,0.45255720881485,0.370308574492648,0.555894479325716,0.505747118590651,0.558074595357549,0.371506436784858,0.447291251499663,0.448346773668459,0.565454429964638,0.547149213890819,0.498295901667961,"lena","voc_dur_mal_ph"
-0.755614235998673,0.650694882362997,0.62855442618791,0.665629715929489,0.656148368524546,0.666070397104876,0.681928356912807,0.661362624032417,0.641783636378652,0.693053432157072,0.700550155840917,0.694047396628594,0.647287006748031,0.745159200117537,0.707351444975424,0.665587820793395,0.639804740375592,0.717439028455527,0.688596524815987,0.663249670937588,"lena","voc_dur_och_ph"
-0.585735902433246,0.619649445238461,0.574143825433242,0.549585752587865,0.603106187748214,0.608246263192463,0.617321006851306,0.488874784210349,0.504983504810881,0.585484443528091,0.432139067577807,0.452475178971631,0.617673656040587,0.59026001585117,0.593023791705151,0.511490767825073,0.548837402433584,0.501461110502677,0.45133555464682,0.457997782246236,"lena","voc_fem_ph"
-0.39803426932379,0.464694770367648,0.476968505385761,0.458397932435309,0.483671928563218,0.516737618005379,0.556707498050988,0.496051826797976,0.604093201974883,0.440180543251438,0.384558078555418,0.531145430796513,0.458559615049563,0.517166584615878,0.38923380951806,0.426151147884115,0.453493653452529,0.504490105283025,0.513550457033679,0.492178278439302,"lena","voc_mal_ph"
-0.735458043570209,0.670485682932091,0.62279177027049,0.65882283227438,0.637231069429586,0.666039904158141,0.67259610185085,0.651464366707324,0.624706456896268,0.683017336398496,0.69065536932179,0.707887865274507,0.641871964018487,0.715937223227943,0.700714943919076,0.641112495125127,0.652424114848894,0.725968356308026,0.674987169276903,0.669837751536955,"lena","voc_och_ph"
-0.5550460859098,0.500211183281753,0.545498944822827,0.485966979637966,0.571916087253262,0.5686524355063,0.554386810898866,0.459918836007674,0.535914954188888,0.46990106849363,0.463858570196812,0.549450830571755,0.489202471154046,0.523381357318158,0.571981384982405,0.515633061995623,0.455773190915381,0.501345011720658,0.548379313262923,0.378841306971482,"lena","wc_adu_ph"
-0.578111731868861,0.61410071551278,0.544768894913735,0.487146898852977,0.595041844227047,0.603087745469636,0.557189448383626,0.496475614052111,0.50466635661172,0.504785565560793,0.445221949650908,0.49083363054541,0.615498074775479,0.58098821760619,0.583080727556477,0.510979388096872,0.508459882727958,0.512480920427094,0.439729356791908,0.458586384486856,"lena","wc_fem_ph"
-0.391447624662368,0.491934656649314,0.50414551641364,0.481480198463865,0.534522418802732,0.543336018613237,0.532944605653388,0.53402982065386,0.633487537860234,0.432467852529957,0.4522310298169,0.48317448607348,0.485420261097407,0.529765604318049,0.437738360545724,0.413897963101722,0.501858921601679,0.53701471665186,0.460737651797721,0.470969004127799,"lena","wc_mal_ph"
+0.563744701216287,0.525971430582757,0.503452380233829,0.592771575309433,0.577479558038973,0.642940591504311,0.57122626461789,0.539493475370992,0.582039030298194,0.492423873952027,0.575671448940038,0.567066523327573,0.568242518572265,0.545582150802406,0.589180554422384,0.549768871820702,0.531581330400875,0.532184350618511,0.501716076090499,0.519921974663456,"aclew","wc_adu_ph"
+0.416643085255234,0.51533218912316,0.497063740374322,0.591178498094461,0.471474384596598,0.522868299409386,0.50036765480733,0.501438535746881,0.547862286324877,0.472576246450399,0.510839534253934,0.437894885070396,0.493173218253865,0.514134236371331,0.567551797533735,0.520590013113676,0.502958346383655,0.494607071492018,0.439444364379745,0.549410108740052,"aclew","sc_mal_ph"
+0.623856925303961,0.54062580484287,0.554724801613821,0.59384607167623,0.607708294249994,0.58955399461157,0.4950946361123,0.575656311630062,0.539511217976342,0.575363709505421,0.555682618490975,0.55506906381151,0.581382045925099,0.578563624653707,0.592981973159342,0.640648579918711,0.571084849328106,0.558285903519239,0.510690830649518,0.572455120147726,"aclew","sc_fem_ph"
+0.409995609387468,0.510338182131191,0.486450751205043,0.583515143596572,0.4702179808776,0.519274100005391,0.498202497040722,0.505042641406648,0.545207557735081,0.460438809035565,0.508254560818523,0.431286147794675,0.492716552758193,0.514096181113093,0.58078986811978,0.529737125416281,0.511045856852237,0.492660660373013,0.434700772038992,0.561141358877975,"aclew","wc_mal_ph"
+0.618545460689729,0.538651399072411,0.550073425134171,0.588960992728224,0.61685127983049,0.596794575012263,0.490719972563589,0.587764411316614,0.536838233451771,0.586824465022846,0.549664569846853,0.550812138441851,0.58274680029187,0.578317047217438,0.593486845415488,0.633032385125835,0.565887572830481,0.568657662905797,0.519801321589111,0.570204368496266,"aclew","wc_fem_ph"
+0.3222050402233,0.312059934928461,0.22296094732941,0.340147116993338,0.364032075277043,0.227903225787643,0.331651357926202,0.271989987897116,0.326048530729583,0.284229843787486,0.209450238239734,0.354077688755946,0.369147925371943,0.232277674612284,0.296446289112658,0.364023135131947,0.240408190764673,0.158384485587889,0.239316184735695,0.327636550435609,"aclew","peak_wc_fem"
+0.328783822266324,0.329603318615888,0.304817054766407,0.368922721745463,0.388067644146306,0.356370343982615,0.350121547151173,0.436756218290525,0.438616411193787,0.278165486453434,0.328887782639158,0.369983551260125,0.359134968864209,0.406384294163892,0.451634303974696,0.298782133765761,0.370919448201219,0.340941745195926,0.300649604242011,0.430268416980474,"aclew","peak_wc_mal"
+0.251270380733209,0.264489417179844,0.18588946656517,0.282486683717321,0.288817799882905,0.292077526700396,0.378190097175596,0.281580188871879,0.265800379947704,0.258785976819927,0.244619714519527,0.307539202287948,0.245718863434612,0.302742771090831,0.220968074654578,0.144135620270579,0.253558839744958,0.166684406775242,0.264519914406125,0.322812659792386,"aclew","peak_wc_adu"
+0.569154313347122,0.533682891117097,0.508831093574555,0.595335039076691,0.58003562049415,0.648947186251175,0.574291848723575,0.548825632106,0.589004529725622,0.498902142013653,0.581185791252215,0.574064323777902,0.57031334119447,0.551804092696188,0.590081859535413,0.555797831436617,0.538727391210747,0.538449358391666,0.511443108935004,0.526902598331215,"aclew","sc_adu_ph"
+0.568085421558203,0.532163353275416,0.50895545693479,0.596963031453518,0.582120235442167,0.647471002167913,0.579350351756224,0.545731445140159,0.588359810481756,0.498806213999138,0.582346981795963,0.572016233979889,0.572732787904484,0.551544693764168,0.593614620187932,0.556089134847895,0.536833080599535,0.539653156576613,0.508977330996001,0.527241855466449,"aclew","pc_adu_ph"
+0.624543074576438,0.545722890942746,0.556923250940681,0.592617310167979,0.622195219519041,0.603225900057828,0.497357241828521,0.591652144509599,0.5441069215985,0.591090795985835,0.556432397307222,0.557269218266729,0.586705264190521,0.583995318170169,0.600459305601605,0.638250562783884,0.572114153468442,0.574749936931428,0.526607430019331,0.577626002691877,"aclew","pc_fem_ph"
+0.412407372282287,0.512433831300368,0.511873974622775,0.592634100402089,0.473919173521041,0.521497047396641,0.502339897135917,0.520126249863827,0.547309497991841,0.473486921390159,0.510471864543098,0.434204701889369,0.451121011024019,0.515945996981484,0.579683360433923,0.529088826493948,0.511613647409361,0.494454020675438,0.436541952599067,0.560144359975611,"aclew","pc_mal_ph"
+0.805459505293445,0.853550032509682,0.813069836761214,0.767985633544625,0.761304170639184,0.762571137914819,0.802329182297835,0.808060976544563,0.802342492863331,0.771130745356674,0.815447705566579,0.779142018686698,0.806977696867667,0.808095122730841,0.807796002621576,0.832297872016938,0.767529886442811,0.819154903719279,0.789411685260068,0.785789269433844,"aclew","can_voc_chi_ph"
+0.558775343450323,0.478223549799328,0.53377530366097,0.480024507657949,0.505111192860029,0.475047514267117,0.504943205238094,0.517192488490542,0.436340884408221,0.513046600497162,0.53184215268911,0.486452959533396,0.542002860036901,0.502944900567508,0.466410477262084,0.486997585796251,0.476688375276069,0.510592386506567,0.459310544745964,0.453897848212696,"aclew","cry_voc_chi_ph"
+0.762317655392172,0.773629386583529,0.807313309044921,0.731206223987224,0.670378070668104,0.712161527016787,0.770412314251489,0.753567128474685,0.762713383064227,0.731973977307766,0.753508249756244,0.731202953941381,0.780639483102847,0.763748531544185,0.748497438673731,0.805129836561288,0.705149471214601,0.770480367705703,0.733992810824964,0.720650989093741,"aclew","can_voc_dur_chi_ph"
+0.560785946582761,0.524651163445485,0.63494566535634,0.517129020073855,0.523666664062182,0.647101288158205,0.586194620871481,0.643552310827299,0.655901470841549,0.604914090294954,0.649630440960945,0.597204730468499,0.6548680604177,0.535978490117409,0.577111710214784,0.621798586737807,0.638580413851964,0.582505489738037,0.533987881682835,0.541730051017187,"aclew","avg_can_voc_dur_chi"
+0.634605658364187,0.692825057591668,0.63645398810317,0.72163885643533,0.589857132730738,0.658281085267822,0.652289219478783,0.647537718892409,0.663932338728843,0.568432136722614,0.711800494221145,0.648943983754027,0.653799334450547,0.659337711603197,0.705469969349028,0.67247496536814,0.635086274996596,0.639090886506477,0.689460043423256,0.627987829703814,"aclew","non_can_voc_chi_ph"
+0.621973933703232,0.675704734556044,0.636292273760912,0.68973507440383,0.603146973672804,0.67341626947081,0.639817700452688,0.63918958475856,0.64945794552826,0.580148858722549,0.691380507410264,0.626026883384085,0.636363294533376,0.669760257894985,0.69898696978772,0.637613477605975,0.620030470618626,0.654009589287115,0.646942730696499,0.60984017469869,"aclew","non_can_voc_dur_chi_ph"
+0.500082027728531,0.551785875458969,0.503240712876565,0.513094865669125,0.576787116209656,0.558317173778955,0.526866710149402,0.557031249847188,0.523875561332612,0.538254724986203,0.571525841079245,0.566967165121223,0.478738853411478,0.458980985092496,0.580658728723594,0.576578295452479,0.615110650373416,0.565038167350548,0.478800184918283,0.461572317456219,"aclew","avg_non_can_voc_dur_chi"
+0.536160464205058,0.40292859355782,0.521774482081191,0.397405860516334,0.481425593640985,0.503985713205108,0.411959654758617,0.426225705755156,0.480293869525321,0.477832797936293,0.409158246328431,0.403245765766393,0.490631410119348,0.53868515186307,0.512274032640272,0.530966114894488,0.518820153189832,0.437108619568532,0.36402312668394,0.448067662068382,"aclew","lp_n"
+0.471972559297468,0.453237504370271,0.560383304976782,0.485241347788393,0.422328651051034,0.487204239923691,0.444060162507449,0.420185755373799,0.505023000401709,0.473107702809308,0.41991245225398,0.410315739698772,0.520833384000972,0.516806327928826,0.532917333199025,0.517929227055006,0.541310155751209,0.38491444908078,0.377088423972373,0.425340296761993,"aclew","lp_dur"
+0.764088798553398,0.705123509039246,0.773229824468831,0.6736735425919,0.762336113838847,0.652349693260088,0.771745180406618,0.719328661602541,0.707401909266811,0.733502194974017,0.73273532045883,0.736740847850495,0.731450124257904,0.760200318401558,0.751329727656444,0.74736178168706,0.665839563423871,0.726412676351454,0.736094835523757,0.694738730450553,"aclew","cp_n"
+0.71898788323355,0.653631045997613,0.723505272436522,0.629428734830478,0.738437824784772,0.627130896868229,0.70394266472892,0.656885947990794,0.655098176259349,0.699178023852168,0.669505163536582,0.698510393187217,0.704875463889374,0.703843261595945,0.706063117205952,0.705593786409235,0.648606912874211,0.675373338966844,0.669072854819628,0.658480171249756,"aclew","cp_dur"
+0.520254021515901,0.623455921534492,0.558988310256889,0.609208373584932,0.512370889879785,0.575505767971488,0.582134245247768,0.521647027804582,0.530269924759634,0.620067712422063,0.6167847547,0.508475328776737,0.610819952814321,0.533115322397369,0.507456558400073,0.568092736409478,0.602522703242066,0.610243090959404,0.436259727960763,0.561376520415862,"aclew","avg_cry_voc_dur_chi"
+0.596773739324188,0.543011654069975,0.582362892425719,0.516567932934974,0.512553516541952,0.516733100973558,0.528549854993053,0.554601085191362,0.463284997450611,0.568776087293532,0.543250750719489,0.511597658204418,0.604439235255224,0.505335046483145,0.474642800944769,0.540290629181635,0.571127659135166,0.522856594543378,0.474344201119856,0.436529722080083,"aclew","cry_voc_dur_chi_ph"
+0.67642278122811,0.650235335542527,0.63289114125847,0.698423643342167,0.665391588639897,0.690560831062713,0.706674186835948,0.66739813139353,0.679868269324616,0.673890400883986,0.718101177283261,0.672604754785653,0.706579846690095,0.655273202256678,0.713129054331586,0.698329332805902,0.64093810907742,0.692695962972803,0.661563313833427,0.670706476527234,"aclew","voc_fem_ph"
+0.385924560544755,0.397877945541797,0.271993481829835,0.463467862276036,0.326331683661567,0.30856617894889,0.532146804341895,0.385636339427868,0.392915186158719,0.3749887268187,0.363838272820678,0.397204557847419,0.432641018643323,0.289689393306845,0.347644288797615,0.37512872089502,0.258062440879496,0.344182443561966,0.36828223479918,0.364075343876161,"aclew","peak_voc_fem"
+0.457878410815907,0.519246778287842,0.469861959180112,0.653792607028568,0.566152540372533,0.579095649315059,0.634125614796009,0.600340066186205,0.661616739432527,0.524825889839146,0.543047435328301,0.550992248338118,0.538796686989277,0.541562021079575,0.566303911402961,0.531959626399694,0.516953773264407,0.537714245759343,0.565130417801082,0.546958014232599,"aclew","voc_mal_ph"
+0.703420710919502,0.679859144110372,0.600042644398157,0.655110255935954,0.56185914088316,0.613779732860626,0.668936193290319,0.588925643884017,0.654720667228016,0.637983330743261,0.667715734319248,0.618656423381066,0.6574256828032,0.670309190108829,0.633315045754006,0.680241044790779,0.58936288865026,0.662435540920276,0.669323298739891,0.615725048274679,"aclew","peak_simple_CTC"
+0.780474988230087,0.736967831313103,0.774948582308732,0.809721789260533,0.777066035706323,0.744249497365171,0.792131138180702,0.755047823361634,0.753653409524792,0.743237844222133,0.812676974313951,0.777521845728702,0.774474730389285,0.756744397684685,0.732055074471672,0.789229100582446,0.764910997238315,0.774292978328385,0.742019748640869,0.747605031602261,"aclew","voc_och_ph"
+0.719846859111818,0.612354210034068,0.619794303082141,0.704366579107451,0.649355023198546,0.618233278192652,0.698673928408857,0.681952519170603,0.573115627313923,0.625629369728263,0.688174794232266,0.602803435332205,0.687852742372292,0.656172419406979,0.675345882733444,0.694113396927643,0.683967390501495,0.675921596043818,0.656707514378964,0.63300618122807,"aclew","peak_voc_och"
+0.688335572292661,0.718383890018228,0.683190083369334,0.734751951893677,0.616098888781895,0.689462694148258,0.704826076987046,0.679089068877864,0.708190937085788,0.635990468089049,0.749411595857203,0.689072307223663,0.711060206495477,0.688898210244804,0.699559532547738,0.701617481390255,0.657893100145003,0.676814057691932,0.715651154692895,0.662214814716108,"aclew","voc_chi_ph"
+0.64644608411566,0.652356954781485,0.567004744678091,0.601767721482991,0.513381336683878,0.552965283098975,0.614592413044375,0.570598971152563,0.599267822862678,0.586362793497837,0.646863705071988,0.632287139786669,0.571074576537507,0.633372671345156,0.568269722022662,0.620818842514789,0.589585122364277,0.625776279461508,0.671739466947045,0.59224264822119,"aclew","peak_voc_chi"
+0.37738503293213,0.358232330837139,0.253076181277259,0.401727817180259,0.409008314756607,0.401004553363268,0.37328885351539,0.35731700503618,0.498959536317855,0.312637024197299,0.429834320619208,0.40218153414165,0.315850267819196,0.355500899775946,0.404750215996279,0.279884157529219,0.329667447491777,0.28801348419087,0.320820123083396,0.429145090169145,"aclew","peak_voc_mal"
+0.41164257065729,0.479641712036116,0.444799987968187,0.6184600175909,0.510890602078329,0.56607008434508,0.537543828260123,0.551754768593842,0.634655641744801,0.5678309823274,0.513898391867727,0.503910463081004,0.540764534321028,0.506271773521366,0.578459503990369,0.509669430850684,0.524484432585359,0.548300147372987,0.513141423650995,0.56338262079174,"aclew","voc_dur_mal_ph"
+0.775211074029269,0.724944716035553,0.76897816563562,0.777658099034006,0.738828663574653,0.702553986526182,0.772451204023906,0.742122896540219,0.731488474395282,0.723195396373732,0.78248304448843,0.752659560166617,0.733263195260179,0.726865600244635,0.664518249620336,0.7554697905541,0.751973871055236,0.748100787037682,0.730991306204573,0.737316907439113,"aclew","voc_dur_och_ph"
+0.708745500243963,0.736918148151125,0.752688965068398,0.728484246403939,0.626360848497273,0.718275291539139,0.694203610335758,0.703810792057043,0.686733842512463,0.669158590456942,0.736769923958224,0.676539110540013,0.735097108855217,0.710781227728438,0.666640252187855,0.711954448755433,0.687867829733402,0.693002646194955,0.692676331243829,0.682610211245061,"aclew","voc_dur_chi_ph"
+0.456952390841685,0.432335663743403,0.541863564526901,0.609346472668207,0.480414588748178,0.521706656599047,0.574240246186687,0.503906001261885,0.419597684789231,0.489809401289438,0.54307773649638,0.502097310529312,0.528905851547599,0.429127533711739,0.465459083030913,0.471876129428944,0.349329475757884,0.437058860055576,0.498492624743002,0.428922161407547,"aclew","avg_voc_dur_fem"
+0.444124569754123,0.470513614123499,0.473068586307389,0.502944762299035,0.474514981027506,0.5188859088533,0.494309389044907,0.645400795022864,0.469719372685491,0.537206918208407,0.512653656173,0.397020419405271,0.552273578878179,0.516001088399302,0.457804384336194,0.479581204411402,0.532271886095274,0.503480830640904,0.49574517692668,0.51627804234281,"aclew","avg_voc_dur_mal"
+0.70415466881598,0.636798527108916,0.66320980142884,0.707034188429745,0.656159814503535,0.647626748786253,0.705251281714332,0.685586408417439,0.616459840717675,0.637852788090831,0.657794211184733,0.65763405074612,0.618164891469976,0.623889650322507,0.623512817740204,0.660229950592527,0.697790534781386,0.699195082812113,0.693024196237678,0.636767845492826,"aclew","avg_voc_dur_och"
+0.626072665604682,0.530378149335105,0.664839988949207,0.568123427990754,0.585026185260148,0.664271769352599,0.614962622271652,0.653345004475813,0.608766936685168,0.636316207247499,0.6745105192045,0.62257920677784,0.594878126141789,0.609257782186338,0.668734329815781,0.644147542712362,0.686650662214933,0.569969275773014,0.577388249501231,0.600614218724645,"aclew","avg_voc_dur_chi"
+0.600560009685579,0.508583658434065,0.555940663656364,0.631000968329319,0.598798332311116,0.612243391633638,0.59501386546207,0.586663705282806,0.562123422471691,0.591400060958242,0.588684249654415,0.585060855444436,0.633005080892078,0.55259354759516,0.568805235732638,0.595342829461703,0.52352221890042,0.579636408132323,0.547782212595295,0.54238353087072,"aclew","voc_dur_fem_ph"
+0.749274426090442,0.749711862363772,0.752563930884069,0.789082165044361,0.725157628475316,0.770939026894618,0.794043352616229,0.750670235321324,0.751042993679118,0.750891295253277,0.79963776485252,0.764053382264747,0.784412038440408,0.745911217966578,0.745639180835196,0.76226990172277,0.725090971030278,0.761725724291897,0.767890406987292,0.738306178168285,"aclew","simple_CTC_ph"
+0.544631119207252,0.498760160652994,0.579404038504558,0.585592718633337,0.577860011022351,0.573453835148534,0.619495370553327,0.574648213969999,0.570482938368478,0.546598841749175,0.577152805526624,0.619823478758052,0.601106972797835,0.517498227378343,0.567176278230629,0.609237975860836,0.491011246700207,0.54310611083946,0.50572333080369,0.513154373550789,"lena","voc_fem_ph"
+0.696758086752187,0.645189786079152,0.641425054321643,0.629453963277946,0.592555542265142,0.644511920607656,0.658923176694353,0.580677349116494,0.623689877019895,0.640882475134395,0.661099093221465,0.593221941963173,0.594665178059068,0.614106889293579,0.593167342291599,0.725763384050695,0.631959061798077,0.639070822456476,0.674279299217425,0.631529305919641,"lena","peak_lena_CVC"
+0.763658500781102,0.773891586458686,0.800911835303583,0.800250345170873,0.783075481663763,0.754179278523276,0.768031417382834,0.770998670324636,0.807818200876252,0.786758062920238,0.7636373819806,0.753697556930721,0.781068039805792,0.770126140655244,0.766969080995378,0.755641750312263,0.75010284381333,0.754536701655649,0.741592130919925,0.75533166840185,"lena","lp_dur"
+0.775892305953215,0.778540101181716,0.81895113527401,0.77968598559923,0.781561820944015,0.777397390085828,0.760677633238953,0.788727690483725,0.824719327683834,0.7905301880737,0.782711852829207,0.768965848172053,0.790343241539025,0.783933777661662,0.786803693321835,0.769893435356823,0.752394046882338,0.776009882632672,0.784722534577451,0.774225859636926,"lena","lp_n"
+0.439636629820268,0.404913901203166,0.550023554462268,0.594512063320651,0.479836522210031,0.425762920796798,0.501126025285965,0.44728897822116,0.486602238319865,0.46063452151003,0.551186373416827,0.364061612521885,0.38931901079635,0.475129966219148,0.341835770017199,0.519725294425534,0.48069907923344,0.507074015590539,0.378615609629221,0.442517322734341,"lena","avg_cry_voc_dur_chi"
+0.461981184260431,0.485444274549031,0.517046987205322,0.436810937326246,0.425737864119371,0.513794693217966,0.523577457889209,0.460503439963971,0.522958602367822,0.475203213207526,0.557398990067011,0.484267574700238,0.475813419516529,0.474222222465513,0.457314931184882,0.509333366280293,0.438885486344394,0.418481196537964,0.454979069064121,0.432190664863474,"lena","cry_voc_dur_chi_ph"
+0.468552399510549,0.488414853873718,0.503548805961052,0.424266701818131,0.399155468809156,0.464363856813862,0.4927485915328,0.486445709177059,0.469405637620194,0.468051481694066,0.546311588671409,0.446651693496508,0.481906915117125,0.474945807011885,0.44358840550374,0.474438486978612,0.404657673763065,0.427740621440333,0.46895088533288,0.40061292329364,"lena","cry_voc_chi_ph"
+0.29221118910306,0.333238310131762,0.396664032410664,0.312576461586514,0.339482824564949,0.327374112483269,0.414285266003601,0.446278916520041,0.367018984231649,0.304567360564912,0.333915974311184,0.456092976586314,0.358837710187657,0.232645575498345,0.22978144743025,0.377433677179335,0.230422614882585,0.296964861401757,0.338840436867077,0.372992909081037,"lena","peak_wc_adu"
+0.353712269525632,0.40607525375719,0.407186339283191,0.418602743790815,0.387132647480833,0.452766813326968,0.406363809187282,0.529121792311158,0.553496215316999,0.376730205823778,0.478798651179086,0.455980039982436,0.404257387254008,0.430945823422365,0.387049008855274,0.393306183071423,0.44181171243816,0.401528018561624,0.489128819933565,0.420702971418645,"lena","peak_wc_mal"
+0.283084968836904,0.236434680663377,0.257312295175333,0.358960070277126,0.277113251253458,0.278168451859211,0.333548005944031,0.377621862328594,0.295508719655307,0.257039648052911,0.237353668257669,0.370090155659494,0.357082014177678,0.184693780563629,0.247210927812735,0.37418596682577,0.173262884328418,0.270253234683132,0.276844582893971,0.336842303474954,"lena","peak_wc_fem"
+0.446342782355495,0.504698931066006,0.579748728260575,0.543917310822166,0.536977550040328,0.568500549168598,0.604358829971735,0.484426728586767,0.596126505311183,0.524345438243237,0.598645377869969,0.581628605283755,0.557335285172798,0.38994557880904,0.512388644824794,0.568364009261304,0.384345606485758,0.507037180560286,0.472424235433623,0.481964257603841,"lena","wc_adu_ph"
+0.495416764257919,0.395642425062681,0.475642645551151,0.387836057980293,0.45409170760701,0.475241962089334,0.481416879719821,0.559984781669361,0.622679378841084,0.551463296134509,0.535690435623764,0.390953940966402,0.520015855928099,0.488760305530557,0.438295571175104,0.422338107860466,0.426711854955899,0.410758756825009,0.548551514209281,0.346598611392662,"lena","wc_mal_ph"
+0.548912292756428,0.455231512738111,0.561493794376427,0.517597047174637,0.55752108782773,0.568002403399166,0.582219177092727,0.556043275340298,0.588996791320472,0.561771752580744,0.538754181002461,0.617474902929307,0.579678230741059,0.435322749871408,0.536512399950103,0.56409391986045,0.438012760139649,0.525041286713149,0.485945062408933,0.45038398308538,"lena","wc_fem_ph"
+0.490318137368078,0.567328407010419,0.646904954705906,0.618900487983524,0.594355026935827,0.561551332914421,0.666663187142742,0.595218819296988,0.531926101751923,0.584184002071092,0.596995166798317,0.373124786449771,0.548078767159135,0.550058838059385,0.492412585478013,0.538558770881597,0.634829128732732,0.557235591092447,0.567757921903953,0.550745042429091,"lena","avg_voc_dur_chi"
+0.416703987350695,0.406587706041473,0.430968872644221,0.432670912800272,0.374737837274107,0.400301374120868,0.381436989215389,0.418683194795644,0.366068851283697,0.346816319817315,0.461852924778205,0.35077775587906,0.41913303372982,0.410665039051536,0.411070855494646,0.370332653980733,0.442289169632383,0.361236317366322,0.506011947193841,0.463146228833003,"lena","avg_voc_dur_mal"
+0.479264498456892,0.398319461934832,0.416228797503012,0.571532062107262,0.401837408734622,0.441807201825883,0.400458521778958,0.447276962986031,0.498825040089607,0.458625150944248,0.432328467824554,0.476695084204696,0.503388313690747,0.354405910615426,0.474238605318202,0.459705328778063,0.355763731449345,0.361516846865297,0.393206280701846,0.472599811022094,"lena","avg_voc_dur_fem"
+0.616934907628417,0.601918166973835,0.668288822566744,0.61805279557086,0.533003299791367,0.609294042075418,0.612406516857663,0.602522842653481,0.583914917947506,0.624999686236764,0.652101227976341,0.527175048535465,0.670863944066618,0.585884944211583,0.613304727759077,0.643922141339968,0.578853715849266,0.588505687758261,0.613489683402696,0.572831416783597,"lena","voc_dur_chi_ph"
+0.665030122170378,0.73953518776717,0.737379028893827,0.722312118952761,0.664679195864159,0.695303728847737,0.699074038686938,0.640825349381162,0.691493325766367,0.608412025982768,0.733923919811332,0.689486277017726,0.678049190355401,0.670224146291901,0.642662826383981,0.712466729172385,0.689500557429511,0.701436018774193,0.660699624490525,0.694888119793336,"lena","voc_dur_och_ph"
+0.481438182087989,0.499339697603498,0.521765499959078,0.449726601647751,0.415491664354224,0.443743534234546,0.469448748818048,0.537673880251299,0.610337066586464,0.478811233748408,0.526506838358629,0.392284119532809,0.573059365253609,0.470675357616884,0.484413397651443,0.39403917688958,0.417718690737818,0.385245328585946,0.505948425739961,0.390799924257745,"lena","voc_dur_mal_ph"
+0.526804530556653,0.44776505063486,0.542107711185311,0.526967957568277,0.56143906129784,0.551012499575954,0.578910522472196,0.551261193891636,0.587169761657119,0.529973693270416,0.515136489450673,0.61366977467668,0.532829935726937,0.452673323274802,0.520855502606575,0.555989763864913,0.435403475897326,0.522096847563674,0.487574331901232,0.435581618101021,"lena","voc_dur_fem_ph"
+0.566611625504985,0.525770211275486,0.457873720479021,0.560021934427906,0.417797272219519,0.547179260569881,0.591096135864837,0.430339244539446,0.483560626524835,0.512844874573083,0.619521882220236,0.531273191646718,0.510365567806462,0.479989882994034,0.444448054105519,0.557318576502302,0.456022297100601,0.515027796846623,0.580505323476756,0.515273283037865,"lena","peak_voc_chi"
+0.585985512441094,0.610773630529681,0.668344551647968,0.602125495152683,0.530440073033009,0.631801891586781,0.622291783428741,0.598128488302872,0.600504177805796,0.594325656154649,0.678383598635582,0.556337765564853,0.638573434729219,0.593594951719832,0.597744632232196,0.620694646079525,0.543883135348932,0.607000557981912,0.615504085360421,0.606954847237407,"lena","voc_chi_ph"
+0.532289951406167,0.534137508625063,0.560175320081121,0.570846749881924,0.541673411821115,0.560333525590746,0.552250663271452,0.525641230163828,0.522055077430114,0.489678839023297,0.550489239283265,0.548638668377526,0.566268473110418,0.584255247716751,0.522039127670111,0.506627847158234,0.519321317039891,0.578791571063874,0.51019116561295,0.549759994007519,"lena","peak_voc_och"
+0.647380288932447,0.74520424212002,0.726716585103134,0.745906184957369,0.642159171679735,0.706006780001375,0.699623325979615,0.666369795644454,0.686804217289173,0.587301633730351,0.750446729445453,0.708956892013684,0.664542954160193,0.654711483606738,0.630378484387337,0.714881219608721,0.704547057507377,0.715080017577124,0.633218264146044,0.675968146379908,"lena","voc_och_ph"
+0.332074549164244,0.389989344642855,0.365276501608557,0.409887886333878,0.298290365236591,0.353706242169204,0.404723544833092,0.5155604556104,0.501068005820689,0.325310197418498,0.472635885764814,0.425138046567129,0.366001251141388,0.384037229722256,0.414133661984493,0.388517296927434,0.372985817271637,0.337488128410497,0.395800058117127,0.423551586492189,"lena","peak_voc_mal"
+0.487034309928276,0.38757652290954,0.424489940988794,0.417957387666436,0.436160598384062,0.404142274859563,0.487991415187703,0.52571301497637,0.592933022039014,0.496478303919758,0.539576882267025,0.350186804051403,0.519252297390047,0.442797901768391,0.466293418302343,0.343304052337942,0.326915201596124,0.38712436195036,0.533075131858983,0.353807990904881,"lena","voc_mal_ph"
+0.291684165433152,0.273424725276735,0.26770372239029,0.357344802199787,0.305670113844583,0.337084544463392,0.416165673082297,0.37586799053497,0.319303957240314,0.348238599072395,0.3214757017161,0.408797540026915,0.352482443973355,0.231927735737371,0.255166839355655,0.401433771954828,0.228845848404545,0.315723437627807,0.311058487615618,0.387157183989919,"lena","peak_voc_fem"
+0.445540488789363,0.506150551927157,0.51325877375364,0.417301682091102,0.583420255935482,0.495026979607543,0.566071397799542,0.410859116081603,0.480390679299775,0.536658243255658,0.518688600189683,0.511434812695369,0.475065198696925,0.527604948629044,0.528235304228402,0.300941278687904,0.505685847489519,0.533084164066374,0.546880286295768,0.48104834887551,"lena","avg_voc_dur_och"
+0.594960093725274,0.599230236546151,0.595049762046316,0.629742492369314,0.595853104408573,0.610603751606131,0.662293288971053,0.556855282975889,0.588735662785858,0.647560057000835,0.565504952204795,0.615952043915052,0.576532536018628,0.574290308509147,0.596380510375799,0.632187474854145,0.500564341416472,0.652903522616657,0.609605032571637,0.57690163989958,"lena","peak_lena_CTC"
+0.463872063365489,0.382343729503506,0.505179002037924,0.647481248001895,0.514252742479428,0.351661746285737,0.403323626273576,0.502829551834331,0.502668849325504,0.462302102757342,0.306867628625978,0.415661956926732,0.541541974013581,0.449488633955382,0.299640143665633,0.502540276769894,0.604939869917927,0.450664771123084,0.437438198817996,0.403004041387337,"lena","standardScore"
+0.635598483391995,0.693338144883636,0.737890602864552,0.667514767141114,0.687357786792968,0.687703695902893,0.742686061759789,0.704225016614417,0.681940831486715,0.668915328546687,0.749318583234339,0.701987009492323,0.668156090147111,0.684059709119378,0.661727902964815,0.724959702737149,0.613448433738284,0.733768200879471,0.699212927412113,0.688344555865903,"lena","lena_CTC_ph"
+0.697532746867757,0.668015827634027,0.750685429486053,0.709808193328942,0.64039580687794,0.711237726043676,0.732061943169949,0.691319540642723,0.702636737831559,0.704118625740177,0.73851727551993,0.665268328690606,0.727288662801766,0.7014043902009,0.697273711305511,0.718534463224642,0.647296647590542,0.695492737599131,0.722593704574213,0.736447241778487,"lena","lena_CVC_ph"

+ 1 - 1
input/el1000-metrics

@@ -1 +1 @@
-Subproject commit 87f92d4d62cff98d2226532644ffcd715411de20
+Subproject commit c61d982bf9c7b88394959b6fa1efb3aba58aeb0f

+ 1 - 1
input/laac-metrics

@@ -1 +1 @@
-Subproject commit a19af3e152363beac5128bd2b3337da325908461
+Subproject commit 431b54f0e59b56290fdabe59a5ec626545733be6