Class: Rust::StatisticalTests::PValueAdjustment::Holm
- Defined in:
- lib/rust/stats/tests.rb
Overview
Holm p-value adjustment method.
Class Method Summary collapse
Class Method Details
.adjust(*p_values) ⇒ Object
308 309 310 311 312 313 |
# File 'lib/rust/stats/tests.rb', line 308 def self.adjust(*p_values) Rust.exclusive do Rust['adjustment.p'] = p_values return Rust._pull("p.adjust(adjustment.p, method=\"holm\")") end end |