问题
Does anybody know of any good and free statistics libraries for .Net?
I am working on calculating T-Tests, which I have written a formula to calculate, although now I need a formula for the p-value, which is a little more complex, and not being a statistician, has me a little lost.
回答1:
I suggest you look at the Math.NET project. It supports various distributions, but I don't know if it has t-tests and p-values.
回答2:
Meta.Numerics has a lot of statistical functionality. It supports t-tests (one sample, two sample, paired), as well as Mann-Whitney and sign tests (non-parameteric alternatives to t-tests), and ANOVA (a t-test extended to more than two samples) and Kruskal-Wallis (a non-parameteric alternative to the ANOVA). And yes, it reports back a P-value with all tests.
回答3:
Since version 4 the .NET libraries include the StatisticFormula
class which provides T-Tests. This class is available in the namespaces System.Web.UI.DataVisualization.Charting
and System.Windows.Forms.DataVisualization.Charting
Link to documentation and usage:
TTestResult result = Chart1.DataManipulator.Statistics.TTestUnEqualVariances(0.2, 0.05, "Series1", "Series2");
回答4:
NAverage is one such dll i have used in the past.
You can check it ...
http://www.mycsharp.de/wbb2/thread.php?threadid=85839
or from here ..
http://naverage.codeplex.com/
Let me know if that helps
回答5:
you might be interested in infer.net http://www.justinlee.sg/2009/12/09/infer-net-now-with-f-support/
"Infer.NET is a framework for running Bayesian inference in graphical models. You can use it to solve many different kinds of machine learning problems, from standard problems like classification or clustering through to customised solutions to domain-specific problems. Infer.NET has been used in a wide variety of domains including information retrieval, bioinformatics, epidemiology, vision, and many others."
回答6:
Use the accord framework:
Accord Framework
来源:https://stackoverflow.com/questions/5246348/is-there-a-net-statistics-library-with-t-tests-and-p-values