-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
25 lines (18 loc) · 850 Bytes
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
title: "rdateutils"
author: "Sharon Machlis"
output:
md_document:
variant: markdown_github
---
# rdateutils
This package is a collection of simple R date utilities to generate specific dates relative to the current date, in both date object and character string formats.
Available functions include yesterday.date(), yesterday.str(), first.of.last.month.date(), first.of.last.month.str(), end.of.last.month.date(), end.of.last.month.str() and so on. Run help(package="rdateutils") for a full list.
To install, you need to have the devtools package on your system (if you don't have it, install that with install.packages("devtools") ) and then run
```{r, eval = FALSE}
devtools::install_github("smach/rdateutils")
```
To see a list of function and links to their help files, run
```{r, eval = FALSE}
help(package = "rdateutils")
```