Method: Rust::RBindings#adjbox

Defined in:
lib/rust/external/robustbase.rb

#adjbox(*args, **options) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/rust/external/robustbase.rb', line 30

def adjbox(*args, **options)
    result = Rust::Plots::AdjustedBoxplot.new
    options.each do |k, v|
        result[k] = v
    end
    
    result._do_not_override_options!
    
    args.each do |s|
        result.series(s)
    end
    
    result.show
end