This dataset is a synthetic dataset generated to simulate mixture data for testing and validation purposes in the MixMustR
package. It is anchored to empirical values of stable isotopes and fatty acids for a range of plant carbon sources in marine soils stable isotope data (bcs_si
), fatty acid data (bcs_fa
), and synthetic mixture proportions. synthetic_df_convergent
exhibits little difference in the underlying mixing proportions between data streams 1 and 2.
synthetic_df_convergent
A list containing three data frames:
A data frame containing the simulated mixture data for the first stream, including tracer estimates calculated from the stable isotope and fatty acid data.
A data frame containing the simulated synthetic proportions for the second stream, a column for each source.
A data frame containing the synthetic proportions for the first stream, used as input for generating the mixture data. This is only used for testing purposes
The synthetic dataset was generated programmatically using the MixMustR
package. The input data sources are:
Stable isotope data: See bcs_si
documentation.
Fatty acid data: See bcs_fa
documentation.
The dataset was generated using the non-exported make_mixture_data
function, which combines stable isotope data (bcs_si
), fatty acid data (bcs_fa
), and synthetic proportions (stream_1_props
and stream_2_props
) to produce simulated mixture data. The truth_stream
parameter determines which stream's proportions are used as the "true" source contributions.
library(MixMustR)
data(synthetic_df_convergent)
str(synthetic_df_convergent)
#> List of 3
#> $ df_stream_1 :'data.frame': 79 obs. of 9 variables:
#> ..$ group : chr [1:79] "G1" "G1" "G1" "G1" ...
#> ..$ 18:1w9 : num [1:79] 8.27 8.87 7.89 5.89 7.79 ...
#> ..$ 18:2w6 : num [1:79] 19.7 18.1 18.3 20.4 19.3 ...
#> ..$ 18:3w3 : num [1:79] 29.1 26.6 28.1 26.9 28.5 ...
#> ..$ 20:4w6 : num [1:79] 0.902 1.376 1.516 1.448 1.049 ...
#> ..$ 20:5w3 : num [1:79] 0.531 0.912 0.994 0.804 0.66 ...
#> ..$ 24:0 : num [1:79] 2.11 2.19 1.85 2.07 2.25 ...
#> ..$ d(13C/12C): num [1:79] -22 -22.8 -20.8 -18.6 -22.2 ...
#> ..$ d(15N/14N): num [1:79] 2.77 3.17 2.71 2.46 2.87 ...
#> $ df_stream_2 :'data.frame': 79 obs. of 7 variables:
#> ..$ group : chr [1:79] "G1" "G1" "G1" "G1" ...
#> ..$ Macroalgae : num [1:79] 0 0.0708 0.0402 0.0494 0.028 ...
#> ..$ Mangrove : num [1:79] 0.4263 0.2478 0.2504 0.0164 0.233 ...
#> ..$ Saltmarsh : num [1:79] 0.117 0.329 0.196 0.362 0.369 ...
#> ..$ Seagrass : num [1:79] 0.301 0.205 0.29 0.413 0.27 ...
#> ..$ SPOM : num [1:79] 0.0397 0.0692 0.1152 0.0324 0 ...
#> ..$ Terrestrial grass: num [1:79] 0.079 0.0783 0.1081 0 0.077 ...
#> $ stream_1_props:'data.frame': 79 obs. of 7 variables:
#> ..$ group : chr [1:79] "G1" "G1" "G1" "G1" ...
#> ..$ Macroalgae : num [1:79] 0 0.0483 0.051 0.0242 0.0173 ...
#> ..$ Mangrove : num [1:79] 0.3856 0.292 0.2448 0.0183 0.2622 ...
#> ..$ Saltmarsh : num [1:79] 0.183 0.358 0.187 0.42 0.397 ...
#> ..$ Seagrass : num [1:79] 0.347 0.201 0.33 0.456 0.239 ...
#> ..$ SPOM : num [1:79] 0.0177 0.0469 0.063 0.013 0 ...
#> ..$ Terrestrial grass: num [1:79] 0.0508 0.0537 0.1239 0 0.0721 ...