| hanaml.gumbel {hana.ml.r} | R Documentation |
Draw samples from a Gumbel distribution, which is one of a class of Generalized Extreme Value (GEV) distributions used in modeling extreme value problems.
hanaml.gumbel(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 beta distribution. > gumbel$collect() ID GENERATED_NUMBER 0 0 1.544054 1 1 0.339531 2 2 0.394224 3 3 3.161123 4 4 1.208050 5 5 -0.276447 6 6 1.694589 7 7 1.406419 8 8 -0.443717 9 9 0.156404 ## End(Not run)