module ProcPlot
Public Instance Methods
setting_for_box( setting )
click to toggle source
# File lib/statsailr_procs_base/proc_setting/proc_plot.rb, line 31 def setting_for_box( setting ) setting.libname = nil setting.envname = "sts_plot" setting.func_name = "box" setting.main_arg_and_how_to_treat = [ "var" , :read_as_strvec, :no_nil] setting.runtime_args = {"data" => param("data")} setting.store_result = false setting.print_opt = false setting.plot_opt = true end
setting_for_hist( setting )
click to toggle source
# File lib/statsailr_procs_base/proc_setting/proc_plot.rb, line 20 def setting_for_hist( setting ) setting.libname = nil setting.envname = "sts_plot" setting.func_name = "hist" setting.main_arg_and_how_to_treat = [ "var" , :read_as_strvec, :no_nil] setting.runtime_args = {"data" => param("data") } setting.store_result = false setting.print_opt = false setting.plot_opt = true end
setting_for_legend( setting )
click to toggle source
# File lib/statsailr_procs_base/proc_setting/proc_plot.rb, line 9 def setting_for_legend( setting ) setting.libname = nil setting.envname = "sts_plot" setting.func_name = "legend" setting.main_arg_and_how_to_treat = [ "legend" , :read_as_strvec, :no_nil] setting.runtime_args = nil setting.store_result = false setting.print_opt = false setting.plot_opt = false end
setting_for_scatter( setting )
click to toggle source
# File lib/statsailr_procs_base/proc_setting/proc_plot.rb, line 42 def setting_for_scatter( setting ) setting.libname = nil setting.envname = "sts_plot" setting.func_name = "scatter" setting.main_arg_and_how_to_treat = [ "vars" , :read_as_strvec, :no_nil] setting.runtime_args = {"data" => param("data")} setting.store_result = false setting.print_opt = false setting.plot_opt = true end