Version: 0.1.0
Author: Frederik Vanrenterghem
Maintainer: Frederik Vanrenterghem <frederik@vanrenterghem.biz>
-Description: Return the number of operating days in a given month. Currently returns remaining days in current month.
-Depends: RCurl
+Description: Return the number of operating days in a given month. Currently
+ returns remaining days in current month.
+Depends:
+ RCurl
License: GPL-3
LazyData: TRUE
+RoxygenNote: 5.0.1
-exportPattern("^[[:alpha:]]+")
+# Generated by roxygen2: do not edit by hand
+
-# getRemainingOpDays
+#' getRemainingOpDays
# This is a function that returns the remaining operating days in a month
# It takes as arguments the country, state, date for which the request is made.
# It returns a number
# It currently only supports AU (Australia)
+#' @param country A country - use ISO format (currently only takes AU)
+#' @param state A state - use 2 or 3 letter abbreviation, in capitals
+#' @param date A date from which the remaining operating days in the month will be counted
+#' @return The number of remaining operating days in \code{state}, \code{country} as of \code{date}
+#' @examples getRemainingOpDays("AU","WA","2016-05-10")
getRemainingOpDays <- function(country,state,date) {
cutoff.time = "15:00"
--- /dev/null
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/getRemainingOpDays.R
+\name{getRemainingOpDays}
+\alias{getRemainingOpDays}
+\title{getRemainingOpDays}
+\usage{
+getRemainingOpDays(country, state, date)
+}
+\arguments{
+\item{country}{A country - use ISO format (currently only takes AU)}
+
+\item{state}{A state - use 2 or 3 letter abbreviation, in capitals}
+
+\item{date}{A date from which the remaining operating days in the month will be counted}
+}
+\value{
+The number of remaining operating days in \code{state}, \code{country} as of \code{date}
+}
+\description{
+getRemainingOpDays
+}
+\examples{
+getRemainingOpDays("AU","WA","2016-05-10")
+}
+
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
+PackageRoxygenize: rd,collate,namespace