rbind.WaterLevelDataFrame {hyd1d}R Documentation

Combine WaterLevelDataFrames by Rows

Description

Take WaterLevelDataFrames that were produced for the same river and time and combine them by rows.

Usage

## S3 method for class 'WaterLevelDataFrame'
rbind(...)

Arguments

...

objects of class WaterLevelDataFrame.

Value

All supplied objects of class WaterLevelDataFrame will be combined to one object of class WaterLevelDataFrame which is returned.

See Also

rbind

Examples

wldf1 <- WaterLevelDataFrame(river   = "Elbe",
                             time    = as.POSIXct("2016-12-21"),
                             station = seq(257, 262, 0.1))
wldf2 <- WaterLevelDataFrame(river = "Elbe",
                             time = as.POSIXct("2016-12-21"),
                             station = seq(262, 270, 0.1))
wldf <- rbind(wldf1, wldf2)


[Package hyd1d version 0.5.1 Index]