Tidies a dataframe
object which has date columns
entered via a free-text box (possibly by different users) and are therefore
in a non-standardized format. Supports numerous separators including /,-, or
space. Supports all-numeric, abbreviation, or long-hand month notation. Where
day of the month has not been supplied, the first day of the month is
imputed. Either DMY or YMD is assumed by default. However, the US system of
MDY is supported via the format
argument.
Usage
fix_date_df(
df,
col.names,
day.impute = 1,
month.impute = 7,
id = NULL,
format = "dmy",
excel = FALSE,
roman.numeral = FALSE
)
Arguments
- df
A
dataframe
ortibble
object with messy date column(s)- col.names
Character vector of names of columns of messy date data
- day.impute
Integer. Day of the month to be imputed if not available. defaults to 1. Maximum value of 31. If day.impute is greater than the number of days for a given month, then the last day of that month will be imputed. If
day.impute = NA
, thenNA
will be imputed for the date instead and a warning will be raised. Ifday.impute = NULL
then instead of imputing the day of the month, the function will fail.- month.impute
Integer. Month to be be imputed if not available. Defaults to 7 (July). If
month.impute = NA
thenNA
will be imputed for the date instead and a warning will be raised. Ifmonth.impute = NULL
then instead of imputing the month, the function will fail.- id
Name of column containing row IDs. By default, the first column is assumed.
- format
Character. The format which a date is mostly likely to be given in. Either
"dmy"
(default) or"mdy"
. If year appears to have been given first, then YMD is assumed for the subject (format argument is not used for these observations)- excel
Logical. If a date is given as only numbers (no separators), and is more than four digits, should the date be assumed to be from Excel which counts the number of days from 1900-01-01? In most programming languages (including R), days are instead calculated from 1970-01-01 and this is the default for this function (
excel = FALSE
)- roman.numeral
Logical. If TRUE, months detected to have been given as Roman numerals will be converted. Months are given in Roman numerals in some database systems and biological records. Defaults to FALSE as this may occasionally interfere with months in other formats.
Value
A dataframe
or tibble
object. Dependent on the type of
df
. Selected columns are of type Date
with the following
format yyyy-mm-dd
See also
fix_date_char
which is similar to fix_date_df()
except can only be applied to character vectors.
Examples
data(exampledates)
fixed.df <- fix_date_df(exampledates, c("some.dates", "some.more.dates"))
fixed.df
#> id some.dates some.more.dates
#> 1 1 1992-05-02 2015-07-01
#> 2 2 2020-04-01 2000-05-02
#> 3 3 1996-05-01 1990-05-01
#> 4 4 2020-05-01 2012-08-01
#> 5 5 1996-04-02 2020-01-01
#> 6 6 2013-03-03 1977-07-22
#> 7 7 2014-09-07 2007-11-04