date_to_string: Converts strings into dates in Russian language

Description Usage Arguments Details Value Examples

View source: R/date_to_string.R

Description

Converts strings into dates in Russian language

Usage

1
date_to_string(date, freq = 12, encoding = "UTF-8")

Arguments

date

date in the following format: "2019-02-23"

freq

equal to 4 for quarters, equal to 12 for months

encoding

encoding, 'UTF-8' by default, try 'windows-1251' on windows :)

Details

Converts strings into dates in Russian language

Value

date in the form of the string

Examples

1
2
3
4
date <- c("2019-02-23")
date_to_string(date, freq = 12)
date <- c("2019-02-23", "2011-01-07")
date_to_string(date, freq = 12, encoding = 'windows-1251')

kassandra-ru/kassandr documentation built on Jan. 1, 2022, 7:39 a.m.