step_baro_clark | R Documentation |
Clark 1967 solution for calculating barometric efficiency (Algorithm from Batu 1998, pg 76)
step_baro_clark(
.rec,
water_level,
barometric_pressure,
lag_space = 1L,
inverse = FALSE,
role = "augment",
...
)
.rec |
the R6 recipe object. |
lag_space |
|
inverse |
|
role |
character - the name of the role |
... |
additional arguments |
dep |
|
ind |
|
barometric efficiency using Clark's method
Clark, W.E., 1967. Computing the barometric efficiency of a well. Journal of the Hydraulics Division, 93(4), pp.93-98.
Batu, V., 1998. Aquifer hydraulics: a comprehensive guide to hydrogeologic data analysis. John Wiley & Sons.
Other barometric:
step_baro_harmonic()
,
step_baro_least_squares()
data(kennel_2020)
clarks <- recipe(wl~., kennel_2020) |>
step_baro_clark(wl, baro, lag_space = 1) |> # 1 minutes (every minute differences)
step_baro_clark(wl, baro, lag_space = 60) |> # 60 minutes (hourly differences)
step_baro_clark(wl, baro, lag_space = 1440) |> # 1440 minutes (daily differences)
prep() |>
bake()
clarks$get_step_data("barometric_efficiency")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.