| hanaml.lognormal {hana.ml.r} | R Documentation |
Draw samples from a lognormal distribution.
hanaml.lognormal(conn.context,
m = NULL,
location = NULL,
scale = NULL,
seed = NULL,
thread.ratio = NULL)
conn.context |
|
m |
|
location |
|
scale |
|
seed |
|
thread.ratio |
|
DataFrame containing the generated random samples,
random samples:
- ID, type INTEGER, ID column.
- GENERATED_NUMBER, type DOUBLE, sample value.
## Not run:
Draw samples from a lognormal distribution.
lognormal <- hanaml.lognormal(conn, location = 0.6, scale = 1, m = 20, seed = 1,
thread.ratio = 0)
> exponential$collect()
ID GENERATED_NUMBER
0 0 0.461803
1 1 0.548432
2 2 0.625874
3 3 3.038529
4 4 3.582703
5 5 1.867543
6 6 1.853857
7 7 0.378827
8 8 1.104031
9 9 0.840102
## End(Not run)