gitextract_b74amxs6/ ├── .gitignore ├── .travis.yml ├── Gemfile ├── History.txt ├── LICENSE.txt ├── Manifest.txt ├── README.md ├── Rakefile ├── benchmarks/ │ ├── correlation_matrix_15_variables.rb │ ├── correlation_matrix_5_variables.rb │ ├── correlation_matrix_methods/ │ │ ├── correlation_matrix.ds │ │ ├── correlation_matrix.html │ │ ├── correlation_matrix.rb │ │ ├── correlation_matrix.xls │ │ ├── correlation_matrix_gsl_ruby.ods │ │ ├── correlation_matrix_with_graphics.ods │ │ └── results.ds │ ├── factor_map.rb │ └── helpers_benchmark.rb ├── data/ │ └── locale/ │ └── es/ │ └── LC_MESSAGES/ │ └── statsample.mo ├── doc_latex/ │ └── manual/ │ └── equations.tex ├── examples/ │ ├── boxplot.rb │ ├── correlation_matrix.rb │ ├── dataset.rb │ ├── dominance_analysis.rb │ ├── dominance_analysis_bootstrap.rb │ ├── histogram.rb │ ├── icc.rb │ ├── levene.rb │ ├── multiple_regression.rb │ ├── multivariate_correlation.rb │ ├── parallel_analysis.rb │ ├── polychoric.rb │ ├── principal_axis.rb │ ├── reliability.rb │ ├── scatterplot.rb │ ├── t_test.rb │ ├── tetrachoric.rb │ ├── u_test.rb │ ├── vector.rb │ └── velicer_map_test.rb ├── grab_references.rb ├── lib/ │ ├── spss.rb │ ├── statsample/ │ │ ├── analysis/ │ │ │ ├── suite.rb │ │ │ └── suitereportbuilder.rb │ │ ├── analysis.rb │ │ ├── anova/ │ │ │ ├── contrast.rb │ │ │ ├── oneway.rb │ │ │ └── twoway.rb │ │ ├── anova.rb │ │ ├── bivariate/ │ │ │ └── pearson.rb │ │ ├── bivariate.rb │ │ ├── codification.rb │ │ ├── converter/ │ │ │ ├── csv.rb │ │ │ └── spss.rb │ │ ├── converters.rb │ │ ├── crosstab.rb │ │ ├── dataset.rb │ │ ├── dominanceanalysis/ │ │ │ └── bootstrap.rb │ │ ├── dominanceanalysis.rb │ │ ├── factor/ │ │ │ ├── map.rb │ │ │ ├── parallelanalysis.rb │ │ │ ├── pca.rb │ │ │ ├── principalaxis.rb │ │ │ └── rotation.rb │ │ ├── factor.rb │ │ ├── graph/ │ │ │ ├── boxplot.rb │ │ │ ├── histogram.rb │ │ │ └── scatterplot.rb │ │ ├── graph.rb │ │ ├── histogram.rb │ │ ├── matrix.rb │ │ ├── multiset.rb │ │ ├── regression/ │ │ │ ├── multiple/ │ │ │ │ ├── alglibengine.rb │ │ │ │ ├── baseengine.rb │ │ │ │ ├── gslengine.rb │ │ │ │ ├── matrixengine.rb │ │ │ │ └── rubyengine.rb │ │ │ ├── multiple.rb │ │ │ └── simple.rb │ │ ├── regression.rb │ │ ├── reliability/ │ │ │ ├── icc.rb │ │ │ ├── multiscaleanalysis.rb │ │ │ ├── scaleanalysis.rb │ │ │ └── skillscaleanalysis.rb │ │ ├── reliability.rb │ │ ├── resample.rb │ │ ├── rserve_extension.rb │ │ ├── shorthand.rb │ │ ├── srs.rb │ │ ├── test/ │ │ │ ├── bartlettsphericity.rb │ │ │ ├── chisquare.rb │ │ │ ├── f.rb │ │ │ ├── kolmogorovsmirnov.rb │ │ │ ├── levene.rb │ │ │ ├── t.rb │ │ │ ├── umannwhitney.rb │ │ │ └── wilcoxonsignedrank.rb │ │ ├── test.rb │ │ ├── vector/ │ │ │ └── gsl.rb │ │ ├── vector.rb │ │ └── version.rb │ └── statsample.rb ├── po/ │ ├── es/ │ │ ├── statsample.mo │ │ └── statsample.po │ └── statsample.pot ├── references.txt ├── setup.rb ├── test/ │ ├── fixtures/ │ │ ├── correlation_matrix.rb │ │ ├── hartman_23.matrix │ │ ├── repeated_fields.csv │ │ ├── stock_data.csv │ │ ├── test_csv.csv │ │ ├── test_xls.xls │ │ ├── tetmat_matrix.txt │ │ └── tetmat_test.txt │ ├── helpers_tests.rb │ ├── test_analysis.rb │ ├── test_anova_contrast.rb │ ├── test_anovaoneway.rb │ ├── test_anovatwoway.rb │ ├── test_anovatwowaywithdataset.rb │ ├── test_anovawithvectors.rb │ ├── test_awesome_print_bug.rb │ ├── test_bartlettsphericity.rb │ ├── test_bivariate.rb │ ├── test_codification.rb │ ├── test_crosstab.rb │ ├── test_csv.rb │ ├── test_dataset.rb │ ├── test_dominance_analysis.rb │ ├── test_factor.rb │ ├── test_factor_map.rb │ ├── test_factor_pa.rb │ ├── test_ggobi.rb │ ├── test_gsl.rb │ ├── test_histogram.rb │ ├── test_matrix.rb │ ├── test_multiset.rb │ ├── test_regression.rb │ ├── test_reliability.rb │ ├── test_reliability_icc.rb │ ├── test_reliability_skillscale.rb │ ├── test_resample.rb │ ├── test_rserve_extension.rb │ ├── test_srs.rb │ ├── test_statistics.rb │ ├── test_stest.rb │ ├── test_stratified.rb │ ├── test_test_f.rb │ ├── test_test_kolmogorovsmirnov.rb │ ├── test_test_t.rb │ ├── test_umannwhitney.rb │ ├── test_vector.rb │ ├── test_wilcoxonsignedrank.rb │ └── test_xls.rb └── web/ └── Rakefile