summarise_relocated_dist | R Documentation |
This takes data from the function augment_facility_relocated
function of
the same name and then summarises it to find the average and sd of the
distance between the two.
summarise_relocated_dist(augment_facility_relocated)
augment_facility_relocated |
dataframe from function:
|
dataframe
## Not run:
mc_cv_n100_test |>
mutate(
facility_distances = map2(
.x = proposed_facility,
.y = existing_facility,
.f = augment_facility_relocated
),
summary_relocated_dist = map(
.x = facility_distances,
.f = summarise_relocated_dist
)
) |>
# select(facility_distances) |>
select(summary_relocated_dist) |>
.[[1]]
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.