flux_match | R Documentation |
Matching a dataframe of continuously measured gas concentration data with measurement metadata from another dataframe. Measurements are paired with their metadata based on datetime. Extra variables in both dataframes are kept in the output.
flux_match(
raw_conc,
field_record,
f_datetime,
start_col,
end_col,
measurement_length,
fixed_length = deprecated(),
time_diff = 0,
startcrop = 0,
ratio_threshold = deprecated(),
f_conc = deprecated()
)
If both end_col
and measurement_length
are provided, end_col
will be ignored. Measurements either all have the same length (provide
measurement_length
), or the length varies and end_col
has to be provided.
a dataframe with concentration measurements, corresponding datetime,
flux ID (f_fluxid
), measurements start (f_start
) and end (f_end
).
data(co2_df_short, record_short)
flux_match(co2_df_short, record_short, datetime, start,
measurement_length = 180)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.