Class: Rust::StatisticalTests::PValueAdjustment::Holm

Inherits:
Object
  • Object
show all
Defined in:
lib/rust/stats/tests.rb

Class Method Summary collapse

Class Method Details

.adjust(*p_values) ⇒ Object



228
229
230
231
232
233
# File 'lib/rust/stats/tests.rb', line 228

def self.adjust(*p_values)
    Rust.exclusive do
        Rust['adjustment.p'] = p_values
        return Rust._pull("p.adjust(adjustment.p, method=\"holm\")")
    end
end