Synthesise data from marginal distributions
synthesise_data.Rd
Allows the synthesis of data from marginal distributions obtained from a Trusted Research Environment (TRE)
Usage
synthesise_data(marginals, correlation_matrix = NULL, ...)
synthesize_data(marginals, correlation_matrix = NULL, ...)
Arguments
- marginals
an object of class RESIDE
- correlation_matrix
Correlation Matrix see
export_empty_cor_matrix
andimport_cor_matrix
, Default: NULL- ...
Additional parameters currently none are used.
Details
This function will synthesise a dataset from marginals imported
using import_marginal_distributions
.
By default the dataset will not contain correlations,
however user specified correlations can be added using
the correlation_matrix
parameter,
see export_empty_cor_matrix
and
import_cor_matrix
for more details.
Examples
if (FALSE) { # \dontrun{
marginals <- import_marginal_distributions()
df <- synthesise_data(marginals)
} # }