Calculates goodness-of-fit statistics beteween cross section geometry and regional hydraulic geometry dimensions.
build_gof_stats(xs_dims, streams, regions, bankfull_elevations)
data frame; a data frame of cross section dimensions
character vector; The stream names in the study area.
character; The regions that a dimension will be calculated for. See the regional_curves$region field for a complete list.
numeric vector; The bankfull elevations (units: detrended feet) that are used to calculate hydraulic geometry.
A data frame of goodness of fit scores of the relationship between cross section geometry and regional hydraulic geometry dimensions.
character; The name of the stream.
character; The name of the region.
numeric; The detrended bankfull elevation (in feet) that is used to calculate hydraulic geometry.
numeric; The root-mean-square-error between the regional curve derived area and the cross section derived area.
numeric; The root-mean-square-error between the regional curve derived width and the cross section derived width.
numeric; The root-mean-square-error between the regional curve derived depth and the cross section derived depth.
numeric; The mean absolute error between the regional curve derived area and the cross section derived area.
numeric; The mean absolute error between the regional curve derived width and the cross section derived width.
numeric; The mean absolute error between the regional curve derived depth and the cross section derived depth.
This function uses the function Metrics::rmse
to calculate
the root mean square error statistic and the function Metrics::mae
to calculate the mean absolute error statistic.
Add a description of how the goodness of fit calculation is made.
The xs_dims
parameter is created using the
xs_dimensions
function.
# Extract attribute data from fluvgeo::sin_xs_points sf object
sin_xs_points_df <- fluvgeo::sin_riffle_channel_points_sf
# Set variable values
streams <- c("Sinsinawa")
regions <- c("Eastern United States", "IN Central Till Plain")
bankfull_elevations = seq(103, 104, 0.1)
# Call the xs_dimensions function
sin <- xs_dimensions(xs_points = sin_xs_points_df,
streams = streams,
regions = regions,
bankfull_elevations = bankfull_elevations)
# Call the build_gof_stats function
sin_gof <- build_gof_stats(xs_dims = sin,
streams = streams,
regions = regions,
bankfull_elevations = bankfull_elevations)