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, **) result = Rust::Plots::AdjustedBoxplot.new .each do |k, v| result[k] = v end result. args.each do |s| result.series(s) end result.show end |