Module: Rust::StatisticalTests::Shapiro

Defined in:
lib/rust-tests.rb

Class Method Summary collapse

Class Method Details

.compute(vector, alpha = 0.05, **options) ⇒ Object

Raises:

  • (TypeError)


260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/rust-tests.rb', line 260

def compute(vector, alpha = 0.05, **options)
    raise TypeError, "Expecting Array of numerics" if !vector.is_a?(Array) || !vector.all? { |e| e.is_a?(Numeric) }
    Rust.exclusive do
        Rust['shapiro.v'] = vector
        
        Rust._eval("shapiro.result = shapiro.test(shapiro.v)")
        result = Rust::StatisticalTests::Result.new
        result.name       = "Shapiro-Wilk normality test"
        result.pvalue     = Rust._pull("shapiro.result$p.value")
        result[:W]        = Rust._pull("shapiro.result$statistic")
        result.exact      = true
        result.alpha      = alpha
        result.hypothesis = Rust::StatisticalTests::Hypothesis.find(options[:hypothesis])
        
        return result
    end
end