Python Forum
Is there a python function to get t-statistic? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Is there a python function to get t-statistic? (/thread-23243.html)



Is there a python function to get t-statistic? - SamLearnsPython - Dec-18-2019

Hi. I'm not very experienced with python but would like to know if this is possible. Is there a premade python function to get the t-statistic? I'm would want a t table like this albeit the difference being I want to use to calculate any probability I wish to and not be restricted only to the ones present in the table.


RE: Is there a python function to get t-statistic? - buran - Dec-18-2019

Check scipy

https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.t.html#scipy.stats.t


RE: Is there a python function to get t-statistic? - SamLearnsPython - Dec-18-2019

Thank you. That is very helpful. I will try working with and will post if I run into any problems