Skip to content

Commit

Permalink
fsfsfsfs
Browse files Browse the repository at this point in the history
  • Loading branch information
svmiller committed Jan 30, 2025
1 parent 657e60f commit 2d18a8f
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 29 deletions.
11 changes: 6 additions & 5 deletions R/linloess_plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#' @param suppress_warning logical, defaults to \code{TRUE}. If \code{TRUE},
#' the plot suppresses assorted warnings from the LOESS smoother that would
#' otherwise be cautioning you about things your eyes could otherwise see.
#' @param ... optional parameters, passed to the scatterplot
#' @param ... optional parameters, passed to the scatterplot in \code{linloess_plot()}
#' (\code{geom_point()}) component of this function. Useful if you want to make
#' the smoothers more legible against the points.
#'
Expand Down Expand Up @@ -114,11 +114,12 @@ linloess_plot <- function(mod, resid = TRUE, smoother = "loess",

#' Print method for class 'linloess'
#'
#' @param llplot a ggplot object with this special 'linloess' class
#' @param x a ggplot object with this special 'linloess' class
#' @param ... Additional arguments in the context of the print function (not used)
#' @keywords internal
#' @rdname linloess_plot
#' @export
print.linloess <- function(llplot) {
class(llplot) <- setdiff(class(llplot), "linloess")
suppressWarnings(print(llplot))
print.linloess <- function(x, ...) {
class(x) <- setdiff(class(x), "linloess")
suppressWarnings(print(x, ...))
}
2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pandoc: 3.1.1
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
last_built: 2025-01-30T10:31Z
last_built: 2025-01-30T10:49Z
urls:
reference: http://svmiller.com/reference
article: http://svmiller.com/articles
2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions docs/reference/linloess_plot.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/search.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions man/linloess_plot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d18a8f

Please sign in to comment.