hetu_diagnostic {hetu} | R Documentation |
Diagnostics Tool for Personal Identity Codes
Description
Prints information on the tests that are used to confirm or reject the validity of each personal identity code.
Usage
hetu_diagnostic(pin, extract = NULL)
pin_diagnostic(pin, extract = NULL)
Arguments
pin |
Finnish personal identification number as a character vector, or vector of identification numbers as a character vectors |
extract |
Extract only selected part of the diagnostic information.
Valid values are " |
Value
A data.frame containing diagnostic checks about PINs.
See Also
hetu
for the main function on which
hetu_diagnostic
relies on.
Examples
diagnosis_example <- c("010101-0102", "111111-111Q",
"010101B0101", "320101-0101", "011301-0101",
"010101-01010", "010101-0011")
## Print all diagnostics for various fake personal identity codes
hetu_diagnostic(diagnosis_example)
# Extract century-related checks
hetu_diagnostic(diagnosis_example, extract = "valid.century")
diagnosis_example <- c("010101-0102", "111111-111Q",
"010101B0101", "320101-0101", "011301-0101",
"010101-01010", "010101-0011")
## Print all diagnoses
pin_diagnostic(diagnosis_example)
[Package hetu version 1.0.7 Index]