Compare ejamit() full results for more than one radius Helper used by ejamit_compare_distances() to run ejamit() once per radius, get FULL ejamit() output list per radius
Source:R/ejamit_compare_distances.R
ejamit_compare_distances_fulloutput.Rd
Compare ejamit() full results for more than one radius Helper used by ejamit_compare_distances() to run ejamit() once per radius, get FULL ejamit() output list per radius
Usage
ejamit_compare_distances_fulloutput(
sitepoints,
radii = c(1, 2, 3),
donuts_not_cumulative = FALSE,
quiet = TRUE,
silentinteractive = TRUE,
...
)
Value
list you can think of as "out_bydistance" where each element is the full output of ejamit() for 1 radius
Details
You typically only need ejamit_compare_distances()
,
which gives you just the summary overall at each distance,
but if you want to retain the full outputs of ejamit() at each distance,
such as results for every site at every distances,
you can use ejamit_compare_distances_fulloutput()
and then to extract a slice of results,
use helper functions like
Examples
radii <- c(1,2,3,6,10)
pts <- testpoints_10
if (FALSE) { # \dontrun{
x <- ejamit_compare_distances_fulloutput(pts, radii = radii)
} # }