What is a good statistical math package for .Net? [closed]

MathDotNet should have the functions you are looking for, although it may be a bit of overkill depending on how much functionality you need. It offers: Bernoulli Beta Binomial Categorical Cauchy Chi Chi Square Continuous Uniform Conway Maxwell Poisson Dirichlet Discrete Uniform Erlang Exponential etc…. (about 3x more on the list) For a complete list … Read more

Python function to get the t-statistic

Have you tried scipy? You will need to installl the scipy library…more about installing it here: http://www.scipy.org/install.html Once installed, you can replicate the Excel functionality like such: from scipy import stats #Studnt, n=999, p<0.05, 2-tail #equivalent to Excel TINV(0.05,999) print stats.t.ppf(1-0.025, 999) #Studnt, n=999, p<0.05%, Single tail #equivalent to Excel TINV(2*0.05,999) print stats.t.ppf(1-0.05, 999) You … Read more

Using pandas, calculate Cramér’s coefficient matrix

cramers V seems pretty over optimistic in a few tests that I did. Wikipedia recommends a corrected version. import scipy.stats as ss def cramers_corrected_stat(confusion_matrix): “”” calculate Cramers V statistic for categorial-categorial association. uses correction from Bergsma and Wicher, Journal of the Korean Statistical Society 42 (2013): 323-328 “”” chi2 = ss.chi2_contingency(confusion_matrix)[0] n = confusion_matrix.sum() phi2 … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)