| hanaml.TTestInd {hana.ml.r} | R Documentation |
Perform the T-test for the mean difference of two independent samples.
hanaml.TTestInd(conn.context,
data,
cols = NULL,
mu = NULL,
test.type = NULL,
var.equal = NULL,
conf.level = NULL)
conn.context |
|
data |
|
cols |
|
mu |
Defaults to '0'. |
test.type |
Defaults to 'two_sides'. |
var.equal |
Defaults to 'FALSE'. |
conf.level |
Defaults to '0.95'. |
Dataframe
Statistics of the independent sample T-test.
## Not run:
Original data
> data$Collect()
X1 X2
1 1 10
2 2 12
3 4 11
4 7 15
5 NA 10
Performing Independent sample t-test
> output1 <- hanaml.TTestInd(conn, data = data)
> output1$Collect()
STAT_NAME STAT_VALUE
1 t-value -5.01377413
2 degree of freedom 5.64975672
3 p-value 0.00287491
4 _PAL_MEAN_X1_ 3.50000000
5 _PAL_MEAN_X2_ 11.60000000
6 confidence level 0.95000000
7 lowerLimit -12.11327798
8 upperLimit -4.08672202
## End(Not run)