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

Added suppressWarnings, because the warning is expected and OK.

parent e83d80b4
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ processQWData <- function(data){
}
colnames(test)<- c("USGSPCode","dateTime","qualifier","value")
data <- reshape(test, idvar="dateTime", timevar = "USGSPCode", direction="wide")
data <- suppressWarnings(reshape(test, idvar="dateTime", timevar = "USGSPCode", direction="wide"))
data$dateTime <- format(data$dateTime, "%Y-%m-%d")
data$dateTime <- as.Date(data$dateTime)
return(data)
......
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