statsample 0.13.1 → 0.14.0

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.
@@ -167,7 +167,8 @@ module Statsample
167
167
  a[v][:mean]=@mean-item_statistics[v][:mean]
168
168
  a[v][:variance_sample]=cov_2.total_sum
169
169
  a[v][:sds]=Math::sqrt(a[v][:variance_sample])
170
- a[v][:alpha]=Statsample::Reliability.cronbach_alpha_from_covariance_matrix(cov_2)
170
+ n=cov_2.row_size
171
+ a[v][:alpha] = (n>=2) ? Statsample::Reliability.cronbach_alpha_from_covariance_matrix(cov_2) : nil
171
172
  a
172
173
  end
173
174
  end
@@ -176,14 +177,14 @@ module Statsample
176
177
  s.table(:name=>_("Summary for %s") % @name) do |t|
177
178
  t.row [_("Items"), @ds.fields.size]
178
179
  t.row [_("Valid cases"), @valid_n]
179
- t.row [_("Sum mean"), @mean]
180
- t.row [_("Sum sd"), @sd]
181
- t.row [_("Sum variance"), @variance]
182
- t.row [_("Sum median"), @median]
180
+ t.row [_("Sum mean"), "%0.4f" % @mean]
181
+ t.row [_("Sum sd"), "%0.4f" % @sd ]
182
+ t.row [_("Sum variance"), "%0.4f" % @variance]
183
+ t.row [_("Sum median"), @median]
183
184
  t.hr
184
- t.row [_("Item mean"), @item_mean]
185
- t.row [_("Skewness"), "%0.4f" % @skew]
186
- t.row [_("Kurtosis"), "%0.4f" % @kurtosis]
185
+ t.row [_("Item mean"), "%0.4f" % @item_mean]
186
+ t.row [_("Skewness"), "%0.4f" % @skew]
187
+ t.row [_("Kurtosis"), "%0.4f" % @kurtosis]
187
188
  t.hr
188
189
  t.row [_("Cronbach's alpha"), "%0.4f" % @alpha]
189
190
  t.row [_("Standarized Cronbach's alpha"), "%0.4f" % @alpha_standarized]
@@ -200,7 +201,7 @@ module Statsample
200
201
 
201
202
  s.table(:name=>_("Items report for %s") % @name, :header=>["item","mean","sd", "mean if deleted", "var if deleted", "sd if deleted"," item-total correl.", "alpha if deleted"]) do |t|
202
203
  @ds.fields.each do |f|
203
- t.row(["#{@ds[f].name}(#{f})", sprintf("%0.5f",is[f][:mean]), sprintf("%0.5f",is[f][:sds]), sprintf("%0.5f",sid[f][:mean]), sprintf("%0.5f",sid[f][:variance_sample]), sprintf("%0.5f",sid[f][:sds]), sprintf("%0.5f",itc[f]), sprintf("%0.5f",sid[f][:alpha])])
204
+ t.row(["#{@ds[f].name}(#{f})", sprintf("%0.5f",is[f][:mean]), sprintf("%0.5f",is[f][:sds]), sprintf("%0.5f",sid[f][:mean]), sprintf("%0.5f",sid[f][:variance_sample]), sprintf("%0.5f",sid[f][:sds]), sprintf("%0.5f",itc[f]), (sid[f][:alpha].nil?) ? "--" : sprintf("%0.5f",sid[f][:alpha])])
204
205
  end # end each
205
206
  end # table
206
207
  end # section
@@ -6,6 +6,8 @@ module Statsample
6
6
  autoload(:Levene, 'statsample/test/levene')
7
7
  autoload(:T, 'statsample/test/t')
8
8
  autoload(:F, 'statsample/test/f')
9
+ autoload(:ChiSquare, 'statsample/test/chisquare')
10
+
9
11
  # Returns probability of getting a value lower or higher
10
12
  # than sample, using cdf and number of tails.
11
13
  #
@@ -29,17 +31,16 @@ module Statsample
29
31
  extend self
30
32
  # Calculate chi square for two Matrix
31
33
  class << self
32
- def chi_square(real,expected)
33
- sum=0
34
- (0...real.row_size).each {|row_i|
35
- (0...real.column_size).each {|col_i|
36
- val=((real[row_i,col_i].to_f - expected[row_i,col_i].to_f)**2) / expected[row_i,col_i].to_f
37
- # puts "Real: #{real[row_i,col_i].to_f} ; esperado: #{expected[row_i,col_i].to_f}"
38
- # puts "Diferencial al cuadrado: #{(real[row_i,col_i].to_f - expected[row_i,col_i].to_f)**2}"
39
- sum+=val
40
- }
41
- }
42
- sum
34
+
35
+ def chi_square(observed, expected=nil)
36
+ case observed
37
+ when Vector
38
+ ChiSquare::WithVector.new(observed,expected)
39
+ when Matrix
40
+ ChiSquare::WithMatrix.new(observed,expected)
41
+ else
42
+ raise "Not implemented for #{observed.class}"
43
+ end
43
44
  end
44
45
  # Shorthand for Statsample::Test::UMannWhitney.new
45
46
  #
@@ -0,0 +1,43 @@
1
+ module Statsample
2
+ module Test
3
+ module ChiSquare
4
+ class WithMatrix
5
+ attr_reader :df
6
+ attr_reader :value
7
+ def initialize(observed, expected=nil)
8
+ @observed=observed
9
+ @expected=expected or calculate_expected
10
+ raise "Observed size!=expected size" if @observed.row_size!=@expected.row_size or @observed.column_size!=@expected.column_size
11
+ @df=(@observed.row_size-1)*(@observed.column_size-1)
12
+ @value=compute_chi
13
+ end
14
+ def calculate_expected
15
+ sum=@observed.total_sum
16
+ @expected=Matrix.rows( @observed.row_size.times.map {|i|
17
+ @observed.column_size.times.map {|j|
18
+ (@observed.row_sum[i].quo(sum) * @observed.column_sum[j].quo(sum))*sum
19
+ }
20
+ })
21
+ end
22
+ def to_f
23
+ @value
24
+ end
25
+ def chi_square
26
+ @value
27
+ end
28
+ def probability
29
+ 1-Distribution::ChiSquare.cdf(@value,@df)
30
+ end
31
+ def compute_chi
32
+ sum=0
33
+ (0...@observed.row_size).each {|i|
34
+ (0...@observed.column_size).each {|j|
35
+ sum+=((@observed[i, j] - @expected[i,j])**2).quo(@expected[i,j])
36
+ }
37
+ }
38
+ sum
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -108,19 +108,26 @@ module Statsample
108
108
  # with sd with denominator n-1
109
109
 
110
110
  def vector_standarized(use_population=false)
111
- raise "Should be a scale" unless @type==:scale
112
- m=mean
113
- sd=use_population ? sdp : sds
114
- @data_with_nils.collect{|x|
115
- if !x.nil?
116
- (x.to_f - m).quo(sd)
117
- else
118
- nil
119
- end
120
- }.to_vector(:scale)
111
+ check_type :scale
112
+ m=mean
113
+ sd=use_population ? sdp : sds
114
+ @data_with_nils.collect{|x|
115
+ if !x.nil?
116
+ (x.to_f - m).quo(sd)
117
+ else
118
+ nil
119
+ end
120
+ }.to_vector(:scale)
121
121
  end
122
122
  alias_method :standarized, :vector_standarized
123
-
123
+ # Return a vector with values replaced with the percentiles
124
+ # of each values
125
+ def vector_percentil
126
+ check_type :ordinal
127
+ c=size
128
+ ranked.map {|i| (i.quo(c)*100).to_f }.to_vector(@type)
129
+
130
+ end
124
131
  def box_cox_transformation(lambda) # :nodoc:
125
132
  raise "Should be a scale" unless @type==:scale
126
133
  @data_with_nils.collect{|x|
Binary file
@@ -1,8 +1,8 @@
1
1
  msgid ""
2
2
  msgstr ""
3
- "Project-Id-Version: statsample 0.13.0\n"
4
- "POT-Creation-Date: 2010-06-21 16:08-0400\n"
5
- "PO-Revision-Date: 2010-06-21 16:08-0300\n"
3
+ "Project-Id-Version: statsample 0.13.1\n"
4
+ "POT-Creation-Date: 2010-08-10 17:00-0400\n"
5
+ "PO-Revision-Date: 2010-08-10 17:27-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"
@@ -19,10 +19,9 @@ msgstr "Prueba F"
19
19
  msgid "Mean and standard deviation"
20
20
  msgstr "Promedio y desviación estándar"
21
21
 
22
- #: lib/statsample/test/t.rb:209 lib/statsample/factor/pca.rb:144
23
- #: lib/statsample/factor/pca.rb:149 lib/statsample/factor/pca.rb:155
24
- #: lib/statsample/factor/principalaxis.rb:180
25
- #: lib/statsample/factor/principalaxis.rb:185
22
+ #: lib/statsample/test/t.rb:209
23
+ #: lib/statsample/factor/pca.rb:169
24
+ #: lib/statsample/factor/principalaxis.rb:190
26
25
  msgid "Variable"
27
26
  msgstr "Variable"
28
27
 
@@ -35,7 +34,8 @@ msgstr "promedio"
35
34
  msgid "sd"
36
35
  msgstr "de"
37
36
 
38
- #: lib/statsample/test/t.rb:209 lib/statsample/factor/parallelanalysis.rb:79
37
+ #: lib/statsample/test/t.rb:209
38
+ #: lib/statsample/factor/parallelanalysis.rb:79
39
39
  msgid "n"
40
40
  msgstr "n"
41
41
 
@@ -216,13 +216,17 @@ msgstr "B"
216
216
  msgid "Within"
217
217
  msgstr "Dentro"
218
218
 
219
- #: lib/statsample/anova/twoway.rb:98 lib/statsample/anova/oneway.rb:57
219
+ #: lib/statsample/anova/twoway.rb:98
220
+ #: lib/statsample/anova/oneway.rb:57
220
221
  msgid "%s Table"
221
222
  msgstr "Tabla %s"
222
223
 
223
- #: lib/statsample/anova/twoway.rb:103 lib/statsample/anova/oneway.rb:60
224
- #: lib/statsample/crosstab.rb:101 lib/statsample/crosstab.rb:116
225
- #: lib/statsample/crosstab.rb:151 lib/statsample/crosstab.rb:173
224
+ #: lib/statsample/anova/twoway.rb:103
225
+ #: lib/statsample/anova/oneway.rb:60
226
+ #: lib/statsample/crosstab.rb:101
227
+ #: lib/statsample/crosstab.rb:116
228
+ #: lib/statsample/crosstab.rb:151
229
+ #: lib/statsample/crosstab.rb:173
226
230
  #: lib/statsample/dominanceanalysis.rb:353
227
231
  msgid "Total"
228
232
  msgstr "Total"
@@ -231,11 +235,13 @@ msgstr "Total"
231
235
  msgid "Anova Two-Way on %s"
232
236
  msgstr "Anova de dos vías en %s"
233
237
 
234
- #: lib/statsample/anova/twoway.rb:190 lib/statsample/anova/oneway.rb:101
238
+ #: lib/statsample/anova/twoway.rb:190
239
+ #: lib/statsample/anova/oneway.rb:101
235
240
  msgid "Test of Homogeneity of variances (Levene)"
236
241
  msgstr "Test de homogeneidad de varianza (Levene)"
237
242
 
238
- #: lib/statsample/anova/twoway.rb:195 lib/statsample/anova/twoway.rb:199
243
+ #: lib/statsample/anova/twoway.rb:195
244
+ #: lib/statsample/anova/twoway.rb:199
239
245
  msgid "%s Mean"
240
246
  msgstr "Promedio %s"
241
247
 
@@ -304,7 +310,6 @@ msgid "Number or factors to preserve: %d"
304
310
  msgstr "Número de factores a preservar: %d"
305
311
 
306
312
  #: lib/statsample/factor/parallelanalysis.rb:79
307
- #: lib/statsample/factor/pca.rb:149 lib/statsample/factor/principalaxis.rb:185
308
313
  msgid "Eigenvalues"
309
314
  msgstr "Eigenvalues"
310
315
 
@@ -320,131 +325,211 @@ msgstr "eigenvalue generado"
320
325
  msgid "preserve?"
321
326
  msgstr "¿preservar?"
322
327
 
323
- #: lib/statsample/factor/pca.rb:43
328
+ #: lib/statsample/factor/pca.rb:51
324
329
  msgid "Principal Component Analysis"
325
330
  msgstr "Análisis de componentes principales"
326
331
 
327
- #: lib/statsample/factor/pca.rb:143 lib/statsample/factor/principalaxis.rb:178
332
+ #: lib/statsample/factor/pca.rb:118
333
+ msgid "Component matrix"
334
+ msgstr "Matriz de componentes"
335
+
336
+ #: lib/statsample/factor/pca.rb:168
337
+ #: lib/statsample/factor/principalaxis.rb:188
328
338
  msgid "Number of factors: %d"
329
339
  msgstr "Número de factores: %d"
330
340
 
331
- #: lib/statsample/factor/pca.rb:144 lib/statsample/factor/principalaxis.rb:180
341
+ #: lib/statsample/factor/pca.rb:169
342
+ #: lib/statsample/factor/principalaxis.rb:190
332
343
  msgid "Communalities"
333
344
  msgstr "Comunalidades"
334
345
 
335
- #: lib/statsample/factor/pca.rb:144 lib/statsample/factor/principalaxis.rb:180
346
+ #: lib/statsample/factor/pca.rb:169
347
+ #: lib/statsample/factor/principalaxis.rb:190
336
348
  msgid "Initial"
337
349
  msgstr "Inicial"
338
350
 
339
- #: lib/statsample/factor/pca.rb:144 lib/statsample/factor/principalaxis.rb:180
351
+ #: lib/statsample/factor/pca.rb:169
352
+ #: lib/statsample/factor/principalaxis.rb:190
340
353
  msgid "Extraction"
341
354
  msgstr "Extracción"
342
355
 
343
- #: lib/statsample/factor/pca.rb:149 lib/statsample/factor/principalaxis.rb:185
344
- msgid "Value"
345
- msgstr "Valor de U"
356
+ #: lib/statsample/factor/pca.rb:175
357
+ msgid "Total Variance Explained"
358
+ msgstr "Varianza Total Explicada"
346
359
 
347
- #: lib/statsample/factor/pca.rb:155 lib/statsample/factor/principalaxis.rb:190
348
- msgid "Component Matrix"
349
- msgstr "Matriz de componentes"
360
+ #: lib/statsample/factor/pca.rb:175
361
+ msgid "Component"
362
+ msgstr "Componente"
363
+
364
+ #: lib/statsample/factor/pca.rb:175
365
+ msgid "E.Total"
366
+ msgstr "E. Total"
350
367
 
351
- #: lib/statsample/factor/principalaxis.rb:63
368
+ #: lib/statsample/factor/pca.rb:175
369
+ msgid "%"
370
+ msgstr "%"
371
+
372
+ #: lib/statsample/factor/pca.rb:175
373
+ msgid "Cum. %"
374
+ msgstr "% Acum."
375
+
376
+ #: lib/statsample/factor/pca.rb:179
377
+ msgid "Component %d"
378
+ msgstr "Componente %d"
379
+
380
+ #: lib/statsample/factor/principalaxis.rb:64
352
381
  msgid "Variable %d"
353
382
  msgstr "Variable %d"
354
383
 
355
- #: lib/statsample/factor/principalaxis.rb:179
384
+ #: lib/statsample/factor/principalaxis.rb:140
385
+ msgid "Factor Matrix"
386
+ msgstr "Matriz de Factores"
387
+
388
+ #: lib/statsample/factor/principalaxis.rb:189
356
389
  msgid "Iterations: %d"
357
390
  msgstr "Iteraciones: %d"
358
391
 
359
- #: lib/statsample/reliability/multiscaleanalysis.rb:53
392
+ #: lib/statsample/factor/principalaxis.rb:195
393
+ msgid "Total Variance"
394
+ msgstr "Varianza Total"
395
+
396
+ #: lib/statsample/factor/principalaxis.rb:195
397
+ msgid "Factor"
398
+ msgstr "Factor"
399
+
400
+ #: lib/statsample/factor/principalaxis.rb:195
401
+ msgid "I.E.Total"
402
+ msgstr "E.I. Total"
403
+
404
+ #: lib/statsample/factor/principalaxis.rb:195
405
+ msgid "I.E. %"
406
+ msgstr "E.I. %"
407
+
408
+ #: lib/statsample/factor/principalaxis.rb:195
409
+ msgid "I.E.Cum. %"
410
+ msgstr "E.I. Acum. %"
411
+
412
+ #: lib/statsample/factor/principalaxis.rb:196
413
+ msgid "S.L.Total"
414
+ msgstr "C.C. Total"
415
+
416
+ #: lib/statsample/factor/principalaxis.rb:196
417
+ msgid "S.L. %"
418
+ msgstr "C.C. %"
419
+
420
+ #: lib/statsample/factor/principalaxis.rb:196
421
+ msgid "S.L.Cum. %"
422
+ msgstr "C.C. Acum %"
423
+
424
+ #: lib/statsample/factor/principalaxis.rb:203
425
+ msgid "Factor %d"
426
+ msgstr "Factor %d"
427
+
428
+ #: lib/statsample/factor/rotation.rb:35
429
+ msgid "%s rotation"
430
+ msgstr "rotación %s"
431
+
432
+ #: lib/statsample/factor/rotation.rb:125
433
+ msgid "Rotated Component matrix"
434
+ msgstr "Matriz de componentes rotada"
435
+
436
+ #: lib/statsample/factor/rotation.rb:142
437
+ msgid "Component transformation matrix"
438
+ msgstr "Matriz de transformación de componentes"
439
+
440
+ #: lib/statsample/reliability/multiscaleanalysis.rb:57
360
441
  msgid "Multiple Scale analysis"
361
442
  msgstr "Análisis de múltiples escalas"
362
443
 
363
- #: lib/statsample/reliability/multiscaleanalysis.rb:79
444
+ #: lib/statsample/reliability/multiscaleanalysis.rb:85
364
445
  msgid "Scale %s"
365
446
  msgstr "Escala %s"
366
447
 
367
- #: lib/statsample/reliability/multiscaleanalysis.rb:110
448
+ #: lib/statsample/reliability/multiscaleanalysis.rb:125
368
449
  msgid "Reliability analysis of scales"
369
450
  msgstr "Análisis de confiabilidad de escalas"
370
451
 
371
- #: lib/statsample/reliability/multiscaleanalysis.rb:116
452
+ #: lib/statsample/reliability/multiscaleanalysis.rb:131
372
453
  msgid "Correlation matrix for %s"
373
454
  msgstr "Matriz de correlaciones para %s"
374
455
 
375
- #: lib/statsample/reliability/multiscaleanalysis.rb:121
456
+ #: lib/statsample/reliability/multiscaleanalysis.rb:136
376
457
  msgid "PCA for %s"
377
458
  msgstr "ACP para %s"
378
459
 
379
- #: lib/statsample/reliability/multiscaleanalysis.rb:126
460
+ #: lib/statsample/reliability/multiscaleanalysis.rb:141
380
461
  msgid "Principal Axis for %s"
381
462
  msgstr "Ejes principales para %s"
382
463
 
383
- #: lib/statsample/reliability/scaleanalysis.rb:169
464
+ #: lib/statsample/reliability/multiscaleanalysis.rb:147
465
+ msgid "Parallel Analysis for %s"
466
+ msgstr "Análisis Paralelo para %s"
467
+
468
+ #: lib/statsample/reliability/scaleanalysis.rb:177
384
469
  msgid "Summary for %s"
385
470
  msgstr "Sumario para %s"
386
471
 
387
- #: lib/statsample/reliability/scaleanalysis.rb:170
472
+ #: lib/statsample/reliability/scaleanalysis.rb:178
388
473
  msgid "Items"
389
474
  msgstr "Ítems"
390
475
 
391
- #: lib/statsample/reliability/scaleanalysis.rb:171
476
+ #: lib/statsample/reliability/scaleanalysis.rb:179
392
477
  msgid "Valid cases"
393
478
  msgstr "casos válidos"
394
479
 
395
- #: lib/statsample/reliability/scaleanalysis.rb:172
480
+ #: lib/statsample/reliability/scaleanalysis.rb:180
396
481
  msgid "Sum mean"
397
482
  msgstr "Promedio de suma"
398
483
 
399
- #: lib/statsample/reliability/scaleanalysis.rb:173
484
+ #: lib/statsample/reliability/scaleanalysis.rb:181
400
485
  msgid "Sum sd"
401
486
  msgstr "d.e. de suma"
402
487
 
403
- #: lib/statsample/reliability/scaleanalysis.rb:174
488
+ #: lib/statsample/reliability/scaleanalysis.rb:182
404
489
  msgid "Sum variance"
405
490
  msgstr "Varianza de suma"
406
491
 
407
- #: lib/statsample/reliability/scaleanalysis.rb:175
492
+ #: lib/statsample/reliability/scaleanalysis.rb:183
408
493
  msgid "Sum median"
409
494
  msgstr "Mediana de suma"
410
495
 
411
- #: lib/statsample/reliability/scaleanalysis.rb:177
496
+ #: lib/statsample/reliability/scaleanalysis.rb:185
412
497
  msgid "Item mean"
413
498
  msgstr "Promedio de los ítemes"
414
499
 
415
- #: lib/statsample/reliability/scaleanalysis.rb:178
500
+ #: lib/statsample/reliability/scaleanalysis.rb:186
416
501
  msgid "Skewness"
417
502
  msgstr "Sesgo"
418
503
 
419
- #: lib/statsample/reliability/scaleanalysis.rb:179
504
+ #: lib/statsample/reliability/scaleanalysis.rb:187
420
505
  msgid "Kurtosis"
421
506
  msgstr "Curtosis"
422
507
 
423
- #: lib/statsample/reliability/scaleanalysis.rb:181
508
+ #: lib/statsample/reliability/scaleanalysis.rb:189
424
509
  msgid "Cronbach's alpha"
425
510
  msgstr "Alfa de Cronbach"
426
511
 
427
- #: lib/statsample/reliability/scaleanalysis.rb:182
512
+ #: lib/statsample/reliability/scaleanalysis.rb:190
428
513
  msgid "Standarized Cronbach's alpha"
429
514
  msgstr "Alfa de Cronbach estandarizado"
430
515
 
431
- #: lib/statsample/reliability/scaleanalysis.rb:183
516
+ #: lib/statsample/reliability/scaleanalysis.rb:191
432
517
  msgid "Variances mean"
433
518
  msgstr "Promedio de las varianzas"
434
519
 
435
- #: lib/statsample/reliability/scaleanalysis.rb:184
520
+ #: lib/statsample/reliability/scaleanalysis.rb:192
436
521
  msgid "Covariances mean"
437
522
  msgstr "Promedio de las covarianzas"
438
523
 
439
- #: lib/statsample/reliability/scaleanalysis.rb:186
524
+ #: lib/statsample/reliability/scaleanalysis.rb:194
440
525
  msgid "items for obtain alpha(0.8) : %d"
441
526
  msgstr "items para obtener alfa(0,8): %d"
442
527
 
443
- #: lib/statsample/reliability/scaleanalysis.rb:187
528
+ #: lib/statsample/reliability/scaleanalysis.rb:195
444
529
  msgid "items for obtain alpha(0.9) : %d"
445
530
  msgstr "ítems para obtener alfa(0,9): %d"
446
531
 
447
- #: lib/statsample/reliability/scaleanalysis.rb:194
532
+ #: lib/statsample/reliability/scaleanalysis.rb:202
448
533
  msgid "Items report for %s"
449
534
  msgstr "Reporte de ítems para %s"
450
535
 
@@ -524,51 +609,51 @@ msgstr "X%d"
524
609
  msgid "Y%d"
525
610
  msgstr "Y%d"
526
611
 
527
- #: lib/statsample/matrix.rb:110
612
+ #: lib/statsample/matrix.rb:115
528
613
  msgid "Covariate matrix %d"
529
614
  msgstr "Matriz de Covarianza %d"
530
615
 
531
- #: lib/statsample/matrix.rb:152
616
+ #: lib/statsample/matrix.rb:157
532
617
  msgid "Correlation"
533
618
  msgstr "Correlación"
534
619
 
535
- #: lib/statsample/matrix.rb:152
620
+ #: lib/statsample/matrix.rb:157
536
621
  msgid "Covariance"
537
622
  msgstr "Covarianza"
538
623
 
539
- #: lib/statsample/matrix.rb:152
624
+ #: lib/statsample/matrix.rb:157
540
625
  msgid " Matrix"
541
626
  msgstr "Matriz"
542
627
 
543
- #: lib/statsample/vector.rb:614
628
+ #: lib/statsample/vector.rb:620
544
629
  msgid "n :%d"
545
630
  msgstr "n: %s"
546
631
 
547
- #: lib/statsample/vector.rb:615
632
+ #: lib/statsample/vector.rb:621
548
633
  msgid "n valid:%d"
549
634
  msgstr "n válido: %d"
550
635
 
551
- #: lib/statsample/vector.rb:616
636
+ #: lib/statsample/vector.rb:622
552
637
  msgid "factors:%s"
553
638
  msgstr "factores:%s"
554
639
 
555
- #: lib/statsample/vector.rb:617
640
+ #: lib/statsample/vector.rb:623
556
641
  msgid "mode: %s"
557
642
  msgstr "modo: %s"
558
643
 
559
- #: lib/statsample/vector.rb:618
644
+ #: lib/statsample/vector.rb:624
560
645
  msgid "Distribution"
561
646
  msgstr "Distribución"
562
647
 
563
- #: lib/statsample/vector.rb:624
648
+ #: lib/statsample/vector.rb:630
564
649
  msgid "median: %s"
565
650
  msgstr "Mediana: %s"
566
651
 
567
- #: lib/statsample/vector.rb:626
652
+ #: lib/statsample/vector.rb:632
568
653
  msgid "mean: %0.4f"
569
654
  msgstr "promedio: %0.3f"
570
655
 
571
- #: lib/statsample/vector.rb:627
656
+ #: lib/statsample/vector.rb:633
572
657
  msgid "sd: %0.4f"
573
658
  msgstr "d.e.: %0.3f"
574
659
 
@@ -580,21 +665,18 @@ msgstr "Dataset %d"
580
665
  msgid "Cases: %d"
581
666
  msgstr "Casos: %s"
582
667
 
668
+ #~ msgid "Value"
669
+ #~ msgstr "Valor de U"
583
670
  #~ msgid "actual"
584
671
  #~ msgstr "real"
585
-
586
672
  #~ msgid "Polychoric correlation"
587
673
  #~ msgstr "Correlación policórica"
588
-
589
674
  #~ msgid "Minimizing using GSL Brent method\n"
590
675
  #~ msgstr "Minimizando usando método GSL Brent\n"
591
-
592
676
  #~ msgid "Two step minimization using %s method\n"
593
677
  #~ msgstr "Minimización en dos etapas usando método %s\n"
594
-
595
678
  #~ msgid "Contingence Table"
596
679
  #~ msgstr "Tabla de Contingencia"
597
-
598
680
  #~ msgid "Thresholds"
599
681
  #~ msgstr "Umbrales"
600
682
 
@@ -605,48 +687,32 @@ msgstr "Casos: %s"
605
687
  #, fuzzy
606
688
  #~ msgid "Threshold Y %d"
607
689
  #~ msgstr "Umbral Y:%0.3f"
608
-
609
690
  #~ msgid "Test of bivariate normality: X2 = %0.3f, df = %d, p= %0.5f"
610
691
  #~ msgstr "Prueba de normalidad bivariada: X2 = %0.3f, g.l. = %d, p= %0.5f"
611
-
612
692
  #~ msgid "SE: %0.3f"
613
693
  #~ msgstr "EE: %0.3f"
614
-
615
694
  #~ msgid "Threshold X: %0.3f "
616
695
  #~ msgstr "Umbral X: %0.3f"
617
-
618
696
  #~ msgid "Threshold Y: %0.3f "
619
697
  #~ msgstr "Umbral Y:%0.3f"
620
-
621
698
  #~ msgid "Tetrachoric correlation"
622
699
  #~ msgstr "Correlación tetracórica"
623
-
624
700
  #~ msgid "Factor Analysis: "
625
701
  #~ msgstr "Análisis de Factores:"
626
-
627
702
  #~ msgid "DAB: "
628
703
  #~ msgstr "RAD:"
629
-
630
704
  #~ msgid "Total mean"
631
705
  #~ msgstr "Promedio total"
632
-
633
706
  #~ msgid "Total sd"
634
707
  #~ msgstr "d.e. total"
635
-
636
- #~ msgid "Total variance"
637
- #~ msgstr "Varianza Total"
638
-
639
708
  #~ msgid "Median"
640
709
  #~ msgstr "Mediana"
641
-
642
710
  #~ msgid "\"Anova Two-Way on #{@ds[dep_var].name}\""
643
711
  #~ msgstr "\"Anova de dos vías en #{@ds[dep_var].name}\""
644
-
645
712
  #~ msgid "Crosstab"
646
713
  #~ msgstr "Tabulación cruzada"
647
-
648
714
  #~ msgid "Crosstab: "
649
715
  #~ msgstr "Tabulación cruzada:"
650
-
651
716
  #~ msgid ")}"
652
717
  #~ msgstr ")}"
718
+