Sha256: dc57ae99063a9624eab5066a9279c6f71ed6efc910a9c2671f00a3f7f90fe87c

Contents?: true

Size: 914 Bytes

Versions: 4

Compression:

Stored size: 914 Bytes

Contents

= statsample-bivariate-extension

* http://ruby-statsample.rubyforge.org/

== DESCRIPTION:

Provides advanced bivariate statistics:
* Tetrachoric correlation
* Polychoric correlation

== FEATURES/PROBLEMS:

* Statsample::Bivariate::Polychoric class provides polychoric correlation
* Statsample::Bivariate::Tetracoric class provides tetrachoric correlation


== SYNOPSIS:

=== Tetrachoric correlation

    require 'statsample'
    a=40
    b=10
    c=20
    d=30
    tetra=Statsample::Bivariate::Tetrachoric.new(a,b,c,d)
    puts tetra.summary
    
=== Polychoric correlation

    require 'statsample'
    ct=Matrix[[58,52,1],[26,58,3],[8,12,9]]
    
    poly=Statsample::Bivariate::Polychoric.new(ct)
    puts poly.summary


== REQUIREMENTS:

* Statsample

== INSTALL:

This gem is a statsample dependency. If you want to install it separatly

* sudo gem install statsample-bivariate-extension

== LICENSE:

GPL-2

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
statsample-bivariate-extension-0.13.3 README.txt
statsample-bivariate-extension-0.13.2 README.txt
statsample-bivariate-extension-0.13.1 README.txt
statsample-bivariate-extension-0.13.0 README.txt