Skip to content

Commit

Permalink
reduce length of characters in line
Browse files Browse the repository at this point in the history
  • Loading branch information
HannaMeyer committed Mar 23, 2024
1 parent 43c45e5 commit c6c18f2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
3 changes: 2 additions & 1 deletion R/aoa.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
#'
#' # prepare sample data:
#' data(cookfarm)
#' dat <- aggregate(cookfarm[,c("VW","Easting","Northing")],by=list(as.character(cookfarm$SOURCEID)),mean)
#' dat <- aggregate(cookfarm[,c("VW","Easting","Northing")],
#' by=list(as.character(cookfarm$SOURCEID)),mean)
#' pts <- st_as_sf(dat,coords=c("Easting","Northing"))
#' pts$ID <- 1:nrow(pts)
#' set.seed(100)
Expand Down
3 changes: 2 additions & 1 deletion R/calibrate_aoa.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
#'
#' #' # prepare sample data:
#' data(cookfarm)
#' dat <- aggregate(cookfarm[,c("VW","Easting","Northing")],by=list(as.character(cookfarm$SOURCEID)),mean)
#' dat <- aggregate(cookfarm[,c("VW","Easting","Northing")],
#' by=list(as.character(cookfarm$SOURCEID)),mean)
#' pts <- st_as_sf(dat,coords=c("Easting","Northing"))
#' pts$ID <- 1:nrow(pts)
#' studyArea <- rast(system.file("extdata","predictors_2012-03-25.tif",package="CAST"))[[1:8]]
Expand Down
3 changes: 2 additions & 1 deletion R/normalize_DI.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
#' # prepare sample data:
#' dat <- readRDS(system.file("extdata","Cookfarm.RDS",package="CAST"))
#' data(cookfarm)
#' dat <- aggregate(cookfarm[,c("VW","Easting","Northing")],by=list(as.character(cookfarm$SOURCEID)),mean)
#' dat <- aggregate(cookfarm[,c("VW","Easting","Northing")],
#' by=list(as.character(cookfarm$SOURCEID)),mean)
#' pts <- st_as_sf(dat,coords=c("Easting","Northing"))
#' pts$ID <- 1:nrow(pts)
#' set.seed(100)
Expand Down
3 changes: 2 additions & 1 deletion man/aoa.Rd

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

3 changes: 2 additions & 1 deletion man/calibrate_aoa.Rd

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

4 changes: 2 additions & 2 deletions man/cookfarm.Rd

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

3 changes: 2 additions & 1 deletion man/normalize_DI.Rd

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

0 comments on commit c6c18f2

Please sign in to comment.