statsample-ekatena 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +23 -0
  4. data/CONTRIBUTING.md +17 -0
  5. data/Gemfile +2 -0
  6. data/History.txt +457 -0
  7. data/LICENSE.txt +12 -0
  8. data/README.md +175 -0
  9. data/Rakefile +44 -0
  10. data/benchmarks/correlation_matrix_15_variables.rb +32 -0
  11. data/benchmarks/correlation_matrix_5_variables.rb +33 -0
  12. data/benchmarks/correlation_matrix_methods/correlation_matrix.ds +0 -0
  13. data/benchmarks/correlation_matrix_methods/correlation_matrix.html +93 -0
  14. data/benchmarks/correlation_matrix_methods/correlation_matrix.rb +71 -0
  15. data/benchmarks/correlation_matrix_methods/correlation_matrix.xls +0 -0
  16. data/benchmarks/correlation_matrix_methods/correlation_matrix_gsl_ruby.ods +0 -0
  17. data/benchmarks/correlation_matrix_methods/correlation_matrix_with_graphics.ods +0 -0
  18. data/benchmarks/correlation_matrix_methods/results.ds +0 -0
  19. data/benchmarks/factor_map.rb +37 -0
  20. data/benchmarks/helpers_benchmark.rb +5 -0
  21. data/data/locale/es/LC_MESSAGES/statsample.mo +0 -0
  22. data/doc_latex/manual/equations.tex +78 -0
  23. data/examples/boxplot.rb +28 -0
  24. data/examples/chisquare_test.rb +23 -0
  25. data/examples/correlation_matrix.rb +32 -0
  26. data/examples/dataset.rb +30 -0
  27. data/examples/dominance_analysis.rb +33 -0
  28. data/examples/dominance_analysis_bootstrap.rb +32 -0
  29. data/examples/histogram.rb +26 -0
  30. data/examples/icc.rb +24 -0
  31. data/examples/levene.rb +29 -0
  32. data/examples/multiple_regression.rb +20 -0
  33. data/examples/multivariate_correlation.rb +33 -0
  34. data/examples/parallel_analysis.rb +40 -0
  35. data/examples/polychoric.rb +40 -0
  36. data/examples/principal_axis.rb +26 -0
  37. data/examples/reliability.rb +31 -0
  38. data/examples/scatterplot.rb +25 -0
  39. data/examples/t_test.rb +27 -0
  40. data/examples/tetrachoric.rb +17 -0
  41. data/examples/u_test.rb +24 -0
  42. data/examples/vector.rb +20 -0
  43. data/examples/velicer_map_test.rb +46 -0
  44. data/grab_references.rb +29 -0
  45. data/lib/spss.rb +134 -0
  46. data/lib/statsample-ekatena/analysis.rb +100 -0
  47. data/lib/statsample-ekatena/analysis/suite.rb +89 -0
  48. data/lib/statsample-ekatena/analysis/suitereportbuilder.rb +44 -0
  49. data/lib/statsample-ekatena/anova.rb +24 -0
  50. data/lib/statsample-ekatena/anova/contrast.rb +79 -0
  51. data/lib/statsample-ekatena/anova/oneway.rb +187 -0
  52. data/lib/statsample-ekatena/anova/twoway.rb +207 -0
  53. data/lib/statsample-ekatena/bivariate.rb +406 -0
  54. data/lib/statsample-ekatena/bivariate/pearson.rb +54 -0
  55. data/lib/statsample-ekatena/codification.rb +182 -0
  56. data/lib/statsample-ekatena/converter/csv.rb +28 -0
  57. data/lib/statsample-ekatena/converter/spss.rb +48 -0
  58. data/lib/statsample-ekatena/converters.rb +211 -0
  59. data/lib/statsample-ekatena/crosstab.rb +188 -0
  60. data/lib/statsample-ekatena/daru.rb +115 -0
  61. data/lib/statsample-ekatena/dataset.rb +10 -0
  62. data/lib/statsample-ekatena/dominanceanalysis.rb +425 -0
  63. data/lib/statsample-ekatena/dominanceanalysis/bootstrap.rb +232 -0
  64. data/lib/statsample-ekatena/factor.rb +104 -0
  65. data/lib/statsample-ekatena/factor/map.rb +124 -0
  66. data/lib/statsample-ekatena/factor/parallelanalysis.rb +166 -0
  67. data/lib/statsample-ekatena/factor/pca.rb +242 -0
  68. data/lib/statsample-ekatena/factor/principalaxis.rb +243 -0
  69. data/lib/statsample-ekatena/factor/rotation.rb +198 -0
  70. data/lib/statsample-ekatena/formula/fit_model.rb +46 -0
  71. data/lib/statsample-ekatena/formula/formula.rb +306 -0
  72. data/lib/statsample-ekatena/graph.rb +11 -0
  73. data/lib/statsample-ekatena/graph/boxplot.rb +236 -0
  74. data/lib/statsample-ekatena/graph/histogram.rb +198 -0
  75. data/lib/statsample-ekatena/graph/scatterplot.rb +213 -0
  76. data/lib/statsample-ekatena/histogram.rb +180 -0
  77. data/lib/statsample-ekatena/matrix.rb +329 -0
  78. data/lib/statsample-ekatena/multiset.rb +310 -0
  79. data/lib/statsample-ekatena/regression.rb +65 -0
  80. data/lib/statsample-ekatena/regression/multiple.rb +89 -0
  81. data/lib/statsample-ekatena/regression/multiple/alglibengine.rb +128 -0
  82. data/lib/statsample-ekatena/regression/multiple/baseengine.rb +251 -0
  83. data/lib/statsample-ekatena/regression/multiple/gslengine.rb +129 -0
  84. data/lib/statsample-ekatena/regression/multiple/matrixengine.rb +205 -0
  85. data/lib/statsample-ekatena/regression/multiple/rubyengine.rb +86 -0
  86. data/lib/statsample-ekatena/regression/simple.rb +121 -0
  87. data/lib/statsample-ekatena/reliability.rb +150 -0
  88. data/lib/statsample-ekatena/reliability/icc.rb +415 -0
  89. data/lib/statsample-ekatena/reliability/multiscaleanalysis.rb +181 -0
  90. data/lib/statsample-ekatena/reliability/scaleanalysis.rb +233 -0
  91. data/lib/statsample-ekatena/reliability/skillscaleanalysis.rb +114 -0
  92. data/lib/statsample-ekatena/resample.rb +15 -0
  93. data/lib/statsample-ekatena/shorthand.rb +125 -0
  94. data/lib/statsample-ekatena/srs.rb +169 -0
  95. data/lib/statsample-ekatena/test.rb +82 -0
  96. data/lib/statsample-ekatena/test/bartlettsphericity.rb +45 -0
  97. data/lib/statsample-ekatena/test/chisquare.rb +73 -0
  98. data/lib/statsample-ekatena/test/f.rb +52 -0
  99. data/lib/statsample-ekatena/test/kolmogorovsmirnov.rb +63 -0
  100. data/lib/statsample-ekatena/test/levene.rb +88 -0
  101. data/lib/statsample-ekatena/test/t.rb +309 -0
  102. data/lib/statsample-ekatena/test/umannwhitney.rb +208 -0
  103. data/lib/statsample-ekatena/test/wilcoxonsignedrank.rb +90 -0
  104. data/lib/statsample-ekatena/vector.rb +19 -0
  105. data/lib/statsample-ekatena/version.rb +3 -0
  106. data/lib/statsample.rb +282 -0
  107. data/po/es/statsample.mo +0 -0
  108. data/po/es/statsample.po +959 -0
  109. data/po/statsample.pot +947 -0
  110. data/references.txt +24 -0
  111. data/statsample-ekatena.gemspec +49 -0
  112. data/test/fixtures/bank2.dat +200 -0
  113. data/test/fixtures/correlation_matrix.rb +17 -0
  114. data/test/fixtures/df.csv +15 -0
  115. data/test/fixtures/hartman_23.matrix +9 -0
  116. data/test/fixtures/stock_data.csv +500 -0
  117. data/test/fixtures/tetmat_matrix.txt +5 -0
  118. data/test/fixtures/tetmat_test.txt +1001 -0
  119. data/test/helpers_tests.rb +83 -0
  120. data/test/test_analysis.rb +176 -0
  121. data/test/test_anova_contrast.rb +36 -0
  122. data/test/test_anovaoneway.rb +26 -0
  123. data/test/test_anovatwoway.rb +37 -0
  124. data/test/test_anovatwowaywithdataset.rb +47 -0
  125. data/test/test_anovawithvectors.rb +102 -0
  126. data/test/test_awesome_print_bug.rb +16 -0
  127. data/test/test_bartlettsphericity.rb +25 -0
  128. data/test/test_bivariate.rb +164 -0
  129. data/test/test_codification.rb +78 -0
  130. data/test/test_crosstab.rb +67 -0
  131. data/test/test_dominance_analysis.rb +39 -0
  132. data/test/test_factor.rb +228 -0
  133. data/test/test_factor_map.rb +38 -0
  134. data/test/test_factor_pa.rb +56 -0
  135. data/test/test_fit_model.rb +88 -0
  136. data/test/test_ggobi.rb +35 -0
  137. data/test/test_gsl.rb +15 -0
  138. data/test/test_histogram.rb +109 -0
  139. data/test/test_matrix.rb +48 -0
  140. data/test/test_multiset.rb +176 -0
  141. data/test/test_regression.rb +231 -0
  142. data/test/test_reliability.rb +223 -0
  143. data/test/test_reliability_icc.rb +198 -0
  144. data/test/test_reliability_skillscale.rb +57 -0
  145. data/test/test_resample.rb +24 -0
  146. data/test/test_srs.rb +9 -0
  147. data/test/test_statistics.rb +69 -0
  148. data/test/test_stest.rb +69 -0
  149. data/test/test_stratified.rb +17 -0
  150. data/test/test_test_f.rb +33 -0
  151. data/test/test_test_kolmogorovsmirnov.rb +34 -0
  152. data/test/test_test_t.rb +62 -0
  153. data/test/test_umannwhitney.rb +27 -0
  154. data/test/test_vector.rb +12 -0
  155. data/test/test_wilcoxonsignedrank.rb +64 -0
  156. metadata +570 -0
@@ -0,0 +1,947 @@
1
+ # Statsample po template.
2
+ # Copyright (C) 2009-2009 Claudio Bustos
3
+ # This file is distributed under the same license as the Statsample package.
4
+ # Claudio Bustos <clbustos_AT_gmail.com>
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: statsample 1.0.1\n"
10
+ "POT-Creation-Date: 2011-03-03 12:03-0300\n"
11
+ "PO-Revision-Date: 2009-08-04 15:36-0400\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: lib/statsample/test/f.rb:26
20
+ msgid "F Test"
21
+ msgstr ""
22
+
23
+ #: lib/statsample/test/t.rb:82
24
+ msgid "T Test"
25
+ msgstr ""
26
+
27
+ #: lib/statsample/test/t.rb:83
28
+ msgid "Estimate"
29
+ msgstr ""
30
+
31
+ #: lib/statsample/test/t.rb:84
32
+ msgid "Std.Err.of Estimate"
33
+ msgstr ""
34
+
35
+ #: lib/statsample/test/t.rb:114
36
+ msgid "%s: %0.4f | %s: %0.4f"
37
+ msgstr ""
38
+
39
+ #: lib/statsample/test/t.rb:120
40
+ msgid "t(%d) = %0.4f, p=%0.4f (%s tails)"
41
+ msgstr ""
42
+
43
+ #: lib/statsample/test/t.rb:121
44
+ msgid "CI(%d%%): %0.4f - %0.4f"
45
+ msgstr ""
46
+
47
+ #: lib/statsample/test/t.rb:190
48
+ msgid "Sample mean: %0.4f | Sample sd: %0.4f | se : %0.4f"
49
+ msgstr ""
50
+
51
+ #: lib/statsample/test/t.rb:191
52
+ msgid "Population mean: %0.4f"
53
+ msgstr ""
54
+
55
+ #: lib/statsample/test/t.rb:292
56
+ msgid "Mean and standard deviation"
57
+ msgstr ""
58
+
59
+ #: lib/statsample/test/t.rb:292 lib/statsample/regression/simple.rb:109
60
+ #: lib/statsample/factor/pca.rb:216 lib/statsample/factor/principalaxis.rb:202
61
+ msgid "Variable"
62
+ msgstr ""
63
+
64
+ #: lib/statsample/test/t.rb:292
65
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:208
66
+ msgid "mean"
67
+ msgstr ""
68
+
69
+ #: lib/statsample/test/t.rb:292
70
+ msgid "sd"
71
+ msgstr ""
72
+
73
+ #: lib/statsample/test/t.rb:292 lib/statsample/factor/parallelanalysis.rb:103
74
+ #: lib/statsample/factor/parallelanalysis.rb:111
75
+ msgid "n"
76
+ msgstr ""
77
+
78
+ #: lib/statsample/test/t.rb:296
79
+ msgid "Levene test for equality of variances"
80
+ msgstr ""
81
+
82
+ #: lib/statsample/test/t.rb:298
83
+ msgid "T statistics"
84
+ msgstr ""
85
+
86
+ #: lib/statsample/test/t.rb:299
87
+ msgid "Equal variance"
88
+ msgstr ""
89
+
90
+ #: lib/statsample/test/t.rb:300
91
+ msgid "Non equal variance"
92
+ msgstr ""
93
+
94
+ #: lib/statsample/test/t.rb:302
95
+ msgid "Effect size"
96
+ msgstr ""
97
+
98
+ #: lib/statsample/test/umannwhitney.rb:140
99
+ msgid "Mann-Whitney's U"
100
+ msgstr ""
101
+
102
+ #: lib/statsample/test/umannwhitney.rb:149
103
+ msgid "%s results"
104
+ msgstr ""
105
+
106
+ #: lib/statsample/test/umannwhitney.rb:150
107
+ #: lib/statsample/test/umannwhitney.rb:151
108
+ msgid "Sum of ranks %s"
109
+ msgstr ""
110
+
111
+ #: lib/statsample/test/umannwhitney.rb:152
112
+ msgid "U Value"
113
+ msgstr ""
114
+
115
+ #: lib/statsample/test/umannwhitney.rb:153
116
+ msgid "Z"
117
+ msgstr ""
118
+
119
+ #: lib/statsample/test/umannwhitney.rb:155
120
+ msgid "Exact p (Dinneen & Blakesley, 1973):"
121
+ msgstr ""
122
+
123
+ #: lib/statsample/test/levene.rb:37
124
+ msgid "Levene Test"
125
+ msgstr ""
126
+
127
+ #: lib/statsample/test/bartlettsphericity.rb:25
128
+ msgid "Bartlett's test of sphericity"
129
+ msgstr ""
130
+
131
+ #: lib/statsample/regression/multiple/baseengine.rb:27
132
+ msgid "Multiple Regression: %s over %s"
133
+ msgstr ""
134
+
135
+ #: lib/statsample/regression/multiple/baseengine.rb:40
136
+ msgid "Regression"
137
+ msgstr ""
138
+
139
+ #: lib/statsample/regression/multiple/baseengine.rb:40
140
+ msgid "Error"
141
+ msgstr ""
142
+
143
+ #: lib/statsample/regression/multiple/baseengine.rb:184
144
+ msgid "Engine: %s"
145
+ msgstr ""
146
+
147
+ #: lib/statsample/regression/multiple/baseengine.rb:185
148
+ msgid "Cases(listwise)=%d(%d)"
149
+ msgstr ""
150
+
151
+ #: lib/statsample/regression/multiple/baseengine.rb:186
152
+ msgid "R="
153
+ msgstr ""
154
+
155
+ #: lib/statsample/regression/multiple/baseengine.rb:187
156
+ msgid "R^2="
157
+ msgstr ""
158
+
159
+ #: lib/statsample/regression/multiple/baseengine.rb:188
160
+ msgid "R^2 Adj="
161
+ msgstr ""
162
+
163
+ #: lib/statsample/regression/multiple/baseengine.rb:189
164
+ msgid "Std.Error R="
165
+ msgstr ""
166
+
167
+ #: lib/statsample/regression/multiple/baseengine.rb:191
168
+ msgid "Equation"
169
+ msgstr ""
170
+
171
+ #: lib/statsample/regression/multiple/baseengine.rb:197
172
+ msgid "Beta coefficients"
173
+ msgstr ""
174
+
175
+ #: lib/statsample/regression/multiple/baseengine.rb:198
176
+ msgid "Constant"
177
+ msgstr ""
178
+
179
+ #: lib/statsample/regression/multiple/matrixengine.rb:78
180
+ msgid "Multiple reggresion of %s on %s"
181
+ msgstr ""
182
+
183
+ #: lib/statsample/regression/simple.rb:88
184
+ msgid "Regression of %s over %s"
185
+ msgstr ""
186
+
187
+ #: lib/statsample/regression/simple.rb:109 lib/statsample/factor/map.rb:105
188
+ #: lib/statsample/reliability/skillscaleanalysis.rb:92
189
+ msgid "Value"
190
+ msgstr ""
191
+
192
+ #: lib/statsample/regression/simple.rb:110
193
+ msgid "r"
194
+ msgstr ""
195
+
196
+ #: lib/statsample/regression/simple.rb:111
197
+ msgid "r^2"
198
+ msgstr ""
199
+
200
+ #: lib/statsample/regression/simple.rb:112
201
+ msgid "a"
202
+ msgstr ""
203
+
204
+ #: lib/statsample/regression/simple.rb:113
205
+ msgid "b"
206
+ msgstr ""
207
+
208
+ #: lib/statsample/regression/simple.rb:114
209
+ msgid "s.e"
210
+ msgstr ""
211
+
212
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:115
213
+ msgid "Bootstrap dominance Analysis: %s over %s"
214
+ msgstr ""
215
+
216
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:138
217
+ msgid "Bootstrap %d of %d"
218
+ msgstr ""
219
+
220
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:177
221
+ msgid "Sample size: %d\n"
222
+ msgstr ""
223
+
224
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:179
225
+ msgid "Linear Regression Engine: %s"
226
+ msgstr ""
227
+
228
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:181
229
+ msgid "pairs"
230
+ msgstr ""
231
+
232
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:181
233
+ msgid "SE(Dij)"
234
+ msgstr ""
235
+
236
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:181
237
+ msgid "Reproducibility"
238
+ msgstr ""
239
+
240
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:182
241
+ msgid "Complete dominance"
242
+ msgstr ""
243
+
244
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:190
245
+ msgid "Conditional dominance"
246
+ msgstr ""
247
+
248
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:199
249
+ msgid "General Dominance"
250
+ msgstr ""
251
+
252
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:208
253
+ msgid "General averages"
254
+ msgstr ""
255
+
256
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:208
257
+ msgid "var"
258
+ msgstr ""
259
+
260
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:208
261
+ msgid "se"
262
+ msgstr ""
263
+
264
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:208
265
+ msgid "p.5"
266
+ msgstr ""
267
+
268
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:208
269
+ msgid "p.95"
270
+ msgstr ""
271
+
272
+ #: lib/statsample/anova/twoway.rb:59
273
+ msgid "ANOVA Two-Way"
274
+ msgstr ""
275
+
276
+ #: lib/statsample/anova/twoway.rb:60
277
+ msgid "A"
278
+ msgstr ""
279
+
280
+ #: lib/statsample/anova/twoway.rb:61
281
+ msgid "B"
282
+ msgstr ""
283
+
284
+ #: lib/statsample/anova/twoway.rb:62
285
+ msgid "Within"
286
+ msgstr ""
287
+
288
+ #: lib/statsample/anova/twoway.rb:98 lib/statsample/anova/oneway.rb:57
289
+ msgid "%s Table"
290
+ msgstr ""
291
+
292
+ #: lib/statsample/anova/twoway.rb:103 lib/statsample/anova/oneway.rb:60
293
+ #: lib/statsample/crosstab.rb:101 lib/statsample/crosstab.rb:116
294
+ #: lib/statsample/crosstab.rb:151 lib/statsample/crosstab.rb:173
295
+ #: lib/statsample/dominanceanalysis.rb:354
296
+ msgid "Total"
297
+ msgstr ""
298
+
299
+ #: lib/statsample/anova/twoway.rb:172
300
+ msgid "Anova Two-Way on %s"
301
+ msgstr ""
302
+
303
+ #: lib/statsample/anova/twoway.rb:184 lib/statsample/anova/oneway.rb:127
304
+ msgid "Test of Homogeneity of variances (Levene)"
305
+ msgstr ""
306
+
307
+ #: lib/statsample/anova/twoway.rb:189 lib/statsample/anova/twoway.rb:193
308
+ msgid "%s Mean"
309
+ msgstr ""
310
+
311
+ #: lib/statsample/anova/oneway.rb:35
312
+ msgid "Explained variance"
313
+ msgstr ""
314
+
315
+ #: lib/statsample/anova/oneway.rb:36
316
+ msgid "Unexplained variance"
317
+ msgstr ""
318
+
319
+ #: lib/statsample/anova/oneway.rb:97
320
+ msgid "Anova One-Way"
321
+ msgstr ""
322
+
323
+ #: lib/statsample/anova/oneway.rb:98
324
+ msgid "Between Groups"
325
+ msgstr ""
326
+
327
+ #: lib/statsample/anova/oneway.rb:99
328
+ msgid "Within Groups"
329
+ msgstr ""
330
+
331
+ #: lib/statsample/anova/oneway.rb:119
332
+ msgid "Contrast for %s"
333
+ msgstr ""
334
+
335
+ #: lib/statsample/anova/oneway.rb:163
336
+ msgid "Descriptives"
337
+ msgstr ""
338
+
339
+ #: lib/statsample/anova/contrast.rb:13
340
+ msgid "Psi estimate"
341
+ msgstr ""
342
+
343
+ #: lib/statsample/anova/contrast.rb:14
344
+ msgid "Contrast"
345
+ msgstr ""
346
+
347
+ #: lib/statsample/anova/contrast.rb:73
348
+ msgid "Contrast:%s"
349
+ msgstr ""
350
+
351
+ #: lib/statsample/graph/scatterplot.rb:72
352
+ msgid "Scatterplot (%s - %s)"
353
+ msgstr ""
354
+
355
+ #: lib/statsample/graph/histogram.rb:50
356
+ msgid "Histograma (%s)"
357
+ msgstr ""
358
+
359
+ #: lib/statsample/graph/boxplot.rb:63
360
+ msgid "Boxplot"
361
+ msgstr ""
362
+
363
+ #: lib/statsample/bivariate/pearson.rb:32
364
+ msgid "Correlation (%s - %s)"
365
+ msgstr ""
366
+
367
+ #: lib/statsample/bivariate/pearson.rb:50
368
+ msgid "%s : r=%0.3f (t:%0.3f, g.l.=%d, p:%0.3f / %s tails)"
369
+ msgstr ""
370
+
371
+ #: lib/statsample/factor/parallelanalysis.rb:68
372
+ msgid "Parallel Analysis"
373
+ msgstr ""
374
+
375
+ #: lib/statsample/factor/parallelanalysis.rb:96
376
+ msgid "Bootstrap Method: %s"
377
+ msgstr ""
378
+
379
+ #: lib/statsample/factor/parallelanalysis.rb:97
380
+ msgid "Uses SMC: %s"
381
+ msgstr ""
382
+
383
+ #: lib/statsample/factor/parallelanalysis.rb:97
384
+ msgid "Yes"
385
+ msgstr ""
386
+
387
+ #: lib/statsample/factor/parallelanalysis.rb:97
388
+ msgid "No"
389
+ msgstr ""
390
+
391
+ #: lib/statsample/factor/parallelanalysis.rb:98
392
+ msgid "Correlation Matrix type : %s"
393
+ msgstr ""
394
+
395
+ #: lib/statsample/factor/parallelanalysis.rb:99
396
+ msgid "Number of variables: %d"
397
+ msgstr ""
398
+
399
+ #: lib/statsample/factor/parallelanalysis.rb:100
400
+ msgid "Number of cases: %d"
401
+ msgstr ""
402
+
403
+ #: lib/statsample/factor/parallelanalysis.rb:101
404
+ msgid "Number of iterations: %d"
405
+ msgstr ""
406
+
407
+ #: lib/statsample/factor/parallelanalysis.rb:103
408
+ #: lib/statsample/factor/parallelanalysis.rb:111
409
+ #: lib/statsample/factor/map.rb:105
410
+ msgid "Eigenvalues"
411
+ msgstr ""
412
+
413
+ #: lib/statsample/factor/parallelanalysis.rb:103
414
+ #: lib/statsample/factor/parallelanalysis.rb:111
415
+ msgid "generated eigenvalue"
416
+ msgstr ""
417
+
418
+ #: lib/statsample/factor/parallelanalysis.rb:110
419
+ msgid "Number or factors to preserve: %d"
420
+ msgstr ""
421
+
422
+ #: lib/statsample/factor/parallelanalysis.rb:111
423
+ msgid "data eigenvalue"
424
+ msgstr ""
425
+
426
+ #: lib/statsample/factor/parallelanalysis.rb:111
427
+ msgid "preserve?"
428
+ msgstr ""
429
+
430
+ #: lib/statsample/factor/map.rb:60
431
+ msgid "Velicer's MAP"
432
+ msgstr ""
433
+
434
+ #: lib/statsample/factor/map.rb:110
435
+ msgid "Velicer's Average Squared Correlations"
436
+ msgstr ""
437
+
438
+ #: lib/statsample/factor/map.rb:110
439
+ msgid "number of components"
440
+ msgstr ""
441
+
442
+ #: lib/statsample/factor/map.rb:110
443
+ msgid "average square correlation"
444
+ msgstr ""
445
+
446
+ #: lib/statsample/factor/map.rb:115
447
+ msgid "The smallest average squared correlation is : %0.6f"
448
+ msgstr ""
449
+
450
+ #: lib/statsample/factor/map.rb:116
451
+ msgid "The number of components is : %d"
452
+ msgstr ""
453
+
454
+ #: lib/statsample/factor/pca.rb:56
455
+ msgid "Principal Component Analysis"
456
+ msgstr ""
457
+
458
+ #: lib/statsample/factor/pca.rb:59 lib/statsample/matrix.rb:14
459
+ #: lib/statsample/matrix.rb:81
460
+ msgid "VAR_%d"
461
+ msgstr ""
462
+
463
+ #: lib/statsample/factor/pca.rb:160
464
+ msgid "Component matrix (from covariance)"
465
+ msgstr ""
466
+
467
+ #: lib/statsample/factor/pca.rb:181
468
+ msgid "Component matrix"
469
+ msgstr ""
470
+
471
+ #: lib/statsample/factor/pca.rb:215 lib/statsample/factor/principalaxis.rb:200
472
+ msgid "Number of factors: %d"
473
+ msgstr ""
474
+
475
+ #: lib/statsample/factor/pca.rb:216 lib/statsample/factor/principalaxis.rb:202
476
+ msgid "Communalities"
477
+ msgstr ""
478
+
479
+ #: lib/statsample/factor/pca.rb:216 lib/statsample/factor/principalaxis.rb:202
480
+ msgid "Initial"
481
+ msgstr ""
482
+
483
+ #: lib/statsample/factor/pca.rb:216 lib/statsample/factor/principalaxis.rb:202
484
+ msgid "Extraction"
485
+ msgstr ""
486
+
487
+ #: lib/statsample/factor/pca.rb:216 lib/statsample/factor/pca.rb:223
488
+ #: lib/statsample/reliability/skillscaleanalysis.rb:92
489
+ msgid "%"
490
+ msgstr ""
491
+
492
+ #: lib/statsample/factor/pca.rb:223
493
+ msgid "Total Variance Explained"
494
+ msgstr ""
495
+
496
+ #: lib/statsample/factor/pca.rb:223
497
+ msgid "Component"
498
+ msgstr ""
499
+
500
+ #: lib/statsample/factor/pca.rb:223
501
+ msgid "E.Total"
502
+ msgstr ""
503
+
504
+ #: lib/statsample/factor/pca.rb:223
505
+ msgid "Cum. %"
506
+ msgstr ""
507
+
508
+ #: lib/statsample/factor/pca.rb:227
509
+ msgid "Component %d"
510
+ msgstr ""
511
+
512
+ #: lib/statsample/factor/principalaxis.rb:70
513
+ msgid "Variable %d"
514
+ msgstr ""
515
+
516
+ #: lib/statsample/factor/principalaxis.rb:147
517
+ msgid "Factor Matrix"
518
+ msgstr ""
519
+
520
+ #: lib/statsample/factor/principalaxis.rb:201
521
+ msgid "Iterations: %d"
522
+ msgstr ""
523
+
524
+ #: lib/statsample/factor/principalaxis.rb:207
525
+ msgid "Total Variance"
526
+ msgstr ""
527
+
528
+ #: lib/statsample/factor/principalaxis.rb:207
529
+ msgid "Factor"
530
+ msgstr ""
531
+
532
+ #: lib/statsample/factor/principalaxis.rb:207
533
+ msgid "I.E.Total"
534
+ msgstr ""
535
+
536
+ #: lib/statsample/factor/principalaxis.rb:207
537
+ msgid "I.E. %"
538
+ msgstr ""
539
+
540
+ #: lib/statsample/factor/principalaxis.rb:207
541
+ msgid "I.E.Cum. %"
542
+ msgstr ""
543
+
544
+ #: lib/statsample/factor/principalaxis.rb:208
545
+ msgid "S.L.Total"
546
+ msgstr ""
547
+
548
+ #: lib/statsample/factor/principalaxis.rb:208
549
+ msgid "S.L. %"
550
+ msgstr ""
551
+
552
+ #: lib/statsample/factor/principalaxis.rb:208
553
+ msgid "S.L.Cum. %"
554
+ msgstr ""
555
+
556
+ #: lib/statsample/factor/principalaxis.rb:215
557
+ msgid "Factor %d"
558
+ msgstr ""
559
+
560
+ #: lib/statsample/factor/rotation.rb:35
561
+ msgid "%s rotation"
562
+ msgstr ""
563
+
564
+ #: lib/statsample/factor/rotation.rb:132
565
+ msgid "Rotated Component matrix"
566
+ msgstr ""
567
+
568
+ #: lib/statsample/factor/rotation.rb:149
569
+ msgid "Component transformation matrix"
570
+ msgstr ""
571
+
572
+ #: lib/statsample/reliability/multiscaleanalysis.rb:67
573
+ msgid "Multiple Scale analysis"
574
+ msgstr ""
575
+
576
+ #: lib/statsample/reliability/multiscaleanalysis.rb:97
577
+ msgid "Scale %s"
578
+ msgstr ""
579
+
580
+ #: lib/statsample/reliability/multiscaleanalysis.rb:145
581
+ msgid "Reliability analysis of scales"
582
+ msgstr ""
583
+
584
+ #: lib/statsample/reliability/multiscaleanalysis.rb:151
585
+ msgid "Correlation matrix for %s"
586
+ msgstr ""
587
+
588
+ #: lib/statsample/reliability/multiscaleanalysis.rb:156
589
+ msgid "PCA for %s"
590
+ msgstr ""
591
+
592
+ #: lib/statsample/reliability/multiscaleanalysis.rb:161
593
+ msgid "Principal Axis for %s"
594
+ msgstr ""
595
+
596
+ #: lib/statsample/reliability/multiscaleanalysis.rb:167
597
+ msgid "Parallel Analysis for %s"
598
+ msgstr ""
599
+
600
+ #: lib/statsample/reliability/multiscaleanalysis.rb:172
601
+ msgid "MAP for %s"
602
+ msgstr ""
603
+
604
+ #: lib/statsample/reliability/skillscaleanalysis.rb:21
605
+ msgid "Skill Scale Reliability Analysis (%s)"
606
+ msgstr ""
607
+
608
+ #: lib/statsample/reliability/skillscaleanalysis.rb:36
609
+ msgid "%s(corrected)"
610
+ msgstr ""
611
+
612
+ #: lib/statsample/reliability/skillscaleanalysis.rb:40
613
+ msgid "Corrected dataset from %s"
614
+ msgstr ""
615
+
616
+ #: lib/statsample/reliability/skillscaleanalysis.rb:51
617
+ msgid "%s (Scale Analysis)"
618
+ msgstr ""
619
+
620
+ #: lib/statsample/reliability/skillscaleanalysis.rb:82
621
+ msgid "Problematic Items"
622
+ msgstr ""
623
+
624
+ #: lib/statsample/reliability/skillscaleanalysis.rb:87
625
+ msgid "Item: %s"
626
+ msgstr ""
627
+
628
+ #: lib/statsample/reliability/skillscaleanalysis.rb:88
629
+ msgid "Correct answer: %s"
630
+ msgstr ""
631
+
632
+ #: lib/statsample/reliability/skillscaleanalysis.rb:89
633
+ msgid "p: %0.3f"
634
+ msgstr ""
635
+
636
+ #: lib/statsample/reliability/skillscaleanalysis.rb:101
637
+ msgid "No problematic items"
638
+ msgstr ""
639
+
640
+ #: lib/statsample/reliability/scaleanalysis.rb:44
641
+ msgid "Reliability Analisis"
642
+ msgstr ""
643
+
644
+ #: lib/statsample/reliability/scaleanalysis.rb:157
645
+ msgid "Summary for %s with all items"
646
+ msgstr ""
647
+
648
+ #: lib/statsample/reliability/scaleanalysis.rb:158
649
+ msgid "Items"
650
+ msgstr ""
651
+
652
+ #: lib/statsample/reliability/scaleanalysis.rb:159
653
+ #: lib/statsample/reliability/scaleanalysis.rb:176
654
+ msgid "Sum mean"
655
+ msgstr ""
656
+
657
+ #: lib/statsample/reliability/scaleanalysis.rb:160
658
+ msgid "S.d. mean"
659
+ msgstr ""
660
+
661
+ #: lib/statsample/reliability/scaleanalysis.rb:162
662
+ msgid "Deleted items"
663
+ msgstr ""
664
+
665
+ #: lib/statsample/reliability/scaleanalysis.rb:172
666
+ msgid "Summary for %s"
667
+ msgstr ""
668
+
669
+ #: lib/statsample/reliability/scaleanalysis.rb:173
670
+ msgid "Valid Items"
671
+ msgstr ""
672
+
673
+ #: lib/statsample/reliability/scaleanalysis.rb:175
674
+ msgid "Valid cases"
675
+ msgstr ""
676
+
677
+ #: lib/statsample/reliability/scaleanalysis.rb:177
678
+ msgid "Sum sd"
679
+ msgstr ""
680
+
681
+ #: lib/statsample/reliability/scaleanalysis.rb:179
682
+ msgid "Sum median"
683
+ msgstr ""
684
+
685
+ #: lib/statsample/reliability/scaleanalysis.rb:181
686
+ msgid "Item mean"
687
+ msgstr ""
688
+
689
+ #: lib/statsample/reliability/scaleanalysis.rb:182
690
+ msgid "Item sd"
691
+ msgstr ""
692
+
693
+ #: lib/statsample/reliability/scaleanalysis.rb:184
694
+ msgid "Skewness"
695
+ msgstr ""
696
+
697
+ #: lib/statsample/reliability/scaleanalysis.rb:185
698
+ msgid "Kurtosis"
699
+ msgstr ""
700
+
701
+ #: lib/statsample/reliability/scaleanalysis.rb:187
702
+ msgid "Cronbach's alpha"
703
+ msgstr ""
704
+
705
+ #: lib/statsample/reliability/scaleanalysis.rb:188
706
+ msgid "Standarized Cronbach's alpha"
707
+ msgstr ""
708
+
709
+ #: lib/statsample/reliability/scaleanalysis.rb:189
710
+ msgid "Mean rpb"
711
+ msgstr ""
712
+
713
+ #: lib/statsample/reliability/scaleanalysis.rb:191
714
+ msgid "Variances mean"
715
+ msgstr ""
716
+
717
+ #: lib/statsample/reliability/scaleanalysis.rb:192
718
+ msgid "Covariances mean"
719
+ msgstr ""
720
+
721
+ #: lib/statsample/reliability/scaleanalysis.rb:196
722
+ msgid "Items for obtain alpha(0.8) : %d"
723
+ msgstr ""
724
+
725
+ #: lib/statsample/reliability/scaleanalysis.rb:197
726
+ msgid "Items for obtain alpha(0.9) : %d"
727
+ msgstr ""
728
+
729
+ #: lib/statsample/reliability/scaleanalysis.rb:205
730
+ msgid "Items report for %s"
731
+ msgstr ""
732
+
733
+ #: lib/statsample/reliability/icc.rb:114
734
+ msgid "Shrout & Fleiss ICC(1,1)"
735
+ msgstr ""
736
+
737
+ #: lib/statsample/reliability/icc.rb:119
738
+ msgid "Shrout & Fleiss ICC(2,1)"
739
+ msgstr ""
740
+
741
+ #: lib/statsample/reliability/icc.rb:125
742
+ msgid "Shrout & Fleiss ICC(3,1)"
743
+ msgstr ""
744
+
745
+ #: lib/statsample/reliability/icc.rb:132
746
+ msgid "Shrout & Fleiss ICC(1,k)"
747
+ msgstr ""
748
+
749
+ #: lib/statsample/reliability/icc.rb:138
750
+ msgid "Shrout & Fleiss ICC(2,k)"
751
+ msgstr ""
752
+
753
+ #: lib/statsample/reliability/icc.rb:145
754
+ msgid "Shrout & Fleiss ICC(3,k)"
755
+ msgstr ""
756
+
757
+ #: lib/statsample/reliability/icc.rb:153
758
+ msgid "McGraw & Wong ICC(1)"
759
+ msgstr ""
760
+
761
+ #: lib/statsample/reliability/icc.rb:159
762
+ msgid "McGraw & Wong ICC(K)"
763
+ msgstr ""
764
+
765
+ #: lib/statsample/reliability/icc.rb:165
766
+ msgid "McGraw & Wong ICC(C,1)"
767
+ msgstr ""
768
+
769
+ #: lib/statsample/reliability/icc.rb:172
770
+ msgid "McGraw & Wong ICC(C,K)"
771
+ msgstr ""
772
+
773
+ #: lib/statsample/reliability/icc.rb:179
774
+ msgid "McGraw & Wong ICC(A,1)"
775
+ msgstr ""
776
+
777
+ #: lib/statsample/reliability/icc.rb:186
778
+ msgid "McGraw & Wong ICC(A,K)"
779
+ msgstr ""
780
+
781
+ #: lib/statsample/reliability/icc.rb:408
782
+ msgid "ICC: %0.4f"
783
+ msgstr ""
784
+
785
+ #: lib/statsample/reliability/icc.rb:410
786
+ msgid "CI (%0.2f): [%0.4f - %0.4f]"
787
+ msgstr ""
788
+
789
+ #: lib/statsample/crosstab.rb:22
790
+ msgid "Crosstab %s - %s"
791
+ msgstr ""
792
+
793
+ #: lib/statsample/crosstab.rb:98
794
+ msgid "Rows: %s"
795
+ msgstr ""
796
+
797
+ #: lib/statsample/crosstab.rb:99
798
+ msgid "Columns: %s"
799
+ msgstr ""
800
+
801
+ #: lib/statsample/crosstab.rb:101
802
+ msgid "Raw"
803
+ msgstr ""
804
+
805
+ #: lib/statsample/crosstab.rb:146
806
+ msgid "% Row"
807
+ msgstr ""
808
+
809
+ #: lib/statsample/crosstab.rb:147
810
+ msgid "% Column"
811
+ msgstr ""
812
+
813
+ #: lib/statsample/crosstab.rb:148
814
+ msgid "% Total"
815
+ msgstr ""
816
+
817
+ #: lib/statsample/dominanceanalysis.rb:121
818
+ msgid "Dominance Analysis: %s over %s"
819
+ msgstr ""
820
+
821
+ #: lib/statsample/dominanceanalysis.rb:315
822
+ msgid "sign"
823
+ msgstr ""
824
+
825
+ #: lib/statsample/dominanceanalysis.rb:317
826
+ msgid "Dominance Analysis result"
827
+ msgstr ""
828
+
829
+ #: lib/statsample/dominanceanalysis.rb:318
830
+ msgid "Model 0"
831
+ msgstr ""
832
+
833
+ #: lib/statsample/dominanceanalysis.rb:333
834
+ msgid "k=%d Average"
835
+ msgstr ""
836
+
837
+ #: lib/statsample/dominanceanalysis.rb:345
838
+ msgid "Overall averages"
839
+ msgstr ""
840
+
841
+ #: lib/statsample/dominanceanalysis.rb:354
842
+ msgid "Pairwise dominance"
843
+ msgstr ""
844
+
845
+ #: lib/statsample/dominanceanalysis.rb:354
846
+ msgid "Pairs"
847
+ msgstr ""
848
+
849
+ #: lib/statsample/dominanceanalysis.rb:354
850
+ msgid "Conditional"
851
+ msgstr ""
852
+
853
+ #: lib/statsample/dominanceanalysis.rb:354
854
+ msgid "General"
855
+ msgstr ""
856
+
857
+ #: lib/statsample/matrix.rb:181
858
+ msgid "X%d"
859
+ msgstr ""
860
+
861
+ #: lib/statsample/matrix.rb:184
862
+ msgid "Y%d"
863
+ msgstr ""
864
+
865
+ #: lib/statsample/matrix.rb:196
866
+ msgid "Matrix %d"
867
+ msgstr ""
868
+
869
+ #: lib/statsample/matrix.rb:255
870
+ msgid "Covariate matrix %d"
871
+ msgstr ""
872
+
873
+ #: lib/statsample/matrix.rb:303
874
+ msgid "Correlation"
875
+ msgstr ""
876
+
877
+ #: lib/statsample/matrix.rb:303
878
+ msgid "Covariance"
879
+ msgstr ""
880
+
881
+ #: lib/statsample/matrix.rb:303
882
+ msgid " Matrix"
883
+ msgstr ""
884
+
885
+ #: lib/statsample/vector.rb:177
886
+ msgid "%s(standarized)"
887
+ msgstr ""
888
+
889
+ #: lib/statsample/vector.rb:189
890
+ msgid "%s(centered)"
891
+ msgstr ""
892
+
893
+ #: lib/statsample/vector.rb:201
894
+ msgid "%s(percentil)"
895
+ msgstr ""
896
+
897
+ #: lib/statsample/vector.rb:778
898
+ msgid "n :%d"
899
+ msgstr ""
900
+
901
+ #: lib/statsample/vector.rb:779
902
+ msgid "n valid:%d"
903
+ msgstr ""
904
+
905
+ #: lib/statsample/vector.rb:780
906
+ msgid "factors:%s"
907
+ msgstr ""
908
+
909
+ #: lib/statsample/vector.rb:781
910
+ msgid "mode: %s"
911
+ msgstr ""
912
+
913
+ #: lib/statsample/vector.rb:782
914
+ msgid "Distribution"
915
+ msgstr ""
916
+
917
+ #: lib/statsample/vector.rb:788
918
+ msgid "median: %s"
919
+ msgstr ""
920
+
921
+ #: lib/statsample/vector.rb:790
922
+ msgid "mean: %0.4f"
923
+ msgstr ""
924
+
925
+ #: lib/statsample/vector.rb:791
926
+ msgid "sd: %0.4f"
927
+ msgstr ""
928
+
929
+ #: lib/statsample/dataset.rb:161
930
+ msgid "Dataset %d"
931
+ msgstr ""
932
+
933
+ #: lib/statsample/dataset.rb:457
934
+ msgid "Sum from %s"
935
+ msgstr ""
936
+
937
+ #: lib/statsample/dataset.rb:510
938
+ msgid "Means from %s"
939
+ msgstr ""
940
+
941
+ #: lib/statsample/dataset.rb:734
942
+ msgid "%s(filtered)"
943
+ msgstr ""
944
+
945
+ #: lib/statsample/dataset.rb:956
946
+ msgid "Cases: %d"
947
+ msgstr ""