Ask Your Question

frank f.'s profile - activity

2023-07-03 22:32:17 +0200 received badge  Notable Question (source)
2023-07-03 22:32:17 +0200 received badge  Popular Question (source)
2017-09-02 07:49:38 +0200 commented answer use t.test from r in sage

thanks a lot! also use ' " instead of just ' or " for strings, i.e:

r.t_test(A, B, conf_level = 0.975, alternative = '"less"')

2017-08-31 15:48:55 +0200 received badge  Scholar (source)
2017-08-30 18:42:11 +0200 received badge  Student (source)
2017-08-30 18:42:02 +0200 asked a question use t.test from r in sage

hello, I have loaded two large numeric lists from a .sobj-file and stored them in two variables A and B. now I want to use the r.t.test(A, B) function from r in the interactive shell, but that doesn't work. is there a way I can load A and B into the r.console() and use them there, or can I use r.t.test() in sage somehow? I don't want to use any other alternative t-tests from sage, scipy, statsmodels, etc. It has to be the one from r! Thank you!