Skip to content

Commit

Permalink
fixed data.table bug that resulted in wrong location column output wh…
Browse files Browse the repository at this point in the history
…en summ_type = animal
  • Loading branch information
Todd Hayden committed Jan 5, 2024
1 parent db9d69a commit 4bccff7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/summ-summarize_detections.r
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@
#' @examples
#'
#' #get path to example detection file
#' det_file <- system.file("extdata", "walleye_detections.csv",
#' package = "glatos")
#' det <- read_glatos_detections(det_file)
#' det_file <- system.file("extdata", "walleye_detections.csv",
#' package = "glatos")
#' det <- read_glatos_detections(det_file)
#'
#' #Basic summaries
#'
#' # by animal
#' ds <- summarize_detections(det)
#' ds <- summarize_detections(det)
#'
#' # by location
#' ds <- summarize_detections(det, summ_type = "location")
Expand Down

1 comment on commit 4bccff7

@chrisholbrook
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haydento Do you see any actual changes here? It's flagged 4 lines changed (4 add, 4 deleted) but the look the same to me.

Please sign in to comment.