statsample-bivariate-extension 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.build.sh +14 -0
- data/.gitignore +9 -0
- data/.travis.yml +27 -0
- data/Gemfile +2 -0
- data/History.txt +6 -0
- data/LICENSE.txt +23 -0
- data/{README.txt → README.md} +13 -11
- data/lib/statsample/bivariate/extension_version.rb +1 -1
- data/lib/statsample/bivariate/polychoric.rb +2 -2
- data/lib/statsample/bivariate/tetrachoric.rb +2 -2
- data/spec/polychoric_spec.rb +4 -4
- data/spec/tetrachoric_spec.rb +4 -4
- data/statsample-bivariate-extension.gemspec +33 -0
- metadata +134 -107
- data.tar.gz.sig +0 -0
- data/.gemtest +0 -0
- data/Manifest.txt +0 -16
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0f4674626beaba0a1ef4b15f739b2154692218b2
|
4
|
+
data.tar.gz: 6a1f7af3ecda48e76f9f57c6e9e869f30986dd95
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7cb0639430518c4cb0028129176682f85786e98aa0e64172ca498eb0adabfc6fe9aee5a11f681c93a34b255b2b87ca717127fdece5d85a3fbd3a566191ca0cbd
|
7
|
+
data.tar.gz: 2e81c0c2a86b0a6d1f4a744b9250398c18aa8b1f158c83dde2315f8a331ca049111384df0e603db25ac99236724fec16b465bd3403e03b662f19b27382e28c6a
|
data/.build.sh
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
git clone https://github.com/SciRuby/nmatrix.git
|
4
|
+
cd nmatrix
|
5
|
+
gem build nmatrix.gemspec
|
6
|
+
gem install nmatrix-0.1.0.gem
|
7
|
+
cd ..
|
8
|
+
rm -rf nmatrix
|
9
|
+
# git clone https://github.com/v0dro/gsl-nmatrix
|
10
|
+
# cd gsl-nmatrix
|
11
|
+
# gem build gsl-nmatrix.gemspec
|
12
|
+
# gem install gsl-nmatrix-1.17.gem
|
13
|
+
# cd ..
|
14
|
+
# rm -rf gsl-nmatrix
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
language:
|
2
|
+
ruby
|
3
|
+
|
4
|
+
env:
|
5
|
+
- CPLUS_INCLUDE_PATH=/usr/include/atlas C_INCLUDE_PATH=/usr/include/atlas
|
6
|
+
|
7
|
+
rvm:
|
8
|
+
- '1.9.3'
|
9
|
+
- '2.0'
|
10
|
+
- '2.1'
|
11
|
+
- '2.2'
|
12
|
+
|
13
|
+
matrix:
|
14
|
+
fast_finish:
|
15
|
+
true
|
16
|
+
|
17
|
+
script: "bundle exec rspec"
|
18
|
+
|
19
|
+
install:
|
20
|
+
- gem install bundler
|
21
|
+
- ./.build.sh
|
22
|
+
- bundle install
|
23
|
+
|
24
|
+
before_install:
|
25
|
+
- sudo apt-get update -qq
|
26
|
+
- sudo apt-get install -qq libatlas-base-dev
|
27
|
+
- sudo apt-get install -y libgsl0-dev r-base r-base-dev
|
data/Gemfile
ADDED
data/History.txt
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
=== 1.2.0
|
2
|
+
|
3
|
+
* Updated statsample dependency to 1.5.0
|
4
|
+
* Added new dependency on daru (0.1.0)
|
5
|
+
* Modernized gem. Added gemspec, Gemfile and specified dependencies.
|
6
|
+
|
1
7
|
=== 0.16.1 / 2010-12-22
|
2
8
|
|
3
9
|
* Added support for optimized tetrachoric correlation calculation. Update statsample-optimization before report any error, please.
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
Copyright (c) 2010-2014, Claudio Bustos
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
8
|
+
list of conditions and the following disclaimer.
|
9
|
+
|
10
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
11
|
+
this list of conditions and the following disclaimer in the documentation
|
12
|
+
and/or other materials provided with the distribution.
|
13
|
+
|
14
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
15
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
16
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
17
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
18
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
19
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
20
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
21
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
22
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
23
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/{README.txt → README.md}
RENAMED
@@ -1,22 +1,24 @@
|
|
1
|
-
|
1
|
+
# statsample-bivariate-extension
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/SciRuby/statsample-bivariate-extension.svg)](https://travis-ci.org/SciRuby/statsample-bivariate-extension)
|
2
4
|
|
3
5
|
* http://ruby-statsample.rubyforge.org/
|
4
6
|
|
5
|
-
|
7
|
+
## DESCRIPTION:
|
6
8
|
|
7
9
|
Provides advanced bivariate statistics:
|
8
10
|
* Tetrachoric correlation
|
9
11
|
* Polychoric correlation
|
10
12
|
|
11
|
-
|
13
|
+
## FEATURES/PROBLEMS:
|
12
14
|
|
13
15
|
* Statsample::Bivariate::Polychoric class provides polychoric correlation
|
14
16
|
* Statsample::Bivariate::Tetrachoric class provides tetrachoric correlation
|
15
17
|
|
16
18
|
|
17
|
-
|
19
|
+
## SYNOPSIS:
|
18
20
|
|
19
|
-
|
21
|
+
### Tetrachoric correlation
|
20
22
|
|
21
23
|
require 'statsample'
|
22
24
|
a=40
|
@@ -26,7 +28,7 @@ Provides advanced bivariate statistics:
|
|
26
28
|
tetra=Statsample::Bivariate::Tetrachoric.new(a,b,c,d)
|
27
29
|
puts tetra.summary
|
28
30
|
|
29
|
-
|
31
|
+
### Polychoric correlation
|
30
32
|
|
31
33
|
require 'statsample'
|
32
34
|
ct=Matrix[[58,52,1],[26,58,3],[8,12,9]]
|
@@ -35,16 +37,16 @@ Provides advanced bivariate statistics:
|
|
35
37
|
puts poly.summary
|
36
38
|
|
37
39
|
|
38
|
-
|
40
|
+
## REQUIREMENTS:
|
39
41
|
|
40
42
|
* Statsample
|
41
43
|
|
42
|
-
|
44
|
+
## INSTALL:
|
43
45
|
|
44
46
|
This gem is a statsample dependency. If you want to install it separatly
|
45
47
|
|
46
|
-
*
|
48
|
+
* gem install statsample-bivariate-extension
|
47
49
|
|
48
|
-
|
50
|
+
## LICENSE:
|
49
51
|
|
50
|
-
|
52
|
+
BSD 2-Clause (see LICENSE.txt)
|
@@ -9,7 +9,7 @@ module Statsample
|
|
9
9
|
end
|
10
10
|
|
11
11
|
# Polychoric correlation matrix.
|
12
|
-
# Order of rows and columns depends on
|
12
|
+
# Order of rows and columns depends on DataFrame#vectors order
|
13
13
|
def self.polychoric_correlation_matrix(ds)
|
14
14
|
cache={}
|
15
15
|
matrix=ds.collect_matrix do |row,col|
|
@@ -30,7 +30,7 @@ module Statsample
|
|
30
30
|
end
|
31
31
|
end
|
32
32
|
matrix.extend CovariateMatrix
|
33
|
-
matrix.fields=ds.
|
33
|
+
matrix.fields=ds.vectors.to_a
|
34
34
|
matrix
|
35
35
|
end
|
36
36
|
|
@@ -7,7 +7,7 @@ module Statsample
|
|
7
7
|
end
|
8
8
|
|
9
9
|
# Tetrachoric correlation matrix.
|
10
|
-
# Order of rows and columns depends on
|
10
|
+
# Order of rows and columns depends on DataFrame#vectors order
|
11
11
|
def self.tetrachoric_correlation_matrix(ds)
|
12
12
|
cache={}
|
13
13
|
matrix=ds.collect_matrix do |row,col|
|
@@ -29,7 +29,7 @@ module Statsample
|
|
29
29
|
end
|
30
30
|
|
31
31
|
matrix.extend CovariateMatrix
|
32
|
-
matrix.fields=ds.
|
32
|
+
matrix.fields=ds.vectors.to_a
|
33
33
|
matrix
|
34
34
|
end
|
35
35
|
# Compute tetrachoric correlation.
|
data/spec/polychoric_spec.rb
CHANGED
@@ -5,10 +5,10 @@ describe "Statsample::Bivariate polychoric extension" do
|
|
5
5
|
Statsample::Bivariate.should respond_to(:polychoric)
|
6
6
|
end
|
7
7
|
it "should respond to method polychoric_correlation_matrix" do
|
8
|
-
a=([1,1,2,2,2,3,3,3,2,2,3,3,3]*4)
|
9
|
-
b=([1,2,2,2,1,3,2,3,2,2,3,3,2]*4)
|
10
|
-
c=([1,1,1,2,2,2,2,3,2,3,2,2,3]*4)
|
11
|
-
ds={
|
8
|
+
a = Daru::Vector.new([1,1,2,2,2,3,3,3,2,2,3,3,3]*4)
|
9
|
+
b = Daru::Vector.new([1,2,2,2,1,3,2,3,2,2,3,3,2]*4)
|
10
|
+
c = Daru::Vector.new([1,1,1,2,2,2,2,3,2,3,2,2,3]*4)
|
11
|
+
ds= Daru::DataFrame.new({:a => a,:b => b,:c => c})
|
12
12
|
Statsample::Bivariate.polychoric_correlation_matrix(ds).should be_instance_of(::Matrix)
|
13
13
|
end
|
14
14
|
end
|
data/spec/tetrachoric_spec.rb
CHANGED
@@ -9,9 +9,9 @@ describe "Statsample::Bivariate tetrachoric extensions" do
|
|
9
9
|
Statsample::Bivariate.should respond_to(:tetrachoric)
|
10
10
|
end
|
11
11
|
it "should return correct tetrachoric_matrix"do
|
12
|
-
ds=
|
12
|
+
ds=Daru::DataFrame.from_plaintext(@data_file, [:a, :b, :c, :d, :e])
|
13
13
|
tcm_obs=Statsample::Bivariate.tetrachoric_correlation_matrix(ds)
|
14
|
-
tcm_exp=
|
14
|
+
tcm_exp=Daru::DataFrame.from_plaintext(@data_file, [:a, :b, :c, :d, :e]).to_matrix
|
15
15
|
tcm_obs.row_size.times do |i|
|
16
16
|
tcm_obs.column_size do |j|
|
17
17
|
tcm_obs[i,j].should be_within( 0.00001).of(tcm_exp[i,k])
|
@@ -79,8 +79,8 @@ shared_examples_for "tetrachoric implementation" do
|
|
79
79
|
tc.threshold_y.should be_within( 0.0001).of( 0.31864)
|
80
80
|
end
|
81
81
|
it "should return equal values for dataset and crosstab inputs" do
|
82
|
-
x
|
83
|
-
y
|
82
|
+
x = Daru::Vector.new(%w{a a a a b b b a b b a a b b})
|
83
|
+
y = Daru::Vector.new(%w{0 0 1 1 0 0 1 1 1 1 0 0 1 1})
|
84
84
|
# crosstab
|
85
85
|
# 0 1
|
86
86
|
# a 4 3
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
$:.unshift File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
require 'statsample/bivariate/extension_version.rb'
|
5
|
+
|
6
|
+
Statsample::Bivariate::DESCRIPTION = <<MSG
|
7
|
+
Polychoric and Tetrachoric extensions for Statsample::Bivariate.
|
8
|
+
MSG
|
9
|
+
|
10
|
+
Gem::Specification.new do |spec|
|
11
|
+
spec.name = 'statsample-bivariate-extension'
|
12
|
+
spec.version = Statsample::Bivariate::EXTENSION_VERSION
|
13
|
+
spec.authors = ['Claudio Bustos']
|
14
|
+
spec.email = ["clbustos@gmail.com"]
|
15
|
+
spec.summary = %q{Polychoric and Tetrachoric extensions for Statsample::Bivariate.}
|
16
|
+
spec.description = Statsample::Bivariate::DESCRIPTION
|
17
|
+
spec.homepage = "https://github.com/SciRuby/statsample-bivariate-extension"
|
18
|
+
spec.license = 'BSD-2'
|
19
|
+
|
20
|
+
spec.files = `git ls-files -z`.split("\x0")
|
21
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
22
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_runtime_dependency 'daru', '~> 0.1'
|
26
|
+
spec.add_runtime_dependency 'statsample', '~> 2.0'
|
27
|
+
|
28
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
29
|
+
spec.add_development_dependency 'rake', '~> 10.4'
|
30
|
+
spec.add_development_dependency 'rspec'
|
31
|
+
spec.add_development_dependency 'nmatrix', '~> 0.1'
|
32
|
+
spec.add_development_dependency 'rb-gsl', '~> 1.16'
|
33
|
+
end
|
metadata
CHANGED
@@ -1,143 +1,170 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: statsample-bivariate-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.2.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Claudio Bustos
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
|
-
cert_chain:
|
12
|
-
-
|
13
|
-
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURNakNDQWhxZ0F3SUJB
|
14
|
-
Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREEvTVJFd0R3WURWUVFEREFoamJH
|
15
|
-
SjEKYzNSdmN6RVZNQk1HQ2dtU0pvbVQ4aXhrQVJrV0JXZHRZV2xzTVJNd0VR
|
16
|
-
WUtDWkltaVpQeUxHUUJHUllEWTI5dApNQjRYRFRFd01ETXlPVEl4TXpnMU5W
|
17
|
-
b1hEVEV4TURNeU9USXhNemcxTlZvd1B6RVJNQThHQTFVRUF3d0lZMnhpCmRY
|
18
|
-
TjBiM014RlRBVEJnb0praWFKay9Jc1pBRVpGZ1ZuYldGcGJERVRNQkVHQ2dt
|
19
|
-
U0pvbVQ4aXhrQVJrV0EyTnYKYlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFB
|
20
|
-
RGdnRVBBRENDQVFvQ2dnRUJBTGY4SlZNR3FFN201a1liK1BOTgpuZVp2MnBj
|
21
|
-
WFY1ZlFDaTZ4a3lHOGJpMi9TSUZ5L0x5eHV2THpFZU94QmVhejFCZTkzYmF5
|
22
|
-
SVVxdU9JcXczZHl3Ci9LWFdhMzFGeHVOdXZBbTZDTjhmeWVSWVgvb3U0Y3cz
|
23
|
-
T0lVVW5JdkI3Uk1OSXU0d2JnZU02aHRWL1FFc05McnYKYXQxL21oOUpwcWF3
|
24
|
-
UHJjaklPVk1qNEJJcDY3dm16SkNhVWYrUy9IMnVZdFNPMDlGK1lRRTN0djg1
|
25
|
-
VFBlUm1xVQp5anlYeVRjL29KaXcxY1hza1VMOFV0TVdabXJ3TkxIWHVaV1dJ
|
26
|
-
TXpraml6M1VOZGhKci90NVJPazhTMldQem5sCjBiTXkvUE1JbEFicVdvbFJu
|
27
|
-
MXpsMlZGSjNUYVhTY2JxSW1ZOFdmNGc2MmIvMVpTVWxHcnRuTE5zQ1lYcldp
|
28
|
-
c28KVVBVQ0F3RUFBYU01TURjd0NRWURWUjBUQkFJd0FEQUxCZ05WSFE4RUJB
|
29
|
-
TUNCTEF3SFFZRFZSME9CQllFRkd1OQpyckoxSDY0cVJtTk51M0pqL1Fqdmgw
|
30
|
-
dTVNQTBHQ1NxR1NJYjNEUUVCQlFVQUE0SUJBUUNWMFVua2E1aXNyaFprCkdq
|
31
|
-
cVNEcVkvNmhGK0cycGJGY2JXVXBqbUM4Tld0QXhlQys3TkdWM2xqZDBlMVNM
|
32
|
-
Zm95Qmo0Z25GdEZtWThxWDQKSzAydGdTWk0wZURWOFRwZ0ZwV1h6SzZMekh2
|
33
|
-
b2FudWFoSExaRXRrLytaODg1bEZlbmUrbkhhZGtlbTFuOWlBQgpjczk2Sk85
|
34
|
-
L0pmRnl1WE0yN3dGQXdtZkhDbUpmUEYwOVI0VnZHSFJBdmI4TUd6U1ZnazJp
|
35
|
-
MDZPSlRxa0JUd3Z2CkpISmRveXczKzhidzlSSitqTGFOb1EreHUrMXBRZFMy
|
36
|
-
YmIzbTd4alpwdWZtbC9tOHpGQ3RqWU0vN3Fna0tSOHoKL1padDhsQ2lLZkZB
|
37
|
-
cnBwUnJaYXlFMkZWc3BzNFg2V3dCZHJLVE1aMENLU1hUUmN0YkVqMUJBWjY3
|
38
|
-
ZW9UdkJCdApycFAwampzMAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
39
|
-
date: 2011-09-12 00:00:00.000000000 Z
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-08-19 00:00:00.000000000 Z
|
40
12
|
dependencies:
|
41
13
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
43
|
-
requirement:
|
44
|
-
none: false
|
14
|
+
name: daru
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
45
16
|
requirements:
|
46
|
-
- - ~>
|
17
|
+
- - "~>"
|
47
18
|
- !ruby/object:Gem::Version
|
48
|
-
version: '0.
|
19
|
+
version: '0.1'
|
49
20
|
type: :runtime
|
50
21
|
prerelease: false
|
51
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: statsample
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.10'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.10'
|
52
55
|
- !ruby/object:Gem::Dependency
|
53
|
-
name:
|
54
|
-
requirement:
|
55
|
-
none: false
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
56
58
|
requirements:
|
57
|
-
- - ~>
|
59
|
+
- - "~>"
|
58
60
|
- !ruby/object:Gem::Version
|
59
|
-
version: '
|
61
|
+
version: '10.4'
|
60
62
|
type: :development
|
61
63
|
prerelease: false
|
62
|
-
version_requirements:
|
63
|
-
|
64
|
-
|
65
|
-
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.4'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: nmatrix
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.1'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.1'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rb-gsl
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.16'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.16'
|
111
|
+
description: |
|
112
|
+
Polychoric and Tetrachoric extensions for Statsample::Bivariate.
|
66
113
|
email:
|
67
|
-
-
|
114
|
+
- clbustos@gmail.com
|
68
115
|
executables: []
|
69
116
|
extensions: []
|
70
|
-
extra_rdoc_files:
|
71
|
-
- !binary |-
|
72
|
-
SGlzdG9yeS50eHQ=
|
73
|
-
- !binary |-
|
74
|
-
TWFuaWZlc3QudHh0
|
75
|
-
- !binary |-
|
76
|
-
UkVBRE1FLnR4dA==
|
77
|
-
- !binary |-
|
78
|
-
cmVmZXJlbmNlcy50eHQ=
|
117
|
+
extra_rdoc_files: []
|
79
118
|
files:
|
80
|
-
-
|
81
|
-
|
82
|
-
-
|
83
|
-
|
84
|
-
-
|
85
|
-
|
86
|
-
-
|
87
|
-
|
88
|
-
-
|
89
|
-
|
90
|
-
-
|
91
|
-
|
92
|
-
-
|
93
|
-
|
94
|
-
-
|
95
|
-
|
96
|
-
-
|
97
|
-
|
98
|
-
|
99
|
-
-
|
100
|
-
|
101
|
-
-
|
102
|
-
|
103
|
-
-
|
104
|
-
|
105
|
-
- !binary |-
|
106
|
-
c3BlYy9wb2x5Y2hvcmljX3NwZWMucmI=
|
107
|
-
- !binary |-
|
108
|
-
c3BlYy9zcGVjLm9wdHM=
|
109
|
-
- !binary |-
|
110
|
-
c3BlYy9zcGVjX2hlbHBlci5yYg==
|
111
|
-
- !binary |-
|
112
|
-
c3BlYy90ZXRyYWNob3JpY19zcGVjLnJi
|
113
|
-
- .gemtest
|
114
|
-
homepage: !binary |-
|
115
|
-
aHR0cDovL3J1Ynktc3RhdHNhbXBsZS5ydWJ5Zm9yZ2Uub3JnLw==
|
116
|
-
licenses: []
|
119
|
+
- ".build.sh"
|
120
|
+
- ".gitignore"
|
121
|
+
- ".travis.yml"
|
122
|
+
- Gemfile
|
123
|
+
- History.txt
|
124
|
+
- LICENSE.txt
|
125
|
+
- README.md
|
126
|
+
- Rakefile
|
127
|
+
- data/tetmat_matrix.txt
|
128
|
+
- data/tetmat_test.txt
|
129
|
+
- lib/statsample/bivariate/extension_version.rb
|
130
|
+
- lib/statsample/bivariate/polychoric.rb
|
131
|
+
- lib/statsample/bivariate/polychoric/processor.rb
|
132
|
+
- lib/statsample/bivariate/tetrachoric.rb
|
133
|
+
- references.txt
|
134
|
+
- spec/polychoric_processor_spec.rb
|
135
|
+
- spec/polychoric_spec.rb
|
136
|
+
- spec/spec.opts
|
137
|
+
- spec/spec_helper.rb
|
138
|
+
- spec/tetrachoric_spec.rb
|
139
|
+
- statsample-bivariate-extension.gemspec
|
140
|
+
homepage: https://github.com/SciRuby/statsample-bivariate-extension
|
141
|
+
licenses:
|
142
|
+
- BSD-2
|
143
|
+
metadata: {}
|
117
144
|
post_install_message:
|
118
|
-
rdoc_options:
|
119
|
-
- --main
|
120
|
-
- README.txt
|
145
|
+
rdoc_options: []
|
121
146
|
require_paths:
|
122
147
|
- lib
|
123
148
|
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
-
none: false
|
125
149
|
requirements:
|
126
|
-
- -
|
150
|
+
- - ">="
|
127
151
|
- !ruby/object:Gem::Version
|
128
152
|
version: '0'
|
129
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
|
-
none: false
|
131
154
|
requirements:
|
132
|
-
- -
|
155
|
+
- - ">="
|
133
156
|
- !ruby/object:Gem::Version
|
134
157
|
version: '0'
|
135
158
|
requirements: []
|
136
|
-
rubyforge_project:
|
137
|
-
rubygems_version:
|
159
|
+
rubyforge_project:
|
160
|
+
rubygems_version: 2.4.6
|
138
161
|
signing_key:
|
139
|
-
specification_version:
|
140
|
-
summary:
|
141
|
-
|
142
|
-
|
143
|
-
|
162
|
+
specification_version: 4
|
163
|
+
summary: Polychoric and Tetrachoric extensions for Statsample::Bivariate.
|
164
|
+
test_files:
|
165
|
+
- spec/polychoric_processor_spec.rb
|
166
|
+
- spec/polychoric_spec.rb
|
167
|
+
- spec/spec.opts
|
168
|
+
- spec/spec_helper.rb
|
169
|
+
- spec/tetrachoric_spec.rb
|
170
|
+
has_rdoc:
|
data.tar.gz.sig
DELETED
Binary file
|
data/.gemtest
DELETED
File without changes
|
data/Manifest.txt
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
History.txt
|
2
|
-
Manifest.txt
|
3
|
-
README.txt
|
4
|
-
Rakefile
|
5
|
-
data/tetmat_matrix.txt
|
6
|
-
data/tetmat_test.txt
|
7
|
-
lib/statsample/bivariate/extension_version.rb
|
8
|
-
lib/statsample/bivariate/polychoric.rb
|
9
|
-
lib/statsample/bivariate/polychoric/processor.rb
|
10
|
-
lib/statsample/bivariate/tetrachoric.rb
|
11
|
-
references.txt
|
12
|
-
spec/polychoric_processor_spec.rb
|
13
|
-
spec/polychoric_spec.rb
|
14
|
-
spec/spec.opts
|
15
|
-
spec/spec_helper.rb
|
16
|
-
spec/tetrachoric_spec.rb
|
metadata.gz.sig
DELETED
Binary file
|