Convert to a wide survey by species dataframe
wt_make_wide.Rd
This function converts a long-formatted report into a wide survey by species dataframe of abundance values.
Arguments
- data
WildTrax main report or tag report from the
wt_download_report()
function.- sound
Character; vocalization type(s) to retain ("all", "Song", "Call", "Non-vocal"). Can be used to remove certain types of detections. Defaults to "all" (i.e., no filtering).
Examples
if (FALSE) { # \dontrun{
dat.tidy <- wt_tidy_species(dat)
dat.tmtt <- wt_replace_tmtt(dat.tidy)
dat.wide <- wt_make_wide(dat.tmtt, sound="all")
} # }