Batch Process and Plot RATE Curves for Multiple Models (New Function)
Source:R/margot_plot_rate_batch.R
margot_plot_rate_batch.Rd
This function processes multiple models, creates RATE (Rank Average Treatment Effect) plots for each model using the margot package, and optionally saves the plots.
Usage
margot_plot_rate_batch(
models_binary,
dpi = 300,
width = 12,
height = 8,
save_plots = TRUE,
output_dir = "rate_plots"
)
margot_plot_batch_rate(
models_binary,
dpi = 300,
width = 12,
height = 8,
save_plots = TRUE,
output_dir = "rate_plots"
)
Arguments
- models_binary
A list of model results, where each element contains a 'rate_result' component.
- dpi
The resolution of the saved plots in dots per inch. Default is 300.
- width
The width of the saved plots in inches. Default is 12.
- height
The height of the saved plots in inches. Default is 8.
- save_plots
Logical indicating whether to save the plots to disk. Default is TRUE.
- output_dir
The directory where plots should be saved. Default is "rate_plots".