Description Usage Arguments Value Note References Examples
Provides the Regression Based Scenarios (RBS). Uses methods from \insertCiteries2017streamstats to generate RBS.
1 |
data |
A previously created batch_StreamStatsBC object. |
parallel |
|
... |
additional arguments to pass to furrr::future_map(). |
Returns a data.frame with associated regional regression estimates.
The use of parallel
is likely to not return all of the requests.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
# Bring in data
#### use batch_StreamStats object
data <- tibble(Lat = c(48.30602, 48.62952, 48.14946),
Lon = c(-115.54327, -114.75546, -116.05935),
Site = c("Granite Creek", "Louis Creek", "WF Blue Creek"))
data <- data %>%
sf::st_as_sf(coords = c('Lon', 'Lat')) %>%
sf::st_set_crs(4326)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.