Skip to content

Commit

Permalink
shorter line
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Nov 24, 2024
1 parent e64e5ab commit 3a4f29a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion R/data_arrange.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
#'
#' # compare: arrange variables vs. arrange variable within groups
#' set.seed(123)
#' x <- iris[sample(seq_len(nrow(iris)), 10, replace = TRUE), c("Sepal.Width", "Species")]
#' sample_rows <- sample(seq_len(nrow(iris)), 10, replace = TRUE)
#' x <- iris[sample_rows, c("Sepal.Width", "Species")]
#' data_arrange(x, c("Sepal.Width", "Species"))
#' data_arrange(x, "Sepal.Width", by = "Species")
#'
Expand Down
3 changes: 2 additions & 1 deletion man/data_arrange.Rd

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

0 comments on commit 3a4f29a

Please sign in to comment.