Description Usage Arguments Details Value Examples
View source: R/date_to_string.R
Converts strings into dates in Russian language
1 | date_to_string(date, freq = 12, encoding = "UTF-8")
|
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 :) |
Converts strings into dates in Russian language
date in the form of the string
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')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.