The “Distributions” datasheet is a SyncroSim Core datasheet rather than a datasheet specific to ST-Sim, so does not appear by default when you run datasheet(myProject)
to get the list of available datasheets. To access the list of core datasheets, you can add the summary argument with value “CORE” when running the datasheet()
function, e.g. datasheet(myProject, summary="CORE")
.
You should see that the Distributions datasheet can be accessed using its internal name “corestime_DistributionType”.
Another way to find all possible values for a datasheet that has project-scoped validation, such as this one, is to use the levels()
function in R. The DistributionTypeID column from the stsim_DistributionValue datasheet is a factor under the hood, so you can see all the values it will accept by calling levels(myDatasheet$DistributionTypeID)
.