| hanaml.fisher.f {hana.ml.r} | R Documentation |
Draw samples from an f distribution.
hanaml.fisher.f(conn.context, m = NULL,
d1 = NULL, d2 = NULL,
seed = NULL, thread.ratio = NULL)
conn.context |
|
m |
|
d1 |
|
d2 |
|
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.
fisher.f <- hanaml.fisher.f(conn, m = 20,
d1 = 2, d2 = 3,
seed = 1, thread.ratio = 0)
> fisher.f$collect()
ID GENERATED_NUMBER
0 0 6.494985
1 1 0.054830
2 2 0.752216
3 3 4.946226
4 4 0.167151
5 5 351.789925
6 6 0.810973
7 7 0.362714
8 8 0.019763
9 9 10.553533
## End(Not run)