prepare_Aliquot {sandbox} | R Documentation |
Prepare Aliquots from Sample Dataset
Description
The function consecutively fills aliquots (i.e., subsamples distributed on round carrier discs) with grains from an input sample. Remaining grains that are not enough to fill a further aliquot are discarded.
Usage
prepare_Aliquot(sample, diameter, density = 0.65)
Arguments
sample |
data.frame, sample object to be distributed to aliquots. |
diameter |
numeric value, diameter of the aliquot sample carriers in mm. |
density |
numeric value, packing density of the grains on
the sample carrier. Default is |
Value
list of data.frame objects with grains organised as aliquots, i.e. list elements.
Author(s)
Michael Dietze, GFZ Potsdam (Germany), Sebastian Kreutzer, Geography & Earth Sciences, Aberystwyth University (United Kingdom)
Examples
## load example data set
data(sample, envir = environment())
A <- prepare_Aliquot(
sample = sample,
diameter = 0.1)
B <- prepare_Aliquot(
sample = sample,
diameter = 1,
density = 0.6)
[Package sandbox version 0.2.1 Index]