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.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.travis.yml +23 -0
- data/CONTRIBUTING.md +17 -0
- data/Gemfile +2 -0
- data/History.txt +457 -0
- data/LICENSE.txt +12 -0
- data/README.md +175 -0
- data/Rakefile +44 -0
- data/benchmarks/correlation_matrix_15_variables.rb +32 -0
- data/benchmarks/correlation_matrix_5_variables.rb +33 -0
- data/benchmarks/correlation_matrix_methods/correlation_matrix.ds +0 -0
- data/benchmarks/correlation_matrix_methods/correlation_matrix.html +93 -0
- data/benchmarks/correlation_matrix_methods/correlation_matrix.rb +71 -0
- data/benchmarks/correlation_matrix_methods/correlation_matrix.xls +0 -0
- data/benchmarks/correlation_matrix_methods/correlation_matrix_gsl_ruby.ods +0 -0
- data/benchmarks/correlation_matrix_methods/correlation_matrix_with_graphics.ods +0 -0
- data/benchmarks/correlation_matrix_methods/results.ds +0 -0
- data/benchmarks/factor_map.rb +37 -0
- data/benchmarks/helpers_benchmark.rb +5 -0
- data/data/locale/es/LC_MESSAGES/statsample.mo +0 -0
- data/doc_latex/manual/equations.tex +78 -0
- data/examples/boxplot.rb +28 -0
- data/examples/chisquare_test.rb +23 -0
- data/examples/correlation_matrix.rb +32 -0
- data/examples/dataset.rb +30 -0
- data/examples/dominance_analysis.rb +33 -0
- data/examples/dominance_analysis_bootstrap.rb +32 -0
- data/examples/histogram.rb +26 -0
- data/examples/icc.rb +24 -0
- data/examples/levene.rb +29 -0
- data/examples/multiple_regression.rb +20 -0
- data/examples/multivariate_correlation.rb +33 -0
- data/examples/parallel_analysis.rb +40 -0
- data/examples/polychoric.rb +40 -0
- data/examples/principal_axis.rb +26 -0
- data/examples/reliability.rb +31 -0
- data/examples/scatterplot.rb +25 -0
- data/examples/t_test.rb +27 -0
- data/examples/tetrachoric.rb +17 -0
- data/examples/u_test.rb +24 -0
- data/examples/vector.rb +20 -0
- data/examples/velicer_map_test.rb +46 -0
- data/grab_references.rb +29 -0
- data/lib/spss.rb +134 -0
- data/lib/statsample-ekatena/analysis.rb +100 -0
- data/lib/statsample-ekatena/analysis/suite.rb +89 -0
- data/lib/statsample-ekatena/analysis/suitereportbuilder.rb +44 -0
- data/lib/statsample-ekatena/anova.rb +24 -0
- data/lib/statsample-ekatena/anova/contrast.rb +79 -0
- data/lib/statsample-ekatena/anova/oneway.rb +187 -0
- data/lib/statsample-ekatena/anova/twoway.rb +207 -0
- data/lib/statsample-ekatena/bivariate.rb +406 -0
- data/lib/statsample-ekatena/bivariate/pearson.rb +54 -0
- data/lib/statsample-ekatena/codification.rb +182 -0
- data/lib/statsample-ekatena/converter/csv.rb +28 -0
- data/lib/statsample-ekatena/converter/spss.rb +48 -0
- data/lib/statsample-ekatena/converters.rb +211 -0
- data/lib/statsample-ekatena/crosstab.rb +188 -0
- data/lib/statsample-ekatena/daru.rb +115 -0
- data/lib/statsample-ekatena/dataset.rb +10 -0
- data/lib/statsample-ekatena/dominanceanalysis.rb +425 -0
- data/lib/statsample-ekatena/dominanceanalysis/bootstrap.rb +232 -0
- data/lib/statsample-ekatena/factor.rb +104 -0
- data/lib/statsample-ekatena/factor/map.rb +124 -0
- data/lib/statsample-ekatena/factor/parallelanalysis.rb +166 -0
- data/lib/statsample-ekatena/factor/pca.rb +242 -0
- data/lib/statsample-ekatena/factor/principalaxis.rb +243 -0
- data/lib/statsample-ekatena/factor/rotation.rb +198 -0
- data/lib/statsample-ekatena/formula/fit_model.rb +46 -0
- data/lib/statsample-ekatena/formula/formula.rb +306 -0
- data/lib/statsample-ekatena/graph.rb +11 -0
- data/lib/statsample-ekatena/graph/boxplot.rb +236 -0
- data/lib/statsample-ekatena/graph/histogram.rb +198 -0
- data/lib/statsample-ekatena/graph/scatterplot.rb +213 -0
- data/lib/statsample-ekatena/histogram.rb +180 -0
- data/lib/statsample-ekatena/matrix.rb +329 -0
- data/lib/statsample-ekatena/multiset.rb +310 -0
- data/lib/statsample-ekatena/regression.rb +65 -0
- data/lib/statsample-ekatena/regression/multiple.rb +89 -0
- data/lib/statsample-ekatena/regression/multiple/alglibengine.rb +128 -0
- data/lib/statsample-ekatena/regression/multiple/baseengine.rb +251 -0
- data/lib/statsample-ekatena/regression/multiple/gslengine.rb +129 -0
- data/lib/statsample-ekatena/regression/multiple/matrixengine.rb +205 -0
- data/lib/statsample-ekatena/regression/multiple/rubyengine.rb +86 -0
- data/lib/statsample-ekatena/regression/simple.rb +121 -0
- data/lib/statsample-ekatena/reliability.rb +150 -0
- data/lib/statsample-ekatena/reliability/icc.rb +415 -0
- data/lib/statsample-ekatena/reliability/multiscaleanalysis.rb +181 -0
- data/lib/statsample-ekatena/reliability/scaleanalysis.rb +233 -0
- data/lib/statsample-ekatena/reliability/skillscaleanalysis.rb +114 -0
- data/lib/statsample-ekatena/resample.rb +15 -0
- data/lib/statsample-ekatena/shorthand.rb +125 -0
- data/lib/statsample-ekatena/srs.rb +169 -0
- data/lib/statsample-ekatena/test.rb +82 -0
- data/lib/statsample-ekatena/test/bartlettsphericity.rb +45 -0
- data/lib/statsample-ekatena/test/chisquare.rb +73 -0
- data/lib/statsample-ekatena/test/f.rb +52 -0
- data/lib/statsample-ekatena/test/kolmogorovsmirnov.rb +63 -0
- data/lib/statsample-ekatena/test/levene.rb +88 -0
- data/lib/statsample-ekatena/test/t.rb +309 -0
- data/lib/statsample-ekatena/test/umannwhitney.rb +208 -0
- data/lib/statsample-ekatena/test/wilcoxonsignedrank.rb +90 -0
- data/lib/statsample-ekatena/vector.rb +19 -0
- data/lib/statsample-ekatena/version.rb +3 -0
- data/lib/statsample.rb +282 -0
- data/po/es/statsample.mo +0 -0
- data/po/es/statsample.po +959 -0
- data/po/statsample.pot +947 -0
- data/references.txt +24 -0
- data/statsample-ekatena.gemspec +49 -0
- data/test/fixtures/bank2.dat +200 -0
- data/test/fixtures/correlation_matrix.rb +17 -0
- data/test/fixtures/df.csv +15 -0
- data/test/fixtures/hartman_23.matrix +9 -0
- data/test/fixtures/stock_data.csv +500 -0
- data/test/fixtures/tetmat_matrix.txt +5 -0
- data/test/fixtures/tetmat_test.txt +1001 -0
- data/test/helpers_tests.rb +83 -0
- data/test/test_analysis.rb +176 -0
- data/test/test_anova_contrast.rb +36 -0
- data/test/test_anovaoneway.rb +26 -0
- data/test/test_anovatwoway.rb +37 -0
- data/test/test_anovatwowaywithdataset.rb +47 -0
- data/test/test_anovawithvectors.rb +102 -0
- data/test/test_awesome_print_bug.rb +16 -0
- data/test/test_bartlettsphericity.rb +25 -0
- data/test/test_bivariate.rb +164 -0
- data/test/test_codification.rb +78 -0
- data/test/test_crosstab.rb +67 -0
- data/test/test_dominance_analysis.rb +39 -0
- data/test/test_factor.rb +228 -0
- data/test/test_factor_map.rb +38 -0
- data/test/test_factor_pa.rb +56 -0
- data/test/test_fit_model.rb +88 -0
- data/test/test_ggobi.rb +35 -0
- data/test/test_gsl.rb +15 -0
- data/test/test_histogram.rb +109 -0
- data/test/test_matrix.rb +48 -0
- data/test/test_multiset.rb +176 -0
- data/test/test_regression.rb +231 -0
- data/test/test_reliability.rb +223 -0
- data/test/test_reliability_icc.rb +198 -0
- data/test/test_reliability_skillscale.rb +57 -0
- data/test/test_resample.rb +24 -0
- data/test/test_srs.rb +9 -0
- data/test/test_statistics.rb +69 -0
- data/test/test_stest.rb +69 -0
- data/test/test_stratified.rb +17 -0
- data/test/test_test_f.rb +33 -0
- data/test/test_test_kolmogorovsmirnov.rb +34 -0
- data/test/test_test_t.rb +62 -0
- data/test/test_umannwhitney.rb +27 -0
- data/test/test_vector.rb +12 -0
- data/test/test_wilcoxonsignedrank.rb +64 -0
- metadata +570 -0
data/references.txt
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
References
|
|
2
|
+
* Azen, R. & Budescu, D.V. (2003). The dominance analysis approach for comparing predictors in multiple regression. <em>Psychological Methods, 8</em>(2), 129-148.
|
|
3
|
+
* Azen, R. & Budescu, D.V. (2006). Comparing predictors in Multivariate Regression Models: An extension of Dominance Analysis. <em>Journal of Educational and Behavioral Statistics, 31</em>(2), 157-180.
|
|
4
|
+
* Budescu, D. V. (1993). Dominance analysis: a new approach to the problem of relative importance of predictors in multiple regression. <em>Psychological Bulletin, 114</em>, 542-551.
|
|
5
|
+
* Cochran, W.(1972). Sampling Techniques [spanish edition].
|
|
6
|
+
* Cohen et al. (2003). Applied Multiple Reggression / Correlation Analysis for the Behavioral Sciences
|
|
7
|
+
* Dinneen, L., & Blakesley, B. (1973). Algorithm AS 62: A Generator for the Sampling Distribution of the Mann- Whitney U Statistic. <em>Journal of the Royal Statistical Society, 22</em>(2), 269-273
|
|
8
|
+
* Dziuban, C., & Shirkey E. (1974). When is a correlation matrix appropriate for factor analysis? Some decision rules. Psychological Bulletin, 81(6), 358-361.
|
|
9
|
+
* Hayton, J., Allen, D. & Scarpello, V.(2004). Factor Retention Decisions in Exploratory Factor Analysis: a Tutorial on Parallel Analysis. <i>Organizational Research Methods, 7</i> (2), 191-205.
|
|
10
|
+
* Härdle, W. & Simar, L. (2003). Applied Multivariate Statistical Analysis. Springer
|
|
11
|
+
* Leach, L. & Henson, R. (2007). The Use and Impact of Adjusted R2 Effects in Published Regression Research. Multiple Linear Regression Viewpoints, 33(1), 1-11.
|
|
12
|
+
* Lin, J. (2007). VARIMAX_K58 [Source code]. [http://www.johnny-lin.com/idl_code/varimax_k58.pro]
|
|
13
|
+
* Liu, O., & Rijmen, F. (2008). A modified procedure for parallel analysis of ordered categorical data. Behavior Research Methods, 40(2), 556-562.
|
|
14
|
+
* McGraw, K. & Wong, S.P. (1996). Forming Inferences About Some Intraclass Correlation Coefficients. Psychological methods, 1(1), 30-46.
|
|
15
|
+
* O'Connor, B. (2000). SPSS and SAS programs for determining the number of components using parallel analysis and Velicer's MAP test. Behavior Research Methods, Instruments, & Computers, 32(3), 396-402.
|
|
16
|
+
* SPSS Manual
|
|
17
|
+
* Sawyer, S. (2005). Resampling Data: Using a Statistical Jacknife.
|
|
18
|
+
* Shrout,P. & Fleiss, J. (1979). Intraclass Correlation: Uses in assessing rater reliability. Psychological Bulletin, 86(2), 420-428
|
|
19
|
+
* Smith, L. (2002). A tutorial on Principal Component Analysis. Available on http://courses.eas.ualberta.ca/eas570/pca_tutorial.pdf
|
|
20
|
+
* http://en.wikipedia.org/wiki/Welch-Satterthwaite_equation
|
|
21
|
+
* http://europe.isixsigma.com/library/content/c080806a.asp
|
|
22
|
+
* http://stattrek.com/Lesson6/SRS.aspx
|
|
23
|
+
* http://talkstats.com/showthread.php?t=5056
|
|
24
|
+
* http://www.gnu.org/software/gsl/manual/html_node/The-histogram-struct.html
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
$:.unshift File.expand_path("../lib/", __FILE__)
|
|
2
|
+
|
|
3
|
+
require 'statsample-ekatena/version'
|
|
4
|
+
require 'date'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "statsample-ekatena"
|
|
8
|
+
s.version = Statsample::VERSION
|
|
9
|
+
s.date = Date.today.to_s
|
|
10
|
+
s.homepage = "https://github.com/ekatena/statsample"
|
|
11
|
+
|
|
12
|
+
s.authors = ["Claudio Bustos", "Carlos Agarie"]
|
|
13
|
+
s.email = ["clbustos@gmail.com", "carlos@onox.com.br"]
|
|
14
|
+
|
|
15
|
+
s.summary = "A suite for basic and advanced statistics on Ruby"
|
|
16
|
+
|
|
17
|
+
s.rdoc_options = ["--main", "README.md"]
|
|
18
|
+
s.extra_rdoc_files = ["History.txt", "LICENSE.txt", "README.md", "references.txt"]
|
|
19
|
+
s.require_paths = ["lib"]
|
|
20
|
+
|
|
21
|
+
s.files = `git ls-files`.split("\n")
|
|
22
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
23
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
24
|
+
|
|
25
|
+
s.add_runtime_dependency 'daru', '~> 0.1'
|
|
26
|
+
s.add_runtime_dependency 'spreadsheet', '~> 1.1'
|
|
27
|
+
s.add_runtime_dependency 'reportbuilder', '~> 1.4'
|
|
28
|
+
s.add_runtime_dependency 'minimization', '~> 0.2'
|
|
29
|
+
s.add_runtime_dependency 'dirty-memoize', '~> 0.0.4'
|
|
30
|
+
s.add_runtime_dependency 'extendmatrix', '~> 0.4'
|
|
31
|
+
s.add_runtime_dependency 'rserve-client', '~> 0.3'
|
|
32
|
+
s.add_runtime_dependency 'rubyvis', '~> 0.6.1'
|
|
33
|
+
s.add_runtime_dependency 'distribution', '~> 0.7'
|
|
34
|
+
s.add_runtime_dependency 'awesome_print', '~> 1.6'
|
|
35
|
+
|
|
36
|
+
s.add_development_dependency 'bundler', '~> 1.10'
|
|
37
|
+
s.add_development_dependency 'rake', '~> 10.4'
|
|
38
|
+
s.add_development_dependency 'rdoc', '~> 4.2'
|
|
39
|
+
s.add_development_dependency 'shoulda', '~> 3.5'
|
|
40
|
+
s.add_development_dependency 'shoulda-matchers', '~> 2.2'
|
|
41
|
+
s.add_development_dependency 'minitest', '~> 5.7'
|
|
42
|
+
s.add_development_dependency 'gettext', '~> 3.1'
|
|
43
|
+
s.add_development_dependency 'mocha', '~> 1.1'
|
|
44
|
+
s.add_development_dependency 'nmatrix', '~> 0.2.1'
|
|
45
|
+
s.add_development_dependency 'gsl', '~> 2.1'
|
|
46
|
+
s.add_development_dependency 'pry'
|
|
47
|
+
s.add_development_dependency 'rubocop'
|
|
48
|
+
s.add_development_dependency 'activesupport', '~> 4.2'
|
|
49
|
+
end
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
214.80000 131.00000 131.10000 9.00000 9.70000 141.00000
|
|
2
|
+
214.60000 129.70000 129.70000 8.10000 9.50000 141.70000
|
|
3
|
+
214.80000 129.70000 129.70000 8.70000 9.60000 142.20000
|
|
4
|
+
214.80000 129.70000 129.60000 7.50000 10.40000 142.00000
|
|
5
|
+
215.00000 129.60000 129.70000 10.40000 7.70000 141.80000
|
|
6
|
+
215.70000 130.80000 130.50000 9.00000 10.10000 141.40000
|
|
7
|
+
215.50000 129.50000 129.70000 7.90000 9.60000 141.60000
|
|
8
|
+
214.50000 129.60000 129.20000 7.20000 10.70000 141.70000
|
|
9
|
+
214.90000 129.40000 129.70000 8.20000 11.00000 141.90000
|
|
10
|
+
215.20000 130.40000 130.30000 9.20000 10.00000 140.70000
|
|
11
|
+
215.30000 130.40000 130.30000 7.90000 11.70000 141.80000
|
|
12
|
+
215.10000 129.50000 129.60000 7.70000 10.50000 142.20000
|
|
13
|
+
215.20000 130.80000 129.60000 7.90000 10.80000 141.40000
|
|
14
|
+
214.70000 129.70000 129.70000 7.70000 10.90000 141.70000
|
|
15
|
+
215.10000 129.90000 129.70000 7.70000 10.80000 141.80000
|
|
16
|
+
214.50000 129.80000 129.80000 9.30000 8.50000 141.60000
|
|
17
|
+
214.60000 129.90000 130.10000 8.20000 9.80000 141.70000
|
|
18
|
+
215.00000 129.90000 129.70000 9.00000 9.00000 141.90000
|
|
19
|
+
215.20000 129.60000 129.60000 7.40000 11.50000 141.50000
|
|
20
|
+
214.70000 130.20000 129.90000 8.60000 10.00000 141.90000
|
|
21
|
+
215.00000 129.90000 129.30000 8.40000 10.00000 141.40000
|
|
22
|
+
215.60000 130.50000 130.00000 8.10000 10.30000 141.60000
|
|
23
|
+
215.30000 130.60000 130.00000 8.40000 10.80000 141.50000
|
|
24
|
+
215.70000 130.20000 130.00000 8.70000 10.00000 141.60000
|
|
25
|
+
215.10000 129.70000 129.90000 7.40000 10.80000 141.10000
|
|
26
|
+
215.30000 130.40000 130.40000 8.00000 11.00000 142.30000
|
|
27
|
+
215.50000 130.20000 130.10000 8.90000 9.80000 142.40000
|
|
28
|
+
215.10000 130.30000 130.30000 9.80000 9.50000 141.90000
|
|
29
|
+
215.10000 130.00000 130.00000 7.40000 10.50000 141.80000
|
|
30
|
+
214.80000 129.70000 129.30000 8.30000 9.00000 142.00000
|
|
31
|
+
215.20000 130.10000 129.80000 7.90000 10.70000 141.80000
|
|
32
|
+
214.80000 129.70000 129.70000 8.60000 9.10000 142.30000
|
|
33
|
+
215.00000 130.00000 129.60000 7.70000 10.50000 140.70000
|
|
34
|
+
215.60000 130.40000 130.10000 8.40000 10.30000 141.00000
|
|
35
|
+
215.90000 130.40000 130.00000 8.90000 10.60000 141.40000
|
|
36
|
+
214.60000 130.20000 130.20000 9.40000 9.70000 141.80000
|
|
37
|
+
215.50000 130.30000 130.00000 8.40000 9.70000 141.80000
|
|
38
|
+
215.30000 129.90000 129.40000 7.90000 10.00000 142.00000
|
|
39
|
+
215.30000 130.30000 130.10000 8.50000 9.30000 142.10000
|
|
40
|
+
213.90000 130.30000 129.00000 8.10000 9.70000 141.30000
|
|
41
|
+
214.40000 129.80000 129.20000 8.90000 9.40000 142.30000
|
|
42
|
+
214.80000 130.10000 129.60000 8.80000 9.90000 140.90000
|
|
43
|
+
214.90000 129.60000 129.40000 9.30000 9.00000 141.70000
|
|
44
|
+
214.90000 130.40000 129.70000 9.00000 9.80000 140.90000
|
|
45
|
+
214.80000 129.40000 129.10000 8.20000 10.20000 141.00000
|
|
46
|
+
214.30000 129.50000 129.40000 8.30000 10.20000 141.80000
|
|
47
|
+
214.80000 129.90000 129.70000 8.30000 10.20000 141.50000
|
|
48
|
+
214.80000 129.90000 129.70000 7.30000 10.90000 142.00000
|
|
49
|
+
214.60000 129.70000 129.80000 7.90000 10.30000 141.10000
|
|
50
|
+
214.50000 129.00000 129.60000 7.80000 9.80000 142.00000
|
|
51
|
+
214.60000 129.80000 129.40000 7.20000 10.00000 141.30000
|
|
52
|
+
215.30000 130.60000 130.00000 9.50000 9.70000 141.10000
|
|
53
|
+
214.50000 130.10000 130.00000 7.80000 10.90000 140.90000
|
|
54
|
+
215.40000 130.20000 130.20000 7.60000 10.90000 141.60000
|
|
55
|
+
214.50000 129.40000 129.50000 7.90000 10.00000 141.40000
|
|
56
|
+
215.20000 129.70000 129.40000 9.20000 9.40000 142.00000
|
|
57
|
+
215.70000 130.00000 129.40000 9.20000 10.40000 141.20000
|
|
58
|
+
215.00000 129.60000 129.40000 8.80000 9.00000 141.10000
|
|
59
|
+
215.10000 130.10000 129.90000 7.90000 11.00000 141.30000
|
|
60
|
+
215.10000 130.00000 129.80000 8.20000 10.30000 141.40000
|
|
61
|
+
215.10000 129.60000 129.30000 8.30000 9.90000 141.60000
|
|
62
|
+
215.30000 129.70000 129.40000 7.50000 10.50000 141.50000
|
|
63
|
+
215.40000 129.80000 129.40000 8.00000 10.60000 141.50000
|
|
64
|
+
214.50000 130.00000 129.50000 8.00000 10.80000 141.40000
|
|
65
|
+
215.00000 130.00000 129.80000 8.60000 10.60000 141.50000
|
|
66
|
+
215.20000 130.60000 130.00000 8.80000 10.60000 140.80000
|
|
67
|
+
214.60000 129.50000 129.20000 7.70000 10.30000 141.30000
|
|
68
|
+
214.80000 129.70000 129.30000 9.10000 9.50000 141.50000
|
|
69
|
+
215.10000 129.60000 129.80000 8.60000 9.80000 141.80000
|
|
70
|
+
214.90000 130.20000 130.20000 8.00000 11.20000 139.60000
|
|
71
|
+
213.80000 129.80000 129.50000 8.40000 11.10000 140.90000
|
|
72
|
+
215.20000 129.90000 129.50000 8.20000 10.30000 141.40000
|
|
73
|
+
215.00000 129.60000 130.20000 8.70000 10.00000 141.20000
|
|
74
|
+
214.40000 129.90000 129.60000 7.50000 10.50000 141.80000
|
|
75
|
+
215.20000 129.90000 129.70000 7.20000 10.60000 142.10000
|
|
76
|
+
214.10000 129.60000 129.30000 7.60000 10.70000 141.70000
|
|
77
|
+
214.90000 129.90000 130.10000 8.80000 10.00000 141.20000
|
|
78
|
+
214.60000 129.80000 129.40000 7.40000 10.60000 141.00000
|
|
79
|
+
215.20000 130.50000 129.80000 7.90000 10.90000 140.90000
|
|
80
|
+
214.60000 129.90000 129.40000 7.90000 10.00000 141.80000
|
|
81
|
+
215.10000 129.70000 129.70000 8.60000 10.30000 140.60000
|
|
82
|
+
214.90000 129.80000 129.60000 7.50000 10.30000 141.00000
|
|
83
|
+
215.20000 129.70000 129.10000 9.00000 9.70000 141.90000
|
|
84
|
+
215.20000 130.10000 129.90000 7.90000 10.80000 141.30000
|
|
85
|
+
215.40000 130.70000 130.20000 9.00000 11.10000 141.20000
|
|
86
|
+
215.10000 129.90000 129.60000 8.90000 10.20000 141.50000
|
|
87
|
+
215.20000 129.90000 129.70000 8.70000 9.50000 141.60000
|
|
88
|
+
215.00000 129.60000 129.20000 8.40000 10.20000 142.10000
|
|
89
|
+
214.90000 130.30000 129.90000 7.40000 11.20000 141.50000
|
|
90
|
+
215.00000 129.90000 129.70000 8.00000 10.50000 142.00000
|
|
91
|
+
214.70000 129.70000 129.30000 8.60000 9.60000 141.60000
|
|
92
|
+
215.40000 130.00000 129.90000 8.50000 9.70000 141.40000
|
|
93
|
+
214.90000 129.40000 129.50000 8.20000 9.90000 141.50000
|
|
94
|
+
214.50000 129.50000 129.30000 7.40000 10.70000 141.50000
|
|
95
|
+
214.70000 129.60000 129.50000 8.30000 10.00000 142.00000
|
|
96
|
+
215.60000 129.90000 129.90000 9.00000 9.50000 141.70000
|
|
97
|
+
215.00000 130.40000 130.30000 9.10000 10.20000 141.10000
|
|
98
|
+
214.40000 129.70000 129.50000 8.00000 10.30000 141.20000
|
|
99
|
+
215.10000 130.00000 129.80000 9.10000 10.20000 141.50000
|
|
100
|
+
214.70000 130.00000 129.40000 7.80000 10.00000 141.20000
|
|
101
|
+
214.40000 130.10000 130.30000 9.70000 11.70000 139.80000
|
|
102
|
+
214.90000 130.50000 130.20000 11.00000 11.50000 139.50000
|
|
103
|
+
214.90000 130.30000 130.10000 8.70000 11.70000 140.20000
|
|
104
|
+
215.00000 130.40000 130.60000 9.90000 10.90000 140.30000
|
|
105
|
+
214.70000 130.20000 130.30000 11.80000 10.90000 139.70000
|
|
106
|
+
215.00000 130.20000 130.20000 10.60000 10.70000 139.90000
|
|
107
|
+
215.30000 130.30000 130.10000 9.30000 12.10000 140.20000
|
|
108
|
+
214.80000 130.10000 130.40000 9.80000 11.50000 139.90000
|
|
109
|
+
215.00000 130.20000 129.90000 10.00000 11.90000 139.40000
|
|
110
|
+
215.20000 130.60000 130.80000 10.40000 11.20000 140.30000
|
|
111
|
+
215.20000 130.40000 130.30000 8.00000 11.50000 139.20000
|
|
112
|
+
215.10000 130.50000 130.30000 10.60000 11.50000 140.10000
|
|
113
|
+
215.40000 130.70000 131.10000 9.70000 11.80000 140.60000
|
|
114
|
+
214.90000 130.40000 129.90000 11.40000 11.00000 139.90000
|
|
115
|
+
215.10000 130.30000 130.00000 10.60000 10.80000 139.70000
|
|
116
|
+
215.50000 130.40000 130.00000 8.20000 11.20000 139.20000
|
|
117
|
+
214.70000 130.60000 130.10000 11.80000 10.50000 139.80000
|
|
118
|
+
214.70000 130.40000 130.10000 12.10000 10.40000 139.90000
|
|
119
|
+
214.80000 130.50000 130.20000 11.00000 11.00000 140.00000
|
|
120
|
+
214.40000 130.20000 129.90000 10.10000 12.00000 139.20000
|
|
121
|
+
214.80000 130.30000 130.40000 10.10000 12.10000 139.60000
|
|
122
|
+
215.10000 130.60000 130.30000 12.30000 10.20000 139.60000
|
|
123
|
+
215.30000 130.80000 131.10000 11.60000 10.60000 140.20000
|
|
124
|
+
215.10000 130.70000 130.40000 10.50000 11.20000 139.70000
|
|
125
|
+
214.70000 130.50000 130.50000 9.90000 10.30000 140.10000
|
|
126
|
+
214.90000 130.00000 130.30000 10.20000 11.40000 139.60000
|
|
127
|
+
215.00000 130.40000 130.40000 9.40000 11.60000 140.20000
|
|
128
|
+
215.50000 130.70000 130.30000 10.20000 11.80000 140.00000
|
|
129
|
+
215.10000 130.20000 130.20000 10.10000 11.30000 140.30000
|
|
130
|
+
214.50000 130.20000 130.60000 9.80000 12.10000 139.90000
|
|
131
|
+
214.30000 130.20000 130.00000 10.70000 10.50000 139.80000
|
|
132
|
+
214.50000 130.20000 129.80000 12.30000 11.20000 139.20000
|
|
133
|
+
214.90000 130.50000 130.20000 10.60000 11.50000 139.90000
|
|
134
|
+
214.60000 130.20000 130.40000 10.50000 11.80000 139.70000
|
|
135
|
+
214.20000 130.00000 130.20000 11.00000 11.20000 139.50000
|
|
136
|
+
214.80000 130.10000 130.10000 11.90000 11.10000 139.50000
|
|
137
|
+
214.60000 129.80000 130.20000 10.70000 11.10000 139.40000
|
|
138
|
+
214.90000 130.70000 130.30000 9.30000 11.20000 138.30000
|
|
139
|
+
214.60000 130.40000 130.40000 11.30000 10.80000 139.80000
|
|
140
|
+
214.50000 130.50000 130.20000 11.80000 10.20000 139.60000
|
|
141
|
+
214.80000 130.20000 130.30000 10.00000 11.90000 139.30000
|
|
142
|
+
214.70000 130.00000 129.40000 10.20000 11.00000 139.20000
|
|
143
|
+
214.60000 130.20000 130.40000 11.20000 10.70000 139.90000
|
|
144
|
+
215.00000 130.50000 130.40000 10.60000 11.10000 139.90000
|
|
145
|
+
214.50000 129.80000 129.80000 11.40000 10.00000 139.30000
|
|
146
|
+
214.90000 130.60000 130.40000 11.90000 10.50000 139.80000
|
|
147
|
+
215.00000 130.50000 130.40000 11.40000 10.70000 139.90000
|
|
148
|
+
215.30000 130.60000 130.30000 9.30000 11.30000 138.10000
|
|
149
|
+
214.70000 130.20000 130.10000 10.70000 11.00000 139.40000
|
|
150
|
+
214.90000 129.90000 130.00000 9.90000 12.30000 139.40000
|
|
151
|
+
214.90000 130.30000 129.90000 11.90000 10.60000 139.80000
|
|
152
|
+
214.60000 129.90000 129.70000 11.90000 10.10000 139.00000
|
|
153
|
+
214.60000 129.70000 129.30000 10.40000 11.00000 139.30000
|
|
154
|
+
214.50000 130.10000 130.10000 12.10000 10.30000 139.40000
|
|
155
|
+
214.50000 130.30000 130.00000 11.00000 11.50000 139.50000
|
|
156
|
+
215.10000 130.00000 130.30000 11.60000 10.50000 139.70000
|
|
157
|
+
214.20000 129.70000 129.60000 10.30000 11.40000 139.50000
|
|
158
|
+
214.40000 130.10000 130.00000 11.30000 10.70000 139.20000
|
|
159
|
+
214.80000 130.40000 130.60000 12.50000 10.00000 139.30000
|
|
160
|
+
214.60000 130.60000 130.10000 8.10000 12.10000 137.90000
|
|
161
|
+
215.60000 130.10000 129.70000 7.40000 12.20000 138.40000
|
|
162
|
+
214.90000 130.50000 130.10000 9.90000 10.20000 138.10000
|
|
163
|
+
214.60000 130.10000 130.00000 11.50000 10.60000 139.50000
|
|
164
|
+
214.70000 130.10000 130.20000 11.60000 10.90000 139.10000
|
|
165
|
+
214.30000 130.30000 130.00000 11.40000 10.50000 139.80000
|
|
166
|
+
215.10000 130.30000 130.60000 10.30000 12.00000 139.70000
|
|
167
|
+
216.30000 130.70000 130.40000 10.00000 10.10000 138.80000
|
|
168
|
+
215.60000 130.40000 130.10000 9.60000 11.20000 138.60000
|
|
169
|
+
214.80000 129.90000 129.80000 9.60000 12.00000 139.60000
|
|
170
|
+
214.90000 130.00000 129.90000 11.40000 10.90000 139.70000
|
|
171
|
+
213.90000 130.70000 130.50000 8.70000 11.50000 137.80000
|
|
172
|
+
214.20000 130.60000 130.40000 12.00000 10.20000 139.60000
|
|
173
|
+
214.80000 130.50000 130.30000 11.80000 10.50000 139.40000
|
|
174
|
+
214.80000 129.60000 130.00000 10.40000 11.60000 139.20000
|
|
175
|
+
214.80000 130.10000 130.00000 11.40000 10.50000 139.60000
|
|
176
|
+
214.90000 130.40000 130.20000 11.90000 10.70000 139.00000
|
|
177
|
+
214.30000 130.10000 130.10000 11.60000 10.50000 139.70000
|
|
178
|
+
214.50000 130.40000 130.00000 9.90000 12.00000 139.60000
|
|
179
|
+
214.80000 130.50000 130.30000 10.20000 12.10000 139.10000
|
|
180
|
+
214.50000 130.20000 130.40000 8.20000 11.80000 137.80000
|
|
181
|
+
215.00000 130.40000 130.10000 11.40000 10.70000 139.10000
|
|
182
|
+
214.80000 130.60000 130.60000 8.00000 11.40000 138.70000
|
|
183
|
+
215.00000 130.50000 130.10000 11.00000 11.40000 139.30000
|
|
184
|
+
214.60000 130.50000 130.40000 10.10000 11.40000 139.30000
|
|
185
|
+
214.70000 130.20000 130.10000 10.70000 11.10000 139.50000
|
|
186
|
+
214.70000 130.40000 130.00000 11.50000 10.70000 139.40000
|
|
187
|
+
214.50000 130.40000 130.00000 8.00000 12.20000 138.50000
|
|
188
|
+
214.80000 130.00000 129.70000 11.40000 10.60000 139.20000
|
|
189
|
+
214.80000 129.90000 130.20000 9.60000 11.90000 139.40000
|
|
190
|
+
214.60000 130.30000 130.20000 12.70000 9.10000 139.20000
|
|
191
|
+
215.10000 130.20000 129.80000 10.20000 12.00000 139.40000
|
|
192
|
+
215.40000 130.50000 130.60000 8.80000 11.00000 138.60000
|
|
193
|
+
214.70000 130.30000 130.20000 10.80000 11.10000 139.20000
|
|
194
|
+
215.00000 130.50000 130.30000 9.60000 11.00000 138.50000
|
|
195
|
+
214.90000 130.30000 130.50000 11.60000 10.60000 139.80000
|
|
196
|
+
215.00000 130.40000 130.30000 9.90000 12.10000 139.60000
|
|
197
|
+
215.10000 130.30000 129.90000 10.30000 11.50000 139.70000
|
|
198
|
+
214.80000 130.30000 130.40000 10.60000 11.10000 140.00000
|
|
199
|
+
214.70000 130.70000 130.80000 11.20000 11.20000 139.40000
|
|
200
|
+
214.30000 129.90000 129.90000 10.20000 11.50000 139.60000
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Retrieve Correlation matrix for eigth variables
|
|
2
|
+
module Statsample
|
|
3
|
+
module Fixtures
|
|
4
|
+
def harman_817
|
|
5
|
+
Matrix[
|
|
6
|
+
[1.0, 0.84, 0.62, -0.53, 0.03, 0.57, -0.33, -0.63],
|
|
7
|
+
[0.84, 1.00, 0.84, -0.68, -0.05, 0.76, -0.35, -0.73],
|
|
8
|
+
[0.62, 0.84, 1.00, -0.76, 0.08, 0.81, -0.51, -0.81],
|
|
9
|
+
[-0.53, -0.68, -0.76, 1.00, -0.25, -0.80, 0.62, 0.88],
|
|
10
|
+
[0.03, -0.05, 0.08, -0.25, 1.00, 0.25, -0.72, -0.36],
|
|
11
|
+
[0.57, 0.76, 0.81, -0.80, 0.25, 1.00, -0.58, -0.84],
|
|
12
|
+
[-0.33, -0.35, -0.51, 0.62, -0.72, -0.58, 1.00, 0.68],
|
|
13
|
+
[-0.63, -0.73, -0.81, 0.88, -0.36, -0.84, 0.68, 1.00]
|
|
14
|
+
].extend(Statsample::CovariateMatrix)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
y,a,b,c,d,e
|
|
2
|
+
0,6,62.1,no,female,A
|
|
3
|
+
1,18,34.7,yes,male,B
|
|
4
|
+
1,6,29.7,no,female,C
|
|
5
|
+
0,4,71,no,male,C
|
|
6
|
+
1,5,36.9,yes,male,B
|
|
7
|
+
0,11,58.7,no,female,B
|
|
8
|
+
0,8,63.3,no,male,B
|
|
9
|
+
1,21,20.4,yes,male,A
|
|
10
|
+
1,2,20.5,yes,male,C
|
|
11
|
+
0,11,59.2,no,male,B
|
|
12
|
+
0,1,76.4,yes,female,A
|
|
13
|
+
0,8,71.7,no,female,B
|
|
14
|
+
1,2,77.5,no,male,C
|
|
15
|
+
1,3,31.1,no,male,B
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"height" "arm.span" "forearm" "lower.leg" "weight" "bitro.diameter" "chest.girth" "chest.width"
|
|
2
|
+
"height" 1 0.846 0.805 0.859 0.473 0.398 0.301 0.382
|
|
3
|
+
"arm.span" 0.846 1 0.881 0.826 0.376 0.326 0.277 0.415
|
|
4
|
+
"forearm" 0.805 0.881 1 0.801 0.38 0.319 0.237 0.345
|
|
5
|
+
"lower.leg" 0.859 0.826 0.801 1 0.436 0.329 0.327 0.365
|
|
6
|
+
"weight" 0.473 0.376 0.38 0.436 1 0.762 0.73 0.629
|
|
7
|
+
"bitro.diameter" 0.398 0.326 0.319 0.329 0.762 1 0.583 0.577
|
|
8
|
+
"chest.girth" 0.301 0.277 0.237 0.327 0.73 0.583 1 0.539
|
|
9
|
+
"chest.width" 0.382 0.415 0.345 0.365 0.629 0.577 0.539 1
|
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
17.66
|
|
2
|
+
17.65
|
|
3
|
+
17.68
|
|
4
|
+
17.66
|
|
5
|
+
17.68
|
|
6
|
+
17.67
|
|
7
|
+
17.68
|
|
8
|
+
17.68
|
|
9
|
+
17.67
|
|
10
|
+
17.67
|
|
11
|
+
17.68
|
|
12
|
+
17.71
|
|
13
|
+
17.74
|
|
14
|
+
17.72
|
|
15
|
+
17.73
|
|
16
|
+
17.76
|
|
17
|
+
17.74
|
|
18
|
+
17.69
|
|
19
|
+
17.69
|
|
20
|
+
17.67
|
|
21
|
+
17.66
|
|
22
|
+
17.67
|
|
23
|
+
17.69
|
|
24
|
+
17.69
|
|
25
|
+
17.68
|
|
26
|
+
17.65
|
|
27
|
+
17.65
|
|
28
|
+
17.64
|
|
29
|
+
17.63
|
|
30
|
+
17.64
|
|
31
|
+
17.67
|
|
32
|
+
17.68
|
|
33
|
+
17.7
|
|
34
|
+
17.68
|
|
35
|
+
17.69
|
|
36
|
+
17.69
|
|
37
|
+
17.72
|
|
38
|
+
17.71
|
|
39
|
+
17.71
|
|
40
|
+
17.71
|
|
41
|
+
17.69
|
|
42
|
+
17.69
|
|
43
|
+
17.71
|
|
44
|
+
17.72
|
|
45
|
+
17.71
|
|
46
|
+
17.68
|
|
47
|
+
17.68
|
|
48
|
+
17.68
|
|
49
|
+
17.69
|
|
50
|
+
17.68
|
|
51
|
+
17.68
|
|
52
|
+
17.69
|
|
53
|
+
17.67
|
|
54
|
+
17.69
|
|
55
|
+
17.71
|
|
56
|
+
17.7
|
|
57
|
+
17.7
|
|
58
|
+
17.71
|
|
59
|
+
17.73
|
|
60
|
+
17.74
|
|
61
|
+
17.74
|
|
62
|
+
17.74
|
|
63
|
+
17.76
|
|
64
|
+
17.77
|
|
65
|
+
17.55
|
|
66
|
+
17.55
|
|
67
|
+
17.5
|
|
68
|
+
17.46
|
|
69
|
+
17.49
|
|
70
|
+
17.54
|
|
71
|
+
17.51
|
|
72
|
+
17.54
|
|
73
|
+
17.57
|
|
74
|
+
17.54
|
|
75
|
+
17.52
|
|
76
|
+
17.53
|
|
77
|
+
17.56
|
|
78
|
+
17.55
|
|
79
|
+
17.55
|
|
80
|
+
17.54
|
|
81
|
+
17.55
|
|
82
|
+
17.55
|
|
83
|
+
17.55
|
|
84
|
+
17.54
|
|
85
|
+
17.52
|
|
86
|
+
17.53
|
|
87
|
+
17.51
|
|
88
|
+
17.52
|
|
89
|
+
17.5
|
|
90
|
+
17.5
|
|
91
|
+
17.5
|
|
92
|
+
17.49
|
|
93
|
+
17.46
|
|
94
|
+
17.47
|
|
95
|
+
17.48
|
|
96
|
+
17.45
|
|
97
|
+
17.41
|
|
98
|
+
17.39
|
|
99
|
+
17.38
|
|
100
|
+
17.43
|
|
101
|
+
17.44
|
|
102
|
+
17.43
|
|
103
|
+
17.43
|
|
104
|
+
17.46
|
|
105
|
+
17.46
|
|
106
|
+
17.47
|
|
107
|
+
17.47
|
|
108
|
+
17.45
|
|
109
|
+
17.48
|
|
110
|
+
17.49
|
|
111
|
+
17.5
|
|
112
|
+
17.49
|
|
113
|
+
17.48
|
|
114
|
+
17.49
|
|
115
|
+
17.47
|
|
116
|
+
17.47
|
|
117
|
+
17.44
|
|
118
|
+
17.44
|
|
119
|
+
17.43
|
|
120
|
+
17.45
|
|
121
|
+
17.42
|
|
122
|
+
17.43
|
|
123
|
+
17.43
|
|
124
|
+
17.44
|
|
125
|
+
17.44
|
|
126
|
+
17.43
|
|
127
|
+
17.41
|
|
128
|
+
17.41
|
|
129
|
+
17.38
|
|
130
|
+
17.38
|
|
131
|
+
17.37
|
|
132
|
+
17.37
|
|
133
|
+
17.37
|
|
134
|
+
17.3
|
|
135
|
+
17.28
|
|
136
|
+
17.27
|
|
137
|
+
17.19
|
|
138
|
+
16.41
|
|
139
|
+
16.44
|
|
140
|
+
16.48
|
|
141
|
+
16.53
|
|
142
|
+
16.51
|
|
143
|
+
16.57
|
|
144
|
+
16.54
|
|
145
|
+
16.59
|
|
146
|
+
16.64
|
|
147
|
+
16.6
|
|
148
|
+
16.65
|
|
149
|
+
16.69
|
|
150
|
+
16.69
|
|
151
|
+
16.68
|
|
152
|
+
16.64
|
|
153
|
+
16.65
|
|
154
|
+
16.66
|
|
155
|
+
16.64
|
|
156
|
+
16.61
|
|
157
|
+
16.65
|
|
158
|
+
16.67
|
|
159
|
+
16.66
|
|
160
|
+
16.65
|
|
161
|
+
16.61
|
|
162
|
+
16.59
|
|
163
|
+
16.57
|
|
164
|
+
16.55
|
|
165
|
+
16.55
|
|
166
|
+
16.57
|
|
167
|
+
16.54
|
|
168
|
+
16.6
|
|
169
|
+
16.62
|
|
170
|
+
16.6
|
|
171
|
+
16.59
|
|
172
|
+
16.61
|
|
173
|
+
16.66
|
|
174
|
+
16.69
|
|
175
|
+
16.67
|
|
176
|
+
16.65
|
|
177
|
+
16.66
|
|
178
|
+
16.65
|
|
179
|
+
16.65
|
|
180
|
+
16.68
|
|
181
|
+
16.68
|
|
182
|
+
16.67
|
|
183
|
+
16.64
|
|
184
|
+
16.73
|
|
185
|
+
16.76
|
|
186
|
+
16.75
|
|
187
|
+
16.79
|
|
188
|
+
16.8
|
|
189
|
+
16.77
|
|
190
|
+
16.74
|
|
191
|
+
16.76
|
|
192
|
+
16.83
|
|
193
|
+
16.84
|
|
194
|
+
16.82
|
|
195
|
+
16.89
|
|
196
|
+
16.93
|
|
197
|
+
16.94
|
|
198
|
+
16.9
|
|
199
|
+
16.92
|
|
200
|
+
16.88
|
|
201
|
+
16.85
|
|
202
|
+
16.87
|
|
203
|
+
16.8
|
|
204
|
+
16.79
|
|
205
|
+
16.85
|
|
206
|
+
16.85
|
|
207
|
+
16.8
|
|
208
|
+
16.82
|
|
209
|
+
16.85
|
|
210
|
+
16.9
|
|
211
|
+
16.86
|
|
212
|
+
16.79
|
|
213
|
+
16.75
|
|
214
|
+
16.78
|
|
215
|
+
17.06
|
|
216
|
+
17.05
|
|
217
|
+
17.04
|
|
218
|
+
17.02
|
|
219
|
+
17.01
|
|
220
|
+
17.02
|
|
221
|
+
17.05
|
|
222
|
+
17.07
|
|
223
|
+
17.08
|
|
224
|
+
17.09
|
|
225
|
+
17.1
|
|
226
|
+
17.11
|
|
227
|
+
17.09
|
|
228
|
+
17.1
|
|
229
|
+
17.1
|
|
230
|
+
17.12
|
|
231
|
+
17.17
|
|
232
|
+
17.16
|
|
233
|
+
17.17
|
|
234
|
+
17.18
|
|
235
|
+
17.18
|
|
236
|
+
17.18
|
|
237
|
+
17.17
|
|
238
|
+
17.15
|
|
239
|
+
17.14
|
|
240
|
+
17.13
|
|
241
|
+
17.14
|
|
242
|
+
17.13
|
|
243
|
+
17.12
|
|
244
|
+
17.12
|
|
245
|
+
17.09
|
|
246
|
+
17.09
|
|
247
|
+
17.11
|
|
248
|
+
17.06
|
|
249
|
+
17.07
|
|
250
|
+
17.06
|
|
251
|
+
17.07
|
|
252
|
+
17.06
|
|
253
|
+
17.09
|
|
254
|
+
17.05
|
|
255
|
+
17.04
|
|
256
|
+
17.04
|
|
257
|
+
16.99
|
|
258
|
+
17
|
|
259
|
+
17.03
|
|
260
|
+
17
|
|
261
|
+
16.97
|
|
262
|
+
16.96
|
|
263
|
+
16.98
|
|
264
|
+
16.98
|
|
265
|
+
16.98
|
|
266
|
+
17.03
|
|
267
|
+
17
|
|
268
|
+
17
|
|
269
|
+
17
|
|
270
|
+
17.02
|
|
271
|
+
17
|
|
272
|
+
17.02
|
|
273
|
+
17.01
|
|
274
|
+
17.02
|
|
275
|
+
17.03
|
|
276
|
+
17.03
|
|
277
|
+
17.01
|
|
278
|
+
17.03
|
|
279
|
+
17.03
|
|
280
|
+
17.03
|
|
281
|
+
17.01
|
|
282
|
+
17.03
|
|
283
|
+
17.05
|
|
284
|
+
17.05
|
|
285
|
+
17.08
|
|
286
|
+
17.04
|
|
287
|
+
17.01
|
|
288
|
+
17.03
|
|
289
|
+
17.02
|
|
290
|
+
17.03
|
|
291
|
+
17.04
|
|
292
|
+
17.05
|
|
293
|
+
17.37
|
|
294
|
+
17.35
|
|
295
|
+
17.34
|
|
296
|
+
17.32
|
|
297
|
+
17.29
|
|
298
|
+
17.29
|
|
299
|
+
17.22
|
|
300
|
+
17.26
|
|
301
|
+
17.3
|
|
302
|
+
17.34
|
|
303
|
+
17.33
|
|
304
|
+
17.39
|
|
305
|
+
17.4
|
|
306
|
+
17.39
|
|
307
|
+
17.48
|
|
308
|
+
17.5
|
|
309
|
+
17.47
|
|
310
|
+
17.43
|
|
311
|
+
17.4
|
|
312
|
+
17.42
|
|
313
|
+
17.46
|
|
314
|
+
17.48
|
|
315
|
+
17.48
|
|
316
|
+
17.46
|
|
317
|
+
17.46
|
|
318
|
+
17.45
|
|
319
|
+
17.43
|
|
320
|
+
17.44
|
|
321
|
+
17.48
|
|
322
|
+
17.43
|
|
323
|
+
17.45
|
|
324
|
+
17.47
|
|
325
|
+
17.46
|
|
326
|
+
17.46
|
|
327
|
+
17.48
|
|
328
|
+
17.48
|
|
329
|
+
17.48
|
|
330
|
+
17.46
|
|
331
|
+
17.5
|
|
332
|
+
17.55
|
|
333
|
+
17.58
|
|
334
|
+
17.57
|
|
335
|
+
17.56
|
|
336
|
+
17.59
|
|
337
|
+
17.61
|
|
338
|
+
17.62
|
|
339
|
+
17.63
|
|
340
|
+
17.62
|
|
341
|
+
17.61
|
|
342
|
+
17.61
|
|
343
|
+
17.62
|
|
344
|
+
17.64
|
|
345
|
+
17.65
|
|
346
|
+
17.61
|
|
347
|
+
17.62
|
|
348
|
+
17.66
|
|
349
|
+
17.65
|
|
350
|
+
17.64
|
|
351
|
+
17.63
|
|
352
|
+
17.64
|
|
353
|
+
17.64
|
|
354
|
+
17.64
|
|
355
|
+
17.63
|
|
356
|
+
17.61
|
|
357
|
+
17.61
|
|
358
|
+
17.62
|
|
359
|
+
17.63
|
|
360
|
+
17.64
|
|
361
|
+
17.65
|
|
362
|
+
17.66
|
|
363
|
+
17.68
|
|
364
|
+
17.69
|
|
365
|
+
17.69
|
|
366
|
+
17.69
|
|
367
|
+
17.66
|
|
368
|
+
17.69
|
|
369
|
+
17.69
|
|
370
|
+
17.62
|
|
371
|
+
17.68
|
|
372
|
+
17.64
|
|
373
|
+
17.65
|
|
374
|
+
17.61
|
|
375
|
+
17.52
|
|
376
|
+
17.56
|
|
377
|
+
17.55
|
|
378
|
+
17.55
|
|
379
|
+
17.48
|
|
380
|
+
17.45
|
|
381
|
+
17.46
|
|
382
|
+
17.46
|
|
383
|
+
17.44
|
|
384
|
+
17.47
|
|
385
|
+
17.5
|
|
386
|
+
17.49
|
|
387
|
+
17.5
|
|
388
|
+
17.53
|
|
389
|
+
17.53
|
|
390
|
+
17.54
|
|
391
|
+
17.51
|
|
392
|
+
17.51
|
|
393
|
+
17.53
|
|
394
|
+
17.53
|
|
395
|
+
17.53
|
|
396
|
+
17.55
|
|
397
|
+
17.55
|
|
398
|
+
17.54
|
|
399
|
+
17.56
|
|
400
|
+
17.59
|
|
401
|
+
17.57
|
|
402
|
+
17.58
|
|
403
|
+
17.58
|
|
404
|
+
17.57
|
|
405
|
+
17.59
|
|
406
|
+
17.57
|
|
407
|
+
17.55
|
|
408
|
+
17.51
|
|
409
|
+
17.51
|
|
410
|
+
17.52
|
|
411
|
+
17.52
|
|
412
|
+
17.53
|
|
413
|
+
17.55
|
|
414
|
+
17.59
|
|
415
|
+
17.61
|
|
416
|
+
17.61
|
|
417
|
+
17.6
|
|
418
|
+
17.6
|
|
419
|
+
17.62
|
|
420
|
+
17.65
|
|
421
|
+
17.62
|
|
422
|
+
17.6
|
|
423
|
+
17.6
|
|
424
|
+
17.62
|
|
425
|
+
17.61
|
|
426
|
+
17.62
|
|
427
|
+
17.63
|
|
428
|
+
17.64
|
|
429
|
+
17.65
|
|
430
|
+
17.61
|
|
431
|
+
17.62
|
|
432
|
+
17.64
|
|
433
|
+
17.63
|
|
434
|
+
17.62
|
|
435
|
+
17.6
|
|
436
|
+
17.57
|
|
437
|
+
17.57
|
|
438
|
+
17.6
|
|
439
|
+
17.59
|
|
440
|
+
17.6
|
|
441
|
+
17.61
|
|
442
|
+
17.61
|
|
443
|
+
17.63
|
|
444
|
+
17.63
|
|
445
|
+
17.59
|
|
446
|
+
17.58
|
|
447
|
+
17.76
|
|
448
|
+
17.79
|
|
449
|
+
17.76
|
|
450
|
+
17.73
|
|
451
|
+
17.74
|
|
452
|
+
17.73
|
|
453
|
+
17.67
|
|
454
|
+
17.66
|
|
455
|
+
17.66
|
|
456
|
+
17.64
|
|
457
|
+
17.63
|
|
458
|
+
17.62
|
|
459
|
+
17.61
|
|
460
|
+
17.6
|
|
461
|
+
17.61
|
|
462
|
+
17.61
|
|
463
|
+
17.6
|
|
464
|
+
17.6
|
|
465
|
+
17.64
|
|
466
|
+
17.65
|
|
467
|
+
17.65
|
|
468
|
+
17.63
|
|
469
|
+
17.61
|
|
470
|
+
17.6
|
|
471
|
+
17.63
|
|
472
|
+
17.63
|
|
473
|
+
17.62
|
|
474
|
+
17.63
|
|
475
|
+
17.64
|
|
476
|
+
17.62
|
|
477
|
+
17.63
|
|
478
|
+
17.65
|
|
479
|
+
17.64
|
|
480
|
+
17.6
|
|
481
|
+
17.59
|
|
482
|
+
17.59
|
|
483
|
+
17.58
|
|
484
|
+
17.58
|
|
485
|
+
17.6
|
|
486
|
+
17.6
|
|
487
|
+
17.6
|
|
488
|
+
17.6
|
|
489
|
+
17.6
|
|
490
|
+
17.58
|
|
491
|
+
17.59
|
|
492
|
+
17.6
|
|
493
|
+
17.6
|
|
494
|
+
17.6
|
|
495
|
+
17.59
|
|
496
|
+
17.59
|
|
497
|
+
17.58
|
|
498
|
+
17.58
|
|
499
|
+
17.65
|
|
500
|
+
17.65
|