| hanaml.chisquared {hana.ml.r} | R Documentation |
Draw samples from a chisquared distribution.
hanaml.chisquared(conn.context, m = NULL, d = NULL,
seed = NULL, thread.ratio = NULL)
conn.context |
|
m |
|
d |
|
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.
> chisquared <- hanaml.chisquared(conn, d = 4,
m = 20, seed = 1,
> chisquared$collect()
ID GENERATED_NUMBER
0 0 0.040571
1 1 2.680756
2 2 1.119563
3 3 1.174072
4 4 0.872421
5 5 0.327169
6 6 1.113164
7 7 1.549585
8 8 0.013953
9 9 0.011735
## End(Not run)