This function simulates Weight objects.
Arguments
- dataset
Dataset object.
- n
integer
number of weights to simulate.- continuous
logical
should the data be continuous? Defaults toTRUE
.
Value
A list
of simulated Weight objects.
Examples
# find data file paths
f1 <- system.file(
"extdata", "projects", "sim_raster", "sim_raster_spatial.tif",
package = "wheretowork"
)
f2 <- system.file(
"extdata", "projects", "sim_raster", "sim_raster_attribute.csv.gz",
package = "wheretowork"
)
f3 <- system.file(
"extdata", "projects", "sim_raster", "sim_raster_boundary.csv.gz",
package = "wheretowork"
)
# create new dataset
d <- new_dataset(f1, f2, f3)
# simulate data
x <- simulate_weights(dataset = d, n = 2)
# print results
print(x)
#> [[1]]
#> Weight
#> id: 489e956e-e46a-41f7-93b9-a4293927ea20
#> name: Transportation network
#> variable: .../sim_raster_spatial.tif#Transportation_network [total: 151.94 ha]
#> pane: 98aae481-5fac-420e-a1e0-b0268b687316-Transportation_network
#> current: 0.55
#> visible: TRUE
#> invisible: NA
#> loaded: TRUE
#> hidden: FALSE
#> downloadable: TRUE
#> status: TRUE
#> factor: 0
#>
#> [[2]]
#> Weight
#> id: b0526c43-deb3-46e4-81d9-5d4e39734ceb
#> name: Habitat intactness index
#> variable: .../sim_raster_spatial.tif#Habitat_intactness_index [total: 106.76 ha]
#> pane: c5bc933d-81f0-4e8f-809e-6f42935c371a-Habitat_intactness_index
#> current: 0.34
#> visible: TRUE
#> invisible: NA
#> loaded: TRUE
#> hidden: FALSE
#> downloadable: TRUE
#> status: TRUE
#> factor: 0
#>