| hanaml.student.t {hana.ml.r} | R Documentation |
Draw samples from a Student's t-distribution.
hanaml.student.t(conn.context, m = NULL, nu = NULL,
seed = NULL, thread.ratio = NULL)
conn.context |
|
m |
|
nu |
|
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 student.t distribution.
> student.t <- hanaml.student.t(conn, m = 20,
nu = 3, seed = 1,
> student.t$collect()
ID GENERATED_NUMBER
0 0 -0.433802
1 1 1.972038
2 2 -1.097313
3 3 -0.225812
4 4 -0.452342
5 5 2.242921
6 6 0.377288
7 7 0.322347
8 8 1.104877
9 9 -0.017830
## End(Not run)