I have an ASP.NET C# web application that required some statistical functions. So far I've hand written them myself however as the statistical side expands, I'd rather reuse an open sourced or free statistical engine as a library.
I looked at R and it's DCOM interface (http://sunsite.univie.ac.at/rcom/). Although R is excellent, that DCOM interface is a 3rd party and has restrictions on commercial usage (I might have website ads). Not to mention the DCOM interface is a bit slow. So that won't work for me.
Does anyone have other techniques or suggestions on what I'm trying?
Thanks!