Statistical Analysis in C#

A while back, I used to play a game called Eve Online. It's an interesting game, and I played it a lot. During my time playing Eve, I used to do quite a bit of market trading. In order to really take advantage of the ability to pull out market data from the game, I wrote a small Windows application that let me do statistical analysis on various datasets. At the time, C# was still pretty new and there was no real statistics library. I decided to roll my own.

You can find the actual analyzer library in my github: https://github.com/jimpoulakos/c-sharp-statistics-library.

Since writing this almost a decade ago, I've found that I have need for it once again. I've recently made a number of updates to it in order to make it even better. I expect that I will have to also add more functionality to it for things like linear regression and correlation, but that won't be for at least a little time yet.

Let me know what you think!