Skip to content
Snippets Groups Projects
Commit a7be3a23 authored by Laura A DeCicco's avatar Laura A DeCicco
Browse files

Added call to required packages.

parent 72d73119
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,9 @@
#' dataInput <- data.frame(dateTime, value, code, stringsAsFactors=FALSE)
#' Daily <- populateDaily(dataInput, 2, interactive=FALSE)
populateDaily <- function(rawData,qConvert,interactive=TRUE){ # rawData is a dataframe with at least dateTime, value, code
require(zoo)
localDaily <- as.data.frame(matrix(ncol=2,nrow=length(rawData$value)))
colnames(localDaily) <- c('Date','Q')
localDaily$Date <- rawData$dateTime
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment