Description Usage Arguments Details Value Author(s) See Also Examples
Print summary of DALY Calculator output per age/sex class.
1 2 3 |
object |
Object of class |
relative |
Show results per 1000 population? See details below |
outcomes |
Show results per outcome? See details below |
digits |
Number of decimals to be printed; defaults to |
... |
Additional arguments to be passed to |
The standard summary
method gives the absolute number of
DALYs, YLDs, YLLs, cases and deaths. By specifying relative = TRUE
,
the number of DALYs, YLDs, YLLs, cases and deaths per 1,000 population will
be shown.
The standard summary
method gives the number of DALYs, YLDs, YLLs,
cases and deaths aggregated over all health outcomes. By specifying
outcomes = TRUE
, the number of DALYs, YLDs, YLLs, cases and deaths
for each outcome will be shown as well.
summary.DALY
returns a list containg the following elements:
total |
Matrix containing mean, median and |
outcomes |
Named list, containing matrices of DALYs, YLDs, YLLs, cases and deaths for each health outcome |
pct |
Vector of contribution of YLDs and YLLs to overall DALYs |
DALYcalculator
(for a brief description of the DALY Calculator)
DALYmanual
(for a more comprehensive overview)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
##= load the NCC example ==================================
setDALYexample(1)
##= perform DALY calculation, store results in 'x' ========
x <- getDALY()
##= view the DALY calculation results =====================
summary(x) # absolute, total ============
summary(x, relative = TRUE) # relative (ie, per 1000) ====
summary(x, outcomes = TRUE) # outcome-wise ===============
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.