Question Statistical Test

yigit_sertac

Member
Joined
Apr 7, 2012
Messages
5
Programming Experience
5-10
Hi,

My question is how to program statistical tests (F-test, T-test...) in our application.
 
Statistics is just maths. VB.NET has standard mathematical operators and some more complex stuff in the Math class. If you need to sum or count items then you can use a loop. From .NET 3.5, you can also use LINQ to more easily sum, count, average, etc.
 
Back
Top