This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(lubridate) | |
| lubridate::ceiling_date(input$leaddaterange[1], "month") - 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # identical check - Thanks Akrun | |
| #https://stackoverflow.com/q/26566251/4606130 | |
| #RIGHT | |
| identical(sort(names(data.store)), sort(names(data.input)))) | |
| # TRUE | |
| #WRONG | |
| # I had below which is flummoxed by order |
OlderNewer