his2arr: convert Delwaq his file into an R array object,

Description Usage Arguments Value Examples

Description

convert Delwaq his file into an R array object,

Usage

1
his2arr(filename, timestamp = T, begintime = "1900-01-01 00:00:00")

Arguments

filename

the .his file to be converted.

Value

An R array object of the Delwaq .his file named filename.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
library(DelwaqR)
arr <- his2arr(filename = "extdata/NZBLOOM.his", timestamp = F, begintime = "2003-01-01 00:00:00")
dimnames(arr)
submod <- c("Chlfa", "OXY")
locmod <- c("NZR6NW020", "NZR9TS010")
df <- arr2df(arr, locmod=locmod, submod=submod)
df$value[df$variable == "fResptot"] <- -df$value[df$variable == "fResptot"]
library(ggplot2)
plot <- ggplot(df, aes(time, value))
plot +
  geom_line(aes(color = variable), size = 1) +
  geom_point(aes(color = variable), fill = "white",  shape = 21, size = 4) +
  facet_grid((. ~ location))

wstolte/DelwaqR documentation built on June 20, 2021, 12:03 p.m.