getCriminals: Lookup the offenders responsible for a set of solved crimes

Description Usage Arguments Value See Also Examples

Description

Generates the IDs of criminals responsible for a set of solved crimes using the information in offenderTable.

Usage

1
getCriminals(crimeID, offenderTable)

Arguments

crimeID

crimeID(s) of solved crimes.

offenderTable

offender table that indicates the offender(s) responsible for solved crimes. offenderTable must have columns named: offenderID and crimeID.

Value

Vector of offenderIDs responsible for crimes labeled crimeID.

See Also

getCrimeSeries

Examples

1
2
3
4
5
6
7
data(offenders)

 getCriminals("C:1",offenders)

 getCriminals("C:78",offenders)                      # shows co-offenders

 getCriminals(c("C:26","C:78","85","110"),offenders) # all offenders from a crime series

crimelinkage documentation built on May 2, 2019, 1:36 a.m.