class StatsampleTestVector
Public Instance Methods
assert_counting_tokens(b)
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 11 def assert_counting_tokens(b) assert_equal([1,1,0,1,0,nil],b['a'].to_a) assert_equal([0,1,0,0,0,nil],b['b'].to_a) assert_equal([0,0,1,0,0,nil],b['c'].to_a) assert_equal([0,0,1,1,0,nil],b['d'].to_a) assert_equal([0,0,0,0,1,nil],b[10].to_a) end
setup()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 6 def setup @c = Statsample::Vector.new([5,5,5,5,5,6,6,7,8,9,10,1,2,3,4,nil,-99,-99], :nominal) @c.name="Test Vector" @c.missing_values=[-99] end
test_add()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 453 def test_add a=Statsample::Vector.new([1,2,3,4,5], :scale) b=Statsample::Vector.new([11,12,13,14,15], :scale) assert_equal([3,4,5,6,7], (a+2).to_a) assert_equal([12,14,16,18,20], (a+b).to_a) assert_raise ArgumentError do a + @c end assert_raise TypeError do a+"string" end a=Statsample::Vector.new([nil,1, 2 ,3 ,4 ,5], :scale) b=Statsample::Vector.new([11, 12,nil,13,14,15], :scale) assert_equal([nil,13,nil,16,18,20], (a+b).to_a) assert_equal([nil,13,nil,16,18,20], (a+b.to_a).to_a) end
test_average_deviation()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 489 def test_average_deviation a=[1,2,3,4,5,6,7,8,9].to_scale assert_equal(20.quo(9), a.average_deviation_population) end
test_can_be_methods()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 610 def test_can_be_methods a= [0,0,0,1,2,3,nil].to_vector assert(a.can_be_scale?) a=[0,"s",0,1,2,3,nil].to_vector assert(!a.can_be_scale?) a.missing_values=["s"] assert(a.can_be_scale?) a=[Date.new(2009,10,10), Date.today(), "2009-10-10", "2009-1-1", nil, "NOW"].to_vector assert(a.can_be_date?) a=[Date.new(2009,10,10), Date.today(),nil,"sss"].to_vector assert(!a.can_be_date?) end
test_check_type()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 425 def test_check_type v=Statsample::Vector.new v.type=:nominal assert_raise(NoMethodError) { v.check_type(:scale)} assert_raise(NoMethodError) { v.check_type(:ordinal)} assert(v.check_type(:nominal).nil?) v.type=:ordinal assert_raise(NoMethodError) { v.check_type(:scale)} assert(v.check_type(:ordinal).nil?) assert(v.check_type(:nominal).nil?) v.type=:scale assert(v.check_type(:scale).nil?) assert(v.check_type(:ordinal).nil?) assert(v.check_type(:nominal).nil?) v.type=:date assert_raise(NoMethodError) { v.check_type(:scale)} assert_raise(NoMethodError) { v.check_type(:ordinal)} assert_raise(NoMethodError) { v.check_type(:nominal)} end
test_date_vector()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 623 def test_date_vector a=[Date.new(2009,10,10), :NOW, "2009-10-10", "2009-1-1", nil, "NOW","MISSING"].to_vector(:date, :missing_values=>["MISSING"]) assert(a.type==:date) expected=[Date.new(2009,10,10), Date.today(), Date.new(2009,10,10), Date.new(2009,1,1), nil, Date.today(), nil ] assert_equal(expected, a.date_data_with_nils) end
test_dichotomize()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 596 def test_dichotomize a= [0,0,0,1,2,3,nil].to_vector exp=[0,0,0,1,1,1,nil].to_scale assert_equal(exp,a.dichotomize) a= [1,1,1,2,2,2,3].to_vector exp=[0,0,0,1,1,1,1].to_scale assert_equal(exp,a.dichotomize) a= [0,0,0,1,2,3,nil].to_vector exp=[0,0,0,0,1,1,nil].to_scale assert_equal(exp,a.dichotomize(1)) a= %w{a a a b c d}.to_vector exp=[0,0,0,1,1,1].to_scale assert_equal(exp, a.dichotomize) end
test_dup()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 564 def test_dup v1=%w{a a a b b b c c}.to_vector v2=v1.dup assert_equal(v1.data,v2.data) assert_not_same(v1.data,v2.data) assert_equal(v1.type,v2.type) v1.type=:ordinal assert_not_equal(v1.type,v2.type) assert_equal(v1.missing_values,v2.missing_values) assert_not_same(v1.missing_values,v2.missing_values) assert_equal(v1.labels,v2.labels) assert_not_same(v1.labels,v2.labels) v3=v1.dup_empty assert_equal([],v3.data) assert_not_equal(v1.data,v3.data) assert_not_same(v1.data,v3.data) assert_equal(v1.type,v3.type) v1.type=:ordinal v3.type=:nominal assert_not_equal(v1.type,v3.type) assert_equal(v1.missing_values,v3.missing_values) assert_not_same(v1.missing_values,v3.missing_values) assert_equal(v1.labels,v3.labels) assert_not_same(v1.labels,v3.labels) end
test_equality()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 345 def test_equality v1=[1,2,3].to_vector v2=[1,2,3].to_vector assert_equal(v1,v2) v1=[1,2,3].to_vector(:nominal) v2=[1,2,3].to_vector(:ordinal) assert_not_equal(v1,v2) v1=[1,2,3].to_vector() v2=[1,2,3].to_vector() assert_equal(v1,v2) end
test_gsl()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 527 def test_gsl if Statsample.has_gsl? a=Statsample::Vector.new([1,2,3,4,"STRING"], :scale) assert_equal(2,a.mean) assert_equal(a.variance_sample_ruby,a.variance_sample) assert_equal(a.standard_deviation_sample_ruby,a.sds) assert_equal(a.variance_population_ruby,a.variance_population) assert_equal(a.standard_deviation_population_ruby,a.standard_deviation_population) assert_nothing_raised do a=[].to_vector(:scale) end a.add(1,false) a.add(2,false) a.set_valid_data assert_equal(3,a.sum) b=[1,2,nil,3,4,5,nil,6].to_vector(:scale) assert_equal(21, b.sum) assert_equal(3.5, b.mean) assert_equal(6,b.gsl.size) c=[10,20,30,40,50,100,1000,2000,5000].to_scale assert_in_delta(c.skew, c.skew_ruby ,0.0001) assert_in_delta(c.kurtosis, c.kurtosis_ruby ,0.0001) end end
test_marshalling()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 559 def test_marshalling v1=(0..100).to_a.collect{|n| rand(100)}.to_vector(:scale) v2=Marshal.load(Marshal.dump(v1)) assert_equal(v1,v2) end
test_minus()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 469 def test_minus a=Statsample::Vector.new([1,2,3,4,5], :scale) b=Statsample::Vector.new([11,12,13,14,15], :scale) assert_equal([-1,0,1,2,3], (a-2).to_a) assert_equal([10,10,10,10,10], (b-a).to_a) assert_raise ArgumentError do a-@c end assert_raise TypeError do a-"string" end a=Statsample::Vector.new([nil,1, 2 ,3 ,4 ,5], :scale) b=Statsample::Vector.new([11, 12,nil,13,14,15], :scale) assert_equal([nil,11,nil,10,10,10], (b-a).to_a) assert_equal([nil,11,nil,10,10,10], (b-a.to_a).to_a) end
test_nominal()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 334 def test_nominal assert_equal(@c[1],5) assert_equal({ 1=>1,2=>1,3=>1,4=>1,5=>5,6=>2,7=>1,8=>1, 9=>1,10=>1},@c.frequencies) assert_equal({ 1=>1,2=>1,3=>1,4=>1,5=>5,6=>2,7=>1,8=>1, 9=>1,10=>1},@c._frequencies) assert_equal({ 1 => 1.quo(15) ,2=>1.quo(15), 3=>1.quo(15),4=>1.quo(15),5=>5.quo(15),6=>2.quo(15),7=>1.quo(15), 8=>1.quo(15), 9=>1.quo(15),10=>1.quo(15)}, @c.proportions) assert_equal(@c.proportion, 1.quo(15)) assert_equal(@c.proportion(2), 1.quo(15)) assert_equal([1,2,3,4,5,6,7,8,9,10], @c.factors.sort) assert_equal(@c.mode,5) assert_equal(@c.n_valid,15) end
test_ordinal()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 366 def test_ordinal @c.type=:ordinal assert_equal(5,@c.median) assert_equal(4,@c.percentil(25)) assert_equal(7,@c.percentil(75)) v=[200000, 200000, 210000, 220000, 230000, 250000, 250000, 250000, 270000, 300000, 450000, 130000, 140000, 140000, 140000, 145000, 148000, 165000, 170000, 180000, 180000, 180000, 180000, 180000, 180000 ].to_scale assert_equal(180000,v.median) a=[7.0, 7.0, 7.0, 7.0, 7.0, 8.0, 8.0, 8.0, 9.0, 9.0, 10.0, 10.0, 10.0, 10.0, 10.0, 12.0, 12.0, 13.0, 14.0, 14.0, 2.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0, 4.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 6.0, 6.0, 6.0].to_scale assert_equal(4.5, a.percentil(25)) assert_equal(6.5, a.percentil(50)) assert_equal(9.5, a.percentil(75)) assert_equal(3.0, a.percentil(10)) end
test_paired_ties()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 591 def test_paired_ties a=[0,0,0,1,1,2,3,3,4,4,4].to_vector(:ordinal) expected=[2,2,2,4.5,4.5,6,7.5,7.5,10,10,10].to_vector(:ordinal) assert_equal(expected,a.ranked) end
test_ranked()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 380 def test_ranked v1=[0.8,1.2,1.2,2.3,18].to_vector(:ordinal) expected=[1,2.5,2.5,4,5].to_vector(:ordinal) assert_equal(expected,v1.ranked) v1=[nil,0.8,1.2,1.2,2.3,18,nil].to_vector(:ordinal) expected=[nil,1,2.5,2.5,4,5,nil].to_vector(:ordinal) assert_equal(expected,v1.ranked) end
test_samples()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 493 def test_samples srand(1) assert_equal(100,@c.sample_with_replacement(100).size) assert_equal(@c.valid_data.to_a.sort, @c.sample_without_replacement(15).sort) assert_raise ArgumentError do @c.sample_without_replacement(20) end @c.type=:scale srand(1) assert_equal(100, @c.sample_with_replacement(100).size) assert_equal(@c.valid_data.to_a.sort, @c.sample_without_replacement(15).sort) end
test_scale()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 388 def test_scale a=Statsample::Vector.new([1,2,3,4,"STRING"], :scale) assert_equal(10, a.sum) i=0 factors=a.factors.sort [0,1,2,3,4].each{|v| assert(v==factors[i]) assert(v.class==factors[i].class,"#{v} - #{v.class} != #{factors[i]} - #{factors[i].class}") i+=1 } end
test_set_value()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 522 def test_set_value @c[2]=10 expected=[5,5,10,5,5,6,6,7,8,9,10,1,2,3,4,nil,-99,-99].to_vector assert_equal(expected.data,@c.data) end
test_sum_of_squares()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 485 def test_sum_of_squares a=[1,2,3,4,5,6].to_vector(:scale) assert_equal(17.5, a.sum_of_squared_deviation) end
test_valid_data()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 506 def test_valid_data a=Statsample::Vector.new([1,2,3,4,"STRING"]) a.missing_values=[-99] a.add(1,false) a.add(2,false) a.add(-99,false) a.set_valid_data exp_valid_data=[1,2,3,4,"STRING",1,2] assert_equal(exp_valid_data,a.valid_data) a.add(20,false) a.add(30,false) assert_equal(exp_valid_data,a.valid_data) a.set_valid_data exp_valid_data_2=[1,2,3,4,"STRING",1,2,20,30] assert_equal(exp_valid_data_2,a.valid_data) end
test_vector_centered()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 399 def test_vector_centered mean=rand() samples=11 centered=samples.times.map {|i| i-((samples/2).floor).to_i}.to_scale not_centered=centered.recode {|v| v+mean} obs=not_centered.centered centered.each_with_index do |v,i| assert_in_delta(v,obs[i],0.0001) end end
test_vector_matrix()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 552 def test_vector_matrix v1=%w{a a a b b b c c}.to_vector v2=%w{1 3 4 5 6 4 3 2}.to_vector v3=%w{1 0 0 0 1 1 1 0}.to_vector ex=Matrix.rows([["a", "1", "1"], ["a", "3", "0"], ["a", "4", "0"], ["b", "5", "0"], ["b", "6", "1"], ["b", "4", "1"], ["c", "3", "1"], ["c", "2", "0"]]) assert_equal(ex,Statsample.vector_cols_matrix(v1,v2,v3)) end
test_vector_percentil()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 356 def test_vector_percentil a=[1,2,2,3,4,5,5,5,6,10].to_scale expected=[10,25,25,40,50,70,70,70,90,100].to_scale assert_equal(expected, a.vector_percentil) a=[1,nil,nil,2,2,3,4,nil,nil,5,5,5,6,10].to_scale expected=[10,nil,nil,25,25,40,50,nil,nil,70,70,70,90,100].to_scale assert_equal(expected, a.vector_percentil) end
test_vector_standarized()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 409 def test_vector_standarized v1=[1,2,3,4,nil].to_vector(:scale) sds=v1.sds expected=[((1-2.5).quo(sds)),((2-2.5).quo(sds)),((3-2.5).quo(sds)),((4-2.5).quo(sds)), nil].to_vector(:scale) vs=v1.vector_standarized assert_equal(expected, vs) assert_equal(0,vs.mean) assert_equal(1,vs.sds) end
test_vector_standarized_with_zero_variance()
click to toggle source
# File pkg/statsample-1.4.0/test/test_vector.rb, line 419 def test_vector_standarized_with_zero_variance v1=100.times.map {|i| 1}.to_scale exp=100.times.map {nil}.to_scale assert_equal(exp,v1.standarized) end