Generator method for creating a single-column Spark dataframes comprised of i.i.d. samples from a log normal distribution.
sdf_rlnorm(
sc,
n,
meanlog = 0,
sdlog = 1,
num_partitions = NULL,
seed = NULL,
output_col = "x"
)
A Spark connection.
Sample Size (default: 1000).
The mean of the normally distributed natural logarithm of this distribution.
The Standard deviation of the normally distributed natural logarithm of this distribution.
Number of partitions in the resulting Spark dataframe (default: default parallelism of the Spark cluster).
Random seed (default: a random long integer).
Name of the output column containing sample values (default: "x").
Other Spark statistical routines:
sdf_rbeta()
,
sdf_rbinom()
,
sdf_rcauchy()
,
sdf_rchisq()
,
sdf_rexp()
,
sdf_rgamma()
,
sdf_rgeom()
,
sdf_rhyper()
,
sdf_rnorm()
,
sdf_rpois()
,
sdf_rt()
,
sdf_runif()
,
sdf_rweibull()