combineSummaries {dvir}R Documentation

Combine summary tables

Description

Combines summary tables from various functions into a final result table.

Usage

combineSummaries(dfs, orderBy = NULL, dvi = NULL)

Arguments

dfs

A list of data frames.

orderBy

A character with column names to sort by.

dvi

A dviData object used for sorting. Note that if given, this must contain all victims and families.

Value

A data frame.

Examples

u = findUndisputed(planecrash)
a = amDrivenDVI(u$dviReduced, threshold2 = 500)

u$summary
a$summary

combineSummaries(list(u$summary, a$summary),
                 orderBy = c("Family", "Missing"),
                 dvi = planecrash)

[Package dvir version 3.2.1 Index]