View source: R/WaterLevelDataFrame-methods.R
rbind.WaterLevelDataFrame | R Documentation |
Take WaterLevelDataFrames that were produced for
the same river
and time
and combine them by r
ows.
## S3 method for class 'WaterLevelDataFrame'
rbind(...)
... |
objects of class WaterLevelDataFrame. |
All supplied objects of class WaterLevelDataFrame will be combined to one object of class WaterLevelDataFrame which is returned.
rbind
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.