Save an Individual Building Block to pkml
Source:R/utilities-mobi-individual.R
saveIndividualToPKML.RdExports an Individual building block to a pkml file that can be loaded by
MoBi.
Arguments
- individualBuildingBlock
A
BuildingBlockobject of typeIndividual, as returned bycreateIndividualBuildingBlock().- filePath
Path where the pkml file will be created. Must end with the
.pkmlextension.
Examples
if (FALSE) { # \dontrun{
individual <- createIndividualBuildingBlock(
species = Species$Human,
population = HumanPopulation$European_ICRP_2002
)
saveIndividualToPKML(individual, "Individual.pkml")
} # }