-
Notifications
You must be signed in to change notification settings - Fork 5
/
README.txt
50 lines (30 loc) · 940 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
= 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::Tetrachoric 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:
BSD 2-Clause (see LICENSE.txt)