krige_airnow | R Documentation |
Run ordinary kriging interpolation on the training data at the test locations
using the data set created by split_airnow_data
and the
variograms created by create_airnow_variograms
. This is to
create subset variograms that can be used in developing and validating the
final RF model. To interpolate at all sites, use
krige_airnow_all
.
krige_airnow(an_data, vgms)
an_data |
Named list from |
vgms |
A list of daily variograms from
|
A data frame of the test data with the kriged values of PM25_log from AirNow and/or AIRSIS data.
mon_split <- split_airnow_data(an_ws, test_fraction = 0.3)
an_vg <- create_airnow_variograms(an_ws)
an_ok <- krige_airnow(mon_split, an_vg)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.