check_model(model) is no longer working#905
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the package version to 0.16.0.3 and adds a detailed troubleshooting section to the check_model() documentation regarding plot rendering issues. Feedback includes updating the NEWS.md header to reflect the specific version number instead of using (devel), correcting a typo in the news file, and ensuring that documentation adheres to the style guide by using the :: operator for external functions and the **package** format for package names.
| #' you are using `{ggplot2}`, load the library and adjust your theme before | ||
| #' plotting. For example: `theme_set(theme_classic(base_size = 6))`. |
There was a problem hiding this comment.
To adhere to the repository style guide (line 67) and maintain consistency with the rest of the documentation, please use the :: operator for package functions and the **package** format for package names.
#' you are using **ggplot2**, load the library and adjust your theme before
#' plotting. For example: `ggplot2::theme_set(ggplot2::theme_classic(base_size = 6))`. References
- Always use the
::operator to call functions from other packages. (link)
| #' plotting. For example: `theme_set(theme_classic(base_size = 6))`. | ||
| #' - *Update relevant packages:* Finally, ensure your graphics and layout packages | ||
| #' are up to date. You can update your packages (paying special attention to | ||
| #' `{ggplot2}` and `{patchwork}`) by running `update.packages(ask = FALSE)`. |
There was a problem hiding this comment.
Use the :: operator for update.packages (from the utils package) and the **package** format for package names, as per the style guide (line 67) and project conventions.
#' **ggplot2** and **patchwork**) by running `utils::update.packages(ask = FALSE)`. References
- Always use the
::operator to call functions from other packages. (link)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Fixes #904