
Combine WaterLevelDataFrames by Rows
Source:R/WaterLevelDataFrame-methods.R
rbind.WaterLevelDataFrame.RdTake 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.
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)