hanaml.fisher.f.RdDraw samples from an f distribution.
hanaml.fisher.f( connection.context, m = NULL, d1 = NULL, d2 = NULL, seed = NULL, thread.ratio = NULL )
| connection.context |
|
|---|---|
| m |
|
| d1 |
|
| d2 |
|
| seed |
Note that when multithreading is enabled, the random number sequences
of different runs might be different even if the |
| thread.ratio |
|
DataFrame containing the generated random samples, structured as follows:
ID: type INTEGER, ID column
GENERATED_NUMBER: type DOUBLE, sample values
Draw samples from a fisher.f distribution:
> fisher.f <- hanaml.fisher.f(connection.context = conn,
m = 20,
d1 = 2,
d2 = 3,
seed = 1,
thread.ratio = 0)
Output:
> fisher.f$collect()
ID GENERATED_NUMBER
1 0 6.494985
2 1 0.054830
3 2 0.752216
4 3 4.946226
5 4 0.167151
6 5 351.789925
7 6 0.810973
8 7 0.362714
9 8 0.019763
10 9 10.553533