Answers for "code r for t test for a column in a dataset"

R
0

R new column t test p-value

data$PValue = apply(data, 1, function(x) t.test(x[1:3], x[4:6])$p.value)
Posted by: Guest on July-08-2020

Code answers related to "code r for t test for a column in a dataset"

Browse Popular Code Answers by Language