<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Java package for statistical analysis?</title>
	<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis/</link>
	<description>Comments on Ask MetaFilter post Java package for statistical analysis?</description>
	<pubDate>Mon, 23 Jan 2006 19:46:56 -0800</pubDate>
	<lastBuildDate>Mon, 23 Jan 2006 19:46:56 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Java package for statistical analysis?</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis</link>	
		<description>Know of a good, free Java package for basic statistical analysis? &lt;br /&gt;&lt;br /&gt; I&apos;m working on a product that needs to do some basic statistical analysis of data.  At the moment the specific task at hand is linear regression, but I wouldn&apos;t mind having one place to go for simple standard deviation and stuff like that, too.  I could spend a bunch of time writing stuff myself, but I figure, why reinvent the wheel?&lt;br&gt;
&lt;br&gt;
The product I work on is free and open source, and that&apos;s what I&apos;m looking for in a stats API, too.  Or at least free!  Also I want something as targeted as possible -- I don&apos;t want to pull in gigabytes of code just so I can use a couple classes.  &lt;br&gt;
&lt;br&gt;
I&apos;ve been poking around looking for stuff, but surprisingly I&apos;ve found little so far (&lt;a href=&quot;http://www.webcabcomponents.com/Java/api/pss/index.shtml&quot;&gt;this&lt;/a&gt;, for instance, is not free).  Can anyone help me out?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.31355</guid>
		<pubDate>Mon, 23 Jan 2006 16:22:21 -0800</pubDate>
		<dc:creator>gurple</dc:creator>
		
			<category>java</category>
		
			<category>statistics</category>
		
			<category>software</category>
		
	</item> <item>
		<title>By: Rothko</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#491663</link>	
		<description>&lt;a href=&quot;http://stats.math.uni-augsburg.de/JRI/&quot;&gt;JRI&lt;/a&gt; will let you run &lt;a href=&quot;http://www.r-project.org/&quot;&gt;R&lt;/a&gt; from inside Java calls. Both are open source and free.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-491663</guid>
		<pubDate>Mon, 23 Jan 2006 19:46:56 -0800</pubDate>
		<dc:creator>Rothko</dc:creator>
	</item><item>
		<title>By: mulkey</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#491679</link>	
		<description>It&apos;s not Java and it&apos;s not open source, but you can download a student version of SPSS that&apos;s fully functional for free on their website.  I think it expires after 30 days or so, but it does work.  And SPSS is relatively user friendly.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-491679</guid>
		<pubDate>Mon, 23 Jan 2006 20:02:34 -0800</pubDate>
		<dc:creator>mulkey</dc:creator>
	</item><item>
		<title>By: dhruva</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#491762</link>	
		<description>Here&apos;s a site with a list of &lt;a href=&quot;http://members.aol.com/johnp71/javasta2.html&quot;&gt;free stats software.&lt;/a&gt; Look around this website, it has tons of links, and &lt;a href=&quot;http://members.aol.com/johnp71/javastat.html#Package&quot;&gt;this one&lt;/a&gt; might interest you.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-491762</guid>
		<pubDate>Mon, 23 Jan 2006 23:05:31 -0800</pubDate>
		<dc:creator>dhruva</dc:creator>
	</item><item>
		<title>By: sanitycheck</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#491800</link>	
		<description>Perhaps I am misunderstanding the question, but I think gurple is looking for a stats API he can use *within* his Java program.  This rules out actual stats software, even web-based.&lt;br&gt;
&lt;br&gt;
I searched around a bit and all I came up with was the same link referenced in the original post.  If it were me I would probably just write the stuff I needed from scratch, or shell out the dough for the WebCab stuff.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-491800</guid>
		<pubDate>Tue, 24 Jan 2006 01:09:35 -0800</pubDate>
		<dc:creator>sanitycheck</dc:creator>
	</item><item>
		<title>By: Rothko</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#491923</link>	
		<description>JRI will let you run R, a popular and free open source stat pack, using Java methods. JRI provides an &quot;API&quot;, roughly speaking.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-491923</guid>
		<pubDate>Tue, 24 Jan 2006 07:10:03 -0800</pubDate>
		<dc:creator>Rothko</dc:creator>
	</item><item>
		<title>By: gurple</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#492208</link>	
		<description>Hmm, yep, it&apos;s not looking good so far.  I use R heavily, and in fact my current workaround will be to call out to R, but that&apos;s cumbersome and not very efficient.  I might end up just writing some linear regression code.  It seems unbelievable that someone hasn&apos;t done this already and made it public!&lt;br&gt;
&lt;br&gt;
Thanks for all the help so far!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-492208</guid>
		<pubDate>Tue, 24 Jan 2006 10:56:37 -0800</pubDate>
		<dc:creator>gurple</dc:creator>
	</item><item>
		<title>By: sanitycheck</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#492209</link>	
		<description>Whoops, didn&apos;t mean to include your answer in my generalization, Rothko. But would a programmer be able to package R with their open source product? I&apos;m not up on the rules of redistributing OSS.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-492209</guid>
		<pubDate>Tue, 24 Jan 2006 10:56:50 -0800</pubDate>
		<dc:creator>sanitycheck</dc:creator>
	</item><item>
		<title>By: gurple</title>
		<link>http://ask.metafilter.com/31355/Java-package-for-statistical-analysis#492216</link>	
		<description>In fact, some of the people involved in developing R suggested the same thing to me -- package up a minimal R installation with our product.  So I _think_ there are no legal issues.  But still, it&apos;s a lot of dependency for a little functionality.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31355-492216</guid>
		<pubDate>Tue, 24 Jan 2006 11:05:05 -0800</pubDate>
		<dc:creator>gurple</dc:creator>
	</item>
	</channel>
</rss>
