Skip to content

Commit

Permalink
Updated to v 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clbustos committed Dec 9, 2010
1 parent 14c9d27 commit 6515aea
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
7 changes: 7 additions & 0 deletions History.txt
@@ -1,3 +1,9 @@
=== 0.17.0 / 2010-12-09
* Added Statsample::Graph::Histogram and Statsample::Graph::Boxplot
* Added Statsample::Reliability::SkillScaleAnalysis for analysis of skill based scales.
* Delete combination and permutation clases. Backport for ruby 1.8.7 widely available
* Deleted unused variables (thanks, ruby-head)

=== 0.16.0 / 2010-11-13
* Works on ruby 1.9.2 and HEAD. Updated Rakefile and manifest
* Removed all graph based on Svg::Graph.
Expand All @@ -6,6 +12,7 @@
* Added reference on references.txt
* Ruby-based random gaussian distribution generator when gsl not available
* Added population average deviation [Al Chou]

=== 0.15.1 / 2010-10-20
* Statsample::Excel and Statsample::PlainText add name to vectors equal to field name
* Statsample::Dataset.delete_vector accept multiple fields.
Expand Down
6 changes: 6 additions & 0 deletions Manifest.txt
Expand Up @@ -12,10 +12,12 @@ data/test_binomial.csv
data/tetmat_matrix.txt
data/tetmat_test.txt
doc_latex/manual/equations.tex
examples/boxplot.rb
examples/correlation_matrix.rb
examples/dataset.rb
examples/dominance_analysis.rb
examples/dominance_analysis_bootstrap.rb
examples/histogram.rb
examples/icc.rb
examples/levene.rb
examples/multiple_regression.rb
Expand Down Expand Up @@ -61,6 +63,8 @@ lib/statsample/factor/pca.rb
lib/statsample/factor/principalaxis.rb
lib/statsample/factor/rotation.rb
lib/statsample/graph.rb
lib/statsample/graph/boxplot.rb
lib/statsample/graph/histogram.rb
lib/statsample/graph/scatterplot.rb
lib/statsample/histogram.rb
lib/statsample/matrix.rb
Expand All @@ -84,6 +88,7 @@ lib/statsample/reliability.rb
lib/statsample/reliability/icc.rb
lib/statsample/reliability/multiscaleanalysis.rb
lib/statsample/reliability/scaleanalysis.rb
lib/statsample/reliability/skillscaleanalysis.rb
lib/statsample/resample.rb
lib/statsample/rserve_extension.rb
lib/statsample/srs.rb
Expand Down Expand Up @@ -126,6 +131,7 @@ test/test_multiset.rb
test/test_regression.rb
test/test_reliability.rb
test/test_reliability_icc.rb
test/test_reliability_skillscale.rb
test/test_resample.rb
test/test_rserve_extension.rb
test/test_srs.rb
Expand Down
6 changes: 5 additions & 1 deletion README.txt
Expand Up @@ -21,6 +21,7 @@ Include:
* Sample calculation related formulas
* Structural Equation Modeling (SEM), using R libraries +sem+ and +OpenMx+
* Creates reports on text, html and rtf, using ReportBuilder gem
* Graphics: Histogram, Boxplot and Scatterplot

== FEATURES:

Expand Down Expand Up @@ -69,8 +70,11 @@ Include:
* Statsample::Test::UMannWhitney
* Statsample::Test::T
* Statsample::Test::F
* Module Graph provides several classes to create beautiful graphs using rubyvis
* Statsample::Graph::Boxplot
* Statsample::Graph::Histogram
* Statsample::Graph::Scatterplot
* Gem +statsample-sem+ provides a DSL to R libraries +sem+ and +OpenMx+
* Interfaces to gdchart, gnuplot and SVG::Graph (experimental)
* Close integration with gem <tt>reportbuilder</tt>, to easily create reports on text, html and rtf formats.

== Examples of use:
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -41,7 +41,7 @@ h=Hoe.spec('statsample') do
#self.testlib=:minitest
self.rubyforge_name = "ruby-statsample"
self.developer('Claudio Bustos', 'clbustos@gmail.com')
self.extra_deps << ["spreadsheet","~>0.6.0"] << ["reportbuilder", "~>1.4"] << ["minimization", "~>0.2.0"] << ["fastercsv", ">0"] << ["dirty-memoize", "~>0.0"] << ["extendmatrix","~>0.3.1"] << ["statsample-bivariate-extension", ">0"] << ["rserve-client", "~>0.2.5"] << ["rubyvis", "~>0.2.2"]
self.extra_deps << ["spreadsheet","~>0.6.0"] << ["reportbuilder", "~>1.4"] << ["minimization", "~>0.2.0"] << ["fastercsv", ">0"] << ["dirty-memoize", "~>0.0"] << ["extendmatrix","~>0.3.1"] << ["statsample-bivariate-extension", ">0"] << ["rserve-client", "~>0.2.5"] << ["rubyvis", "~>0.3.3"]

self.extra_dev_deps << ["shoulda"] << ["minitest", "~>2.0"]
self.clean_globs << "test/images/*" << "demo/item_analysis/*" << "demo/Regression"
Expand Down
2 changes: 1 addition & 1 deletion lib/statsample.rb
Expand Up @@ -118,7 +118,7 @@ def self.has_gsl?
@@has_gsl
end

VERSION = '0.16.0'
VERSION = '0.17.0'
SPLIT_TOKEN = ","
autoload(:Database, 'statsample/converters')
autoload(:Anova, 'statsample/anova')
Expand Down

0 comments on commit 6515aea

Please sign in to comment.