cs_parse_date: Separate Date Occur

View source: R/dates.R

cs_parse_dateR Documentation

Separate Date Occur

Description

Creates two columns. One contains month, day, and year and the other contains hour, and minute.

Usage

cs_parse_date(.data, var, dateVar, timeVar, tz = NULL, keepDateTime = TRUE)

Arguments

.data

A tibble or data frame

var

A column containing month, day, year, and time separated by /

dateVar

Name of new column to contain date data

timeVar

Name of new column to contain time data

tz

String name of timezone, defaults to system's timezone

keepDateTime

A logical scalar. Keep an intermediate dateTime variable if TRUE.

Value

A copy of the object with two columns appended. One is the time data and the other is the date data.

Examples

# load example data
testData <- january2018

# parse date occured
testData <- cs_parse_date(testData, var = date_occur, dateVar = dateOcc, timeVar = timeOcc)


chris-prener/compStatR documentation built on Jan. 25, 2024, 10:03 p.m.