Find dependencies
find_dependencies.Rd
Find which other variables each variable is dependent on.
See also
Other build:
as.data.frame.sdbuildR_sim()
,
as.data.frame.sdbuildR_xmile()
,
build()
,
debugger()
,
get_build_code()
,
header()
,
macro()
,
plot.sdbuildR_xmile()
,
print.summary.sdbuildR_xmile()
,
summary.sdbuildR_xmile()
,
xmile()
Examples
sfm <- xmile("SIR")
find_dependencies(sfm)
#> $Susceptible
#> character(0)
#>
#> $Infected
#> character(0)
#>
#> $Recovered
#> character(0)
#>
#> $Total_Population
#> character(0)
#>
#> $Effective_Contact_Rate
#> character(0)
#>
#> $Delay
#> character(0)
#>
#> $Beta
#> [1] "Effective_Contact_Rate" "Total_Population"
#>
#> $Lambda
#> [1] "Beta" "Infected"
#>
#> $Infection_Rate
#> [1] "Susceptible" "Lambda"
#>
#> $Recovery_Rate
#> [1] "Infected" "Delay"
#>