see icon indicating copy to clipboard operation
see copied to clipboard

Add `ncol` or `nrow` to `plot.see_check_model()`

Open mattansb opened this issue 2 years ago • 2 comments

The plot for check_model() is quite "tall" - would be nice to have it wider, or better yet - controllable by the user.

mattansb avatar Jan 12 '23 05:01 mattansb

For now, you can return each panel as single plot and compose it in a way you want. But we have:

  if (panel) {
    pw <- plots(p, n_columns = 2)
    .safe_print_plots(pw)
    invisible(pw)
  } else {
    return(p)
  }

so we could simply add an n_column argument (not sure right now how this is named in other functions, but we have this in several plotting functions).

strengejacke avatar Jan 12 '23 06:01 strengejacke

I'll add arguments to control the dimensions

bwiernik avatar Jan 12 '23 13:01 bwiernik

We have an n_column argument now.

strengejacke avatar Jul 21 '24 14:07 strengejacke