statsample 0.6.1 → 0.6.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 (58) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +8 -19
  3. data/data/locale/es/LC_MESSAGES/statsample.mo +0 -0
  4. data/demo/dominance_analysis_bootstrap.rb +20 -0
  5. data/demo/dominanceanalysis.rb +11 -0
  6. data/demo/multiple_regression.rb +40 -0
  7. data/demo/polychoric.rb +13 -0
  8. data/demo/tetrachoric.rb +10 -0
  9. data/lib/distribution.rb +1 -0
  10. data/lib/distribution/normalbivariate.rb +100 -0
  11. data/lib/statsample.rb +4 -105
  12. data/lib/statsample/bivariate.rb +5 -1
  13. data/lib/statsample/bivariate/polychoric.rb +581 -0
  14. data/lib/statsample/bivariate/tetrachoric.rb +37 -5
  15. data/lib/statsample/converters.rb +11 -0
  16. data/lib/statsample/dominanceanalysis.rb +104 -90
  17. data/lib/statsample/dominanceanalysis/bootstrap.rb +160 -131
  18. data/lib/statsample/factor/pca.rb +1 -2
  19. data/lib/statsample/factor/principalaxis.rb +2 -2
  20. data/lib/statsample/graph/svghistogram.rb +170 -172
  21. data/lib/statsample/matrix.rb +79 -0
  22. data/lib/statsample/mle.rb +6 -4
  23. data/lib/statsample/mle/probit.rb +0 -1
  24. data/lib/statsample/regression/multiple/alglibengine.rb +23 -23
  25. data/lib/statsample/regression/multiple/baseengine.rb +112 -113
  26. data/lib/statsample/regression/multiple/gslengine.rb +91 -94
  27. data/lib/statsample/regression/multiple/rubyengine.rb +1 -1
  28. data/lib/statsample/srs.rb +1 -1
  29. data/lib/statsample/test.rb +0 -1
  30. data/lib/statsample/test/umannwhitney.rb +8 -5
  31. data/po/es/statsample.po +201 -39
  32. data/po/statsample.pot +184 -32
  33. data/test/test_bivariate.rb +21 -2
  34. data/test/test_distribution.rb +58 -40
  35. data/test/test_factor.rb +0 -1
  36. data/test/test_gsl.rb +13 -14
  37. data/test/test_regression.rb +1 -1
  38. data/test/test_statistics.rb +1 -4
  39. metadata +10 -21
  40. data/demo/benchmark.rb +0 -76
  41. data/demo/chi-square.rb +0 -44
  42. data/demo/crosstab.rb +0 -7
  43. data/demo/dice.rb +0 -13
  44. data/demo/distribution_t.rb +0 -95
  45. data/demo/graph.rb +0 -9
  46. data/demo/item_analysis.rb +0 -30
  47. data/demo/mean.rb +0 -81
  48. data/demo/nunnally_6.rb +0 -34
  49. data/demo/pca.rb +0 -29
  50. data/demo/proportion.rb +0 -57
  51. data/demo/regression.rb +0 -82
  52. data/demo/sample_test.csv +0 -113
  53. data/demo/spss_matrix.rb +0 -3
  54. data/demo/strata_proportion.rb +0 -152
  55. data/demo/stratum.rb +0 -141
  56. data/demo/t-student.rb +0 -17
  57. data/demo/umann.rb +0 -8
  58. data/lib/matrix_extension.rb +0 -92
@@ -16,7 +16,7 @@ module Multiple
16
16
  # lr=Statsample::Regression::Multiple::RubyEngine.new(ds,'y')
17
17
 
18
18
  class RubyEngine < BaseEngine
19
- def initialize(ds,y_var)
19
+ def initialize(ds,y_var, opts=Hash.new)
20
20
  super
21
21
  @dy=ds[@y_var]
22
22
  @ds_valid=ds.dup_only_valid
@@ -56,7 +56,7 @@ module Statsample
56
56
 
57
57
  def proportion_confidence_interval(p, sam,pop , x)
58
58
  f=sam.quo(pop)
59
- one_range=x * Math::sqrt((qf(sam, pop) * p * (1-p)).quo (sam-1)) + (1.quo(sam * 2.0))
59
+ one_range=x * Math::sqrt((qf(sam, pop) * p * (1-p)).quo(sam-1)) + (1.quo(sam * 2.0))
60
60
  [p-one_range, p+one_range]
61
61
  end
62
62
  # Standard deviation for sample distribution of a proportion
@@ -6,7 +6,6 @@ module Statsample
6
6
  # Calculate chi square for two Matrix
7
7
  class << self
8
8
  def chi_square(real,expected)
9
- raise TypeError, "Both argument should be Matrix" unless real.is_a? Matrix and expected.is_a?Matrix
10
9
  sum=0
11
10
  (0...real.row_size).each {|row_i|
12
11
  (0...real.column_size).each {|col_i|
@@ -19,12 +19,14 @@ module Statsample
19
19
  # Max for m*n allowed for exact calculation of probability
20
20
  MAX_MN_EXACT=10000
21
21
 
22
- # Exact probability based on Dinneen & Blakesley (1973) algorithm
22
+ # U sampling distribution, based on Dinneen & Blakesley (1973) algorithm.
23
23
  # This is the algorithm used on SPSS
24
- #
24
+ # Parameters:
25
+ # * n1: group 1 size
26
+ # * n2: group 2 size
25
27
  # Reference: Dinneen, L., & Blakesley, B. (1973). Algorithm AS 62: A Generator for the Sampling Distribution of the Mann- Whitney U Statistic. Journal of the Royal Statistical Society, 22(2), 269-273
26
28
  #
27
- def self.exact_probability_distribution_as62(n1,n2)
29
+ def self.u_sampling_distribution_as62(n1,n2)
28
30
 
29
31
  freq=[]
30
32
  work=[]
@@ -68,7 +70,8 @@ module Statsample
68
70
  }
69
71
  end
70
72
 
71
- # Generate distribution for permutations
73
+ # Generate distribution for permutations.
74
+ # Very expensive, but useful for demostrations
72
75
 
73
76
  def self.distribution_permutations(n1,n2)
74
77
  base=[0]*n1+[1]*n2
@@ -141,7 +144,7 @@ Z: #{sprintf("%0.3f",z)} (p: #{sprintf("%0.3f",z_probability)})
141
144
  # Exact probability of finding values of U lower or equal to sample on U distribution. Use with caution with m*n>100000
142
145
  # Reference: Dinneen & Blakesley (1973)
143
146
  def exact_probability
144
- dist=UMannWhitney.exact_probability_distribution_as62(@n1,@n2)
147
+ dist=UMannWhitney.u_sampling_distribution_as62(@n1,@n2)
145
148
  sum=0
146
149
  (0..@u.to_i).each {|i|
147
150
  sum+=dist[i]
data/po/es/statsample.po CHANGED
@@ -1,8 +1,8 @@
1
1
  msgid ""
2
2
  msgstr ""
3
- "Project-Id-Version: statsample 0.3.3\n"
4
- "POT-Creation-Date: 2009-08-10 11:59-0400\n"
5
- "PO-Revision-Date: 2009-08-04 15:57-0300\n"
3
+ "Project-Id-Version: statsample 0.6.2\n"
4
+ "POT-Creation-Date: 2010-02-11 18:44-0300\n"
5
+ "PO-Revision-Date: 2010-02-11 18:48-0300\n"
6
6
  "Last-Translator: Claudio Bustos <clbustos@gmail.com>\n"
7
7
  "Language-Team: Desarrollador\n"
8
8
  "MIME-Version: 1.0\n"
@@ -11,98 +11,260 @@ msgstr ""
11
11
  "X-Poedit-Language: Spanish\n"
12
12
  "X-Poedit-SourceCharset: utf-8\n"
13
13
 
14
- #: lib/statsample/dominanceanalysis/bootstrap.rb:32
14
+ #: lib/statsample/regression/multiple/baseengine.rb:14
15
+ msgid "Multiple Regression: %s over %s"
16
+ msgstr "Regresión Múltiple: %s sobre %s"
17
+
18
+ #: lib/statsample/regression/multiple/baseengine.rb:150
19
+ msgid "Multiple Regression: "
20
+ msgstr "Regresión Múltiple:"
21
+
22
+ #: lib/statsample/regression/multiple/baseengine.rb:153
23
+ msgid "Engine: %s"
24
+ msgstr "Motor: %s"
25
+
26
+ #: lib/statsample/regression/multiple/baseengine.rb:154
27
+ msgid "Cases(listwise)=%d(%d)"
28
+ msgstr "Casos (sólo válidos)=%d(%d)"
29
+
30
+ #: lib/statsample/regression/multiple/baseengine.rb:158
31
+ msgid "Equation"
32
+ msgstr "Ecuación"
33
+
34
+ #: lib/statsample/regression/multiple/baseengine.rb:161
35
+ msgid "Regression"
36
+ msgstr "Regresión"
37
+
38
+ #: lib/statsample/regression/multiple/baseengine.rb:162
39
+ msgid "Error"
40
+ msgstr "Error"
41
+
42
+ #: lib/statsample/regression/multiple/baseengine.rb:164
43
+ #: lib/statsample/crosstab.rb:108
44
+ #: lib/statsample/crosstab.rb:123
45
+ #: lib/statsample/crosstab.rb:159
46
+ #: lib/statsample/crosstab.rb:181
47
+ #: lib/statsample/dominanceanalysis.rb:281
48
+ msgid "Total"
49
+ msgstr "Total"
50
+
51
+ #: lib/statsample/regression/multiple/baseengine.rb:170
52
+ msgid "Constant"
53
+ msgstr "Constante"
54
+
55
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:42
56
+ msgid "Bootstrap dominance Analysis: %s over %s"
57
+ msgstr "Resultados del Análisis de Dominancia Bootstrap: %s en %s"
58
+
59
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:65
15
60
  msgid "Bootstrap %d of %d"
16
61
  msgstr "Bootstrap: %d de %d"
17
62
 
18
- #: lib/statsample/dominanceanalysis/bootstrap.rb:71
19
- msgid "Summary for Bootstrap Dominance Analysis of %s on %s\n"
20
- msgstr "Resultados del Análisis de Dominancia Bootstrap de %s en %s\n"
63
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:106
64
+ msgid "DAB: "
65
+ msgstr ""
21
66
 
22
- #: lib/statsample/dominanceanalysis/bootstrap.rb:72
67
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:109
23
68
  msgid "Sample size: %d\n"
24
69
  msgstr "Tamaño de muestra: %d\n"
25
70
 
26
- #: lib/statsample/dominanceanalysis/bootstrap.rb:77
71
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:111
72
+ msgid "Linear Regression Engine: %s"
73
+ msgstr "Motor de Regresión Linear: %s"
74
+
75
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:113
27
76
  msgid "pairs"
28
77
  msgstr "pares"
29
78
 
30
- #: lib/statsample/dominanceanalysis/bootstrap.rb:77
79
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:113
31
80
  msgid "SE(Dij)"
32
81
  msgstr "EE(Dij)"
33
82
 
34
- #: lib/statsample/dominanceanalysis/bootstrap.rb:77
83
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:113
35
84
  msgid "Reproducibility"
36
85
  msgstr "Reproducibilidad"
37
86
 
38
- #: lib/statsample/dominanceanalysis/bootstrap.rb:79
87
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:114
39
88
  msgid "Complete dominance"
40
89
  msgstr "Dominancia Completa"
41
90
 
42
- #: lib/statsample/dominanceanalysis/bootstrap.rb:87
91
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:122
43
92
  msgid "Conditional dominance"
44
93
  msgstr "Dominancia Condicional"
45
94
 
46
- #: lib/statsample/dominanceanalysis/bootstrap.rb:96
95
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:131
47
96
  msgid "General Dominance"
48
97
  msgstr "Dominancia General"
49
98
 
50
- #: lib/statsample/dominanceanalysis/bootstrap.rb:104
99
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
51
100
  msgid "General averages"
52
101
  msgstr "Promedios generales"
53
102
 
54
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
103
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
55
104
  msgid "var"
56
105
  msgstr "var"
57
106
 
58
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
107
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
59
108
  msgid "mean"
60
109
  msgstr "promedio"
61
110
 
62
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
111
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
63
112
  msgid "se"
64
113
  msgstr "de"
65
114
 
66
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
115
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
67
116
  msgid "p.5"
68
117
  msgstr "p.5"
69
118
 
70
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
119
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
71
120
  msgid "p.95"
72
121
  msgstr "p.95"
73
122
 
74
- #: lib/statsample/crosstab.rb:93
75
- msgid "Rows: %s\n"
76
- msgstr ""
123
+ #: lib/statsample/bivariate/polychoric.rb:560
124
+ #: lib/statsample/bivariate/tetrachoric.rb:118
125
+ msgid "Contingence Table"
126
+ msgstr "Tabla de Contingencia"
77
127
 
78
- #: lib/statsample/crosstab.rb:94
79
- msgid "Columns: %s\n"
80
- msgstr ""
128
+ #: lib/statsample/bivariate/polychoric.rb:569
129
+ msgid "Thresholds"
130
+ msgstr "Umbrales"
81
131
 
82
- #: lib/statsample/crosstab.rb:96 lib/statsample/crosstab.rb:111
83
- msgid "Total"
84
- msgstr ""
132
+ #: lib/statsample/bivariate/tetrachoric.rb:126
133
+ msgid "SE: %0.3f"
134
+ msgstr "EE: %0.3f"
135
+
136
+ #: lib/statsample/bivariate/tetrachoric.rb:127
137
+ msgid "Threshold X: %0.3f "
138
+ msgstr "Umbral X: %0.3f"
139
+
140
+ #: lib/statsample/bivariate/tetrachoric.rb:128
141
+ msgid "Threshold Y: %0.3f "
142
+ msgstr "Umbral Y:%0.3f"
143
+
144
+ #: lib/statsample/bivariate/tetrachoric.rb:134
145
+ msgid "Tetrachoric correlation"
146
+ msgstr "Correlación tetracórica"
85
147
 
86
- #: lib/statsample/dominanceanalysis.rb:169
87
- msgid "Summary for Dominance Analysis of %s on %s\n"
88
- msgstr "Resultado del Análisis de Dominancia de %s en %s\n"
148
+ #: lib/statsample/histogram.rb:92
149
+ msgid "Histogram %s"
150
+ msgstr "Histograma: %s"
89
151
 
90
- #: lib/statsample/dominanceanalysis.rb:172
152
+ #: lib/statsample/factor/pca.rb:99
153
+ msgid "PCA: "
154
+ msgstr "ACP:"
155
+
156
+ #: lib/statsample/factor/pca.rb:100
157
+ msgid "PCA"
158
+ msgstr "ACP"
159
+
160
+ #: lib/statsample/factor/pca.rb:103
161
+ #: lib/statsample/factor/principalaxis.rb:106
162
+ msgid "Communalities"
163
+ msgstr "Comunalidades"
164
+
165
+ #: lib/statsample/factor/pca.rb:109
166
+ #: lib/statsample/factor/principalaxis.rb:112
167
+ msgid "Eigenvalues"
168
+ msgstr "Eigenvalues"
169
+
170
+ #: lib/statsample/factor/pca.rb:115
171
+ #: lib/statsample/factor/principalaxis.rb:118
172
+ msgid "Component Matrix"
173
+ msgstr "Matriz de componentes"
174
+
175
+ #: lib/statsample/factor/principalaxis.rb:97
176
+ msgid "Factor Analysis: "
177
+ msgstr "Análisis de Factores:"
178
+
179
+ #: lib/statsample/factor/principalaxis.rb:98
180
+ msgid "Factor Analysis"
181
+ msgstr "Análisis de Factores"
182
+
183
+ #: lib/statsample/crosstab.rb:25
184
+ msgid "Crosstab %s - %s"
185
+ msgstr "Tabulación cruzada %s - %s"
186
+
187
+ #: lib/statsample/crosstab.rb:27
188
+ #: lib/statsample/crosstab.rb:98
189
+ msgid "Crosstab"
190
+ msgstr "Tabulación cruzada"
191
+
192
+ #: lib/statsample/crosstab.rb:97
193
+ msgid "Crosstab: "
194
+ msgstr "Tabulación cruzada:"
195
+
196
+ #: lib/statsample/crosstab.rb:105
197
+ msgid "Rows: %s"
198
+ msgstr "Filas: %s"
199
+
200
+ #: lib/statsample/crosstab.rb:106
201
+ msgid "Columns: %s"
202
+ msgstr "Columnas: %s"
203
+
204
+ #: lib/statsample/crosstab.rb:108
205
+ msgid "Raw"
206
+ msgstr "En Bruto"
207
+
208
+ #: lib/statsample/crosstab.rb:154
209
+ msgid "% Row"
210
+ msgstr "% Fila"
211
+
212
+ #: lib/statsample/crosstab.rb:155
213
+ msgid "% Column"
214
+ msgstr "% Columna"
215
+
216
+ #: lib/statsample/crosstab.rb:156
217
+ msgid "% Total"
218
+ msgstr "% Total"
219
+
220
+ #: lib/statsample/dominanceanalysis.rb:79
221
+ msgid "Dominance Analysis: %s over %s"
222
+ msgstr "Análisis de dominancia: %s en %s"
223
+
224
+ #: lib/statsample/dominanceanalysis.rb:241
225
+ msgid "DA: "
226
+ msgstr "AD:"
227
+
228
+ #: lib/statsample/dominanceanalysis.rb:243
229
+ msgid "Dominance Analysis result"
230
+ msgstr "Resultados del análisis de dominancia"
231
+
232
+ #: lib/statsample/dominanceanalysis.rb:244
233
+ msgid "sign"
234
+ msgstr "signo"
235
+
236
+ #: lib/statsample/dominanceanalysis.rb:245
91
237
  msgid "Model 0"
92
238
  msgstr "Modelo 0"
93
239
 
94
- #: lib/statsample/dominanceanalysis.rb:186
240
+ #: lib/statsample/dominanceanalysis.rb:259
95
241
  msgid "k=%d Average"
96
242
  msgstr "k=%d Promedio"
97
243
 
98
- #: lib/statsample/dominanceanalysis.rb:199
244
+ #: lib/statsample/dominanceanalysis.rb:272
99
245
  msgid "Overall averages"
100
246
  msgstr "Promedios generales"
101
247
 
102
- #: lib/statsample/dominanceanalysis.rb:206
103
- msgid "Pairwise"
104
- msgstr "De a pares"
248
+ #: lib/statsample/dominanceanalysis.rb:281
249
+ msgid "Pairwise dominance"
250
+ msgstr "Dominancia en pares"
105
251
 
106
- #: lib/statsample/dominanceanalysis.rb:210
252
+ #: lib/statsample/dominanceanalysis.rb:281
107
253
  msgid "Pairs"
108
254
  msgstr "Pares"
255
+
256
+ #: lib/statsample/dominanceanalysis.rb:281
257
+ msgid "Conditional"
258
+ msgstr "Condicional"
259
+
260
+ #: lib/statsample/dominanceanalysis.rb:281
261
+ msgid "General"
262
+ msgstr "General"
263
+
264
+ #: lib/statsample/converters.rb:317
265
+ msgid ")}"
266
+ msgstr ""
267
+
268
+ #~ msgid "Pairwise"
269
+ #~ msgstr "De a pares"
270
+
data/po/statsample.pot CHANGED
@@ -6,8 +6,8 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: statsample 0.3.3\n"
10
- "POT-Creation-Date: 2009-08-10 11:59-0400\n"
9
+ "Project-Id-Version: statsample 0.6.2\n"
10
+ "POT-Creation-Date: 2010-02-11 18:44-0300\n"
11
11
  "PO-Revision-Date: 2009-08-04 15:36-0400\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,98 +16,250 @@ msgstr ""
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
18
 
19
- #: lib/statsample/dominanceanalysis/bootstrap.rb:32
19
+ #: lib/statsample/regression/multiple/baseengine.rb:14
20
+ msgid "Multiple Regression: %s over %s"
21
+ msgstr ""
22
+
23
+ #: lib/statsample/regression/multiple/baseengine.rb:150
24
+ msgid "Multiple Regression: "
25
+ msgstr ""
26
+
27
+ #: lib/statsample/regression/multiple/baseengine.rb:153
28
+ msgid "Engine: %s"
29
+ msgstr ""
30
+
31
+ #: lib/statsample/regression/multiple/baseengine.rb:154
32
+ msgid "Cases(listwise)=%d(%d)"
33
+ msgstr ""
34
+
35
+ #: lib/statsample/regression/multiple/baseengine.rb:158
36
+ msgid "Equation"
37
+ msgstr ""
38
+
39
+ #: lib/statsample/regression/multiple/baseengine.rb:161
40
+ msgid "Regression"
41
+ msgstr ""
42
+
43
+ #: lib/statsample/regression/multiple/baseengine.rb:162
44
+ msgid "Error"
45
+ msgstr ""
46
+
47
+ #: lib/statsample/regression/multiple/baseengine.rb:164
48
+ #: lib/statsample/crosstab.rb:108 lib/statsample/crosstab.rb:123
49
+ #: lib/statsample/crosstab.rb:159 lib/statsample/crosstab.rb:181
50
+ #: lib/statsample/dominanceanalysis.rb:281
51
+ msgid "Total"
52
+ msgstr ""
53
+
54
+ #: lib/statsample/regression/multiple/baseengine.rb:170
55
+ msgid "Constant"
56
+ msgstr ""
57
+
58
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:42
59
+ msgid "Bootstrap dominance Analysis: %s over %s"
60
+ msgstr ""
61
+
62
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:65
20
63
  msgid "Bootstrap %d of %d"
21
64
  msgstr ""
22
65
 
23
- #: lib/statsample/dominanceanalysis/bootstrap.rb:71
24
- msgid "Summary for Bootstrap Dominance Analysis of %s on %s\n"
66
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:106
67
+ msgid "DAB: "
25
68
  msgstr ""
26
69
 
27
- #: lib/statsample/dominanceanalysis/bootstrap.rb:72
70
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:109
28
71
  msgid "Sample size: %d\n"
29
72
  msgstr ""
30
73
 
31
- #: lib/statsample/dominanceanalysis/bootstrap.rb:77
74
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:111
75
+ msgid "Linear Regression Engine: %s"
76
+ msgstr ""
77
+
78
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:113
32
79
  msgid "pairs"
33
80
  msgstr ""
34
81
 
35
- #: lib/statsample/dominanceanalysis/bootstrap.rb:77
82
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:113
36
83
  msgid "SE(Dij)"
37
84
  msgstr ""
38
85
 
39
- #: lib/statsample/dominanceanalysis/bootstrap.rb:77
86
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:113
40
87
  msgid "Reproducibility"
41
88
  msgstr ""
42
89
 
43
- #: lib/statsample/dominanceanalysis/bootstrap.rb:79
90
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:114
44
91
  msgid "Complete dominance"
45
92
  msgstr ""
46
93
 
47
- #: lib/statsample/dominanceanalysis/bootstrap.rb:87
94
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:122
48
95
  msgid "Conditional dominance"
49
96
  msgstr ""
50
97
 
51
- #: lib/statsample/dominanceanalysis/bootstrap.rb:96
98
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:131
52
99
  msgid "General Dominance"
53
100
  msgstr ""
54
101
 
55
- #: lib/statsample/dominanceanalysis/bootstrap.rb:104
102
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
56
103
  msgid "General averages"
57
104
  msgstr ""
58
105
 
59
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
106
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
60
107
  msgid "var"
61
108
  msgstr ""
62
109
 
63
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
110
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
64
111
  msgid "mean"
65
112
  msgstr ""
66
113
 
67
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
114
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
68
115
  msgid "se"
69
116
  msgstr ""
70
117
 
71
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
118
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
72
119
  msgid "p.5"
73
120
  msgstr ""
74
121
 
75
- #: lib/statsample/dominanceanalysis/bootstrap.rb:106
122
+ #: lib/statsample/dominanceanalysis/bootstrap.rb:140
76
123
  msgid "p.95"
77
124
  msgstr ""
78
125
 
79
- #: lib/statsample/crosstab.rb:93
80
- msgid "Rows: %s\n"
126
+ #: lib/statsample/bivariate/polychoric.rb:560
127
+ #: lib/statsample/bivariate/tetrachoric.rb:118
128
+ msgid "Contingence Table"
81
129
  msgstr ""
82
130
 
83
- #: lib/statsample/crosstab.rb:94
84
- msgid "Columns: %s\n"
131
+ #: lib/statsample/bivariate/polychoric.rb:569
132
+ msgid "Thresholds"
85
133
  msgstr ""
86
134
 
87
- #: lib/statsample/crosstab.rb:96 lib/statsample/crosstab.rb:111
88
- msgid "Total"
135
+ #: lib/statsample/bivariate/tetrachoric.rb:126
136
+ msgid "SE: %0.3f"
137
+ msgstr ""
138
+
139
+ #: lib/statsample/bivariate/tetrachoric.rb:127
140
+ msgid "Threshold X: %0.3f "
141
+ msgstr ""
142
+
143
+ #: lib/statsample/bivariate/tetrachoric.rb:128
144
+ msgid "Threshold Y: %0.3f "
145
+ msgstr ""
146
+
147
+ #: lib/statsample/bivariate/tetrachoric.rb:134
148
+ msgid "Tetrachoric correlation"
149
+ msgstr ""
150
+
151
+ #: lib/statsample/histogram.rb:92
152
+ msgid "Histogram %s"
153
+ msgstr ""
154
+
155
+ #: lib/statsample/factor/pca.rb:99
156
+ msgid "PCA: "
157
+ msgstr ""
158
+
159
+ #: lib/statsample/factor/pca.rb:100
160
+ msgid "PCA"
161
+ msgstr ""
162
+
163
+ #: lib/statsample/factor/pca.rb:103 lib/statsample/factor/principalaxis.rb:106
164
+ msgid "Communalities"
165
+ msgstr ""
166
+
167
+ #: lib/statsample/factor/pca.rb:109 lib/statsample/factor/principalaxis.rb:112
168
+ msgid "Eigenvalues"
169
+ msgstr ""
170
+
171
+ #: lib/statsample/factor/pca.rb:115 lib/statsample/factor/principalaxis.rb:118
172
+ msgid "Component Matrix"
173
+ msgstr ""
174
+
175
+ #: lib/statsample/factor/principalaxis.rb:97
176
+ msgid "Factor Analysis: "
177
+ msgstr ""
178
+
179
+ #: lib/statsample/factor/principalaxis.rb:98
180
+ msgid "Factor Analysis"
181
+ msgstr ""
182
+
183
+ #: lib/statsample/crosstab.rb:25
184
+ msgid "Crosstab %s - %s"
185
+ msgstr ""
186
+
187
+ #: lib/statsample/crosstab.rb:27 lib/statsample/crosstab.rb:98
188
+ msgid "Crosstab"
189
+ msgstr ""
190
+
191
+ #: lib/statsample/crosstab.rb:97
192
+ msgid "Crosstab: "
193
+ msgstr ""
194
+
195
+ #: lib/statsample/crosstab.rb:105
196
+ msgid "Rows: %s"
197
+ msgstr ""
198
+
199
+ #: lib/statsample/crosstab.rb:106
200
+ msgid "Columns: %s"
89
201
  msgstr ""
90
202
 
91
- #: lib/statsample/dominanceanalysis.rb:169
92
- msgid "Summary for Dominance Analysis of %s on %s\n"
203
+ #: lib/statsample/crosstab.rb:108
204
+ msgid "Raw"
93
205
  msgstr ""
94
206
 
95
- #: lib/statsample/dominanceanalysis.rb:172
207
+ #: lib/statsample/crosstab.rb:154
208
+ msgid "% Row"
209
+ msgstr ""
210
+
211
+ #: lib/statsample/crosstab.rb:155
212
+ msgid "% Column"
213
+ msgstr ""
214
+
215
+ #: lib/statsample/crosstab.rb:156
216
+ msgid "% Total"
217
+ msgstr ""
218
+
219
+ #: lib/statsample/dominanceanalysis.rb:79
220
+ msgid "Dominance Analysis: %s over %s"
221
+ msgstr ""
222
+
223
+ #: lib/statsample/dominanceanalysis.rb:241
224
+ msgid "DA: "
225
+ msgstr ""
226
+
227
+ #: lib/statsample/dominanceanalysis.rb:243
228
+ msgid "Dominance Analysis result"
229
+ msgstr ""
230
+
231
+ #: lib/statsample/dominanceanalysis.rb:244
232
+ msgid "sign"
233
+ msgstr ""
234
+
235
+ #: lib/statsample/dominanceanalysis.rb:245
96
236
  msgid "Model 0"
97
237
  msgstr ""
98
238
 
99
- #: lib/statsample/dominanceanalysis.rb:186
239
+ #: lib/statsample/dominanceanalysis.rb:259
100
240
  msgid "k=%d Average"
101
241
  msgstr ""
102
242
 
103
- #: lib/statsample/dominanceanalysis.rb:199
243
+ #: lib/statsample/dominanceanalysis.rb:272
104
244
  msgid "Overall averages"
105
245
  msgstr ""
106
246
 
107
- #: lib/statsample/dominanceanalysis.rb:206
108
- msgid "Pairwise"
247
+ #: lib/statsample/dominanceanalysis.rb:281
248
+ msgid "Pairwise dominance"
109
249
  msgstr ""
110
250
 
111
- #: lib/statsample/dominanceanalysis.rb:210
251
+ #: lib/statsample/dominanceanalysis.rb:281
112
252
  msgid "Pairs"
113
253
  msgstr ""
254
+
255
+ #: lib/statsample/dominanceanalysis.rb:281
256
+ msgid "Conditional"
257
+ msgstr ""
258
+
259
+ #: lib/statsample/dominanceanalysis.rb:281
260
+ msgid "General"
261
+ msgstr ""
262
+
263
+ #: lib/statsample/converters.rb:317
264
+ msgid ")}"
265
+ msgstr ""