Skip to content

Commit

Permalink
Updated to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clbustos committed Jan 27, 2011
1 parent b2c233f commit e5c8c19
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
23 changes: 23 additions & 0 deletions History.txt
@@ -1,3 +1,26 @@
=== 1.0.0 / 2011-01-27

* Added Statsample::Analysis, a beautiful DSL to perform fast statistical analysis using statsample. See directory /examples
* Created benchmarks directory
* Removed Distribution module from statsample and moved to a gem. Changes on code to reflect new API
* Optimized simple regression. Better library detection
* New 'should_with_gsl' to test methods with gsl. Refactored Factor::MAP
* Almost complete GSL cleanup on Vector
* Updated some doc on Vector
* Used GSL::Matrix on Factor classes when available
* SkillScaleAnalysis doesn't crash with one or more vectors with 0 variance
* Modified examples using Statsample::Analysis
* Simplified eigen calculations
* Updated some examples. Added correlation matrix speed suite
* Correlation matrix optimized. Better specs
* Optimized correlation matrix. Use gsl matrix algebra or pairwise correlations depending on empiric calculated equations. See benchmarks/correlation_matrix.rb to see implementation of calculation
* Moved tests fixtures from data to test/fixtures
* Fixed some errors on tests
* Bug fix: constant_se on binomial regression have an error
* All test should work on ruby 1.9.3
* New Vector.[] and Vector.new_scale
* Detect linearly dependent predictors on OLS.

=== 0.18.0 / 2011-01-07
* New Statsample.load_excel
* New Statsample.load_csv
Expand Down
8 changes: 0 additions & 8 deletions Manifest.txt
Expand Up @@ -38,13 +38,6 @@ examples/u_test.rb
examples/vector.rb
examples/velicer_map_test.rb
grab_references.rb
lib/distribution.rb
lib/distribution/chisquare.rb
lib/distribution/f.rb
lib/distribution/normal.rb
lib/distribution/normalbivariate.rb
lib/distribution/normalmultivariate.rb
lib/distribution/t.rb
lib/spss.rb
lib/statsample.rb
lib/statsample/analysis.rb
Expand Down Expand Up @@ -136,7 +129,6 @@ test/test_codification.rb
test/test_crosstab.rb
test/test_csv.rb
test/test_dataset.rb
test/test_distribution.rb
test/test_dominance_analysis.rb
test/test_factor.rb
test/test_factor_map.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/statsample.rb
Expand Up @@ -134,7 +134,7 @@ def self.create_has_library(library)

create_has_library :gsl

VERSION = '0.18.0'
VERSION = '1.0.0'
SPLIT_TOKEN = ","
autoload(:Analysis, 'statsample/analysis')
autoload(:Database, 'statsample/converters')
Expand Down

0 comments on commit e5c8c19

Please sign in to comment.