<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Standard Deviation, Root Mean Square and the Central Moments (Statistics in Erlang part 3)</title>
	<atom:link href="http://fullof.bs/standard-deviation-root-mean-square-and-the-central-moments-statistics-in-erlang-part-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://fullof.bs/standard-deviation-root-mean-square-and-the-central-moments-statistics-in-erlang-part-3/</link>
	<description>He just never stops talking</description>
	<lastBuildDate>Tue, 22 Jun 2010 16:27:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John Haugeland</title>
		<link>http://fullof.bs/standard-deviation-root-mean-square-and-the-central-moments-statistics-in-erlang-part-3/comment-page-1/#comment-868</link>
		<dc:creator>John Haugeland</dc:creator>
		<pubDate>Mon, 23 Mar 2009 19:29:16 +0000</pubDate>
		<guid isPermaLink="false">http://fullof.bs/?p=314#comment-868</guid>
		<description>There aren&#039;t default names for the fifth and sixth central moments, as far as I know.  If you find some, let me know, and I&#039;ll wrap them.</description>
		<content:encoded><![CDATA[<p>There aren&#8217;t default names for the fifth and sixth central moments, as far as I know.  If you find some, let me know, and I&#8217;ll wrap them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hir</title>
		<link>http://fullof.bs/standard-deviation-root-mean-square-and-the-central-moments-statistics-in-erlang-part-3/comment-page-1/#comment-867</link>
		<dc:creator>hir</dc:creator>
		<pubDate>Mon, 16 Mar 2009 08:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://fullof.bs/?p=314#comment-867</guid>
		<description>hello,
Would you please tell me what the standard moments (stage 5 &amp; 6) show about a specific distribution?for example B4 (standard moment stage 4) showes the kurtosis and B3 showes the skewness.Please tell me what B5 &amp; B6 show.
thanks</description>
		<content:encoded><![CDATA[<p>hello,<br />
Would you please tell me what the standard moments (stage 5 &amp; 6) show about a specific distribution?for example B4 (standard moment stage 4) showes the kurtosis and B3 showes the skewness.Please tell me what B5 &amp; B6 show.<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders Nygren</title>
		<link>http://fullof.bs/standard-deviation-root-mean-square-and-the-central-moments-statistics-in-erlang-part-3/comment-page-1/#comment-866</link>
		<dc:creator>Anders Nygren</dc:creator>
		<pubDate>Mon, 11 Aug 2008 04:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://fullof.bs/?p=314#comment-866</guid>
		<description>To follow up on my previous comment. Like this

&lt;code&gt;
stddev(L) -&gt;
    {SqSum, Sum, Len} = lists:foldl(fun (X, {K,S,N}) -&gt;
					    {K+X*X,S+X,N+1}
				    end, {0,0,0}, L),
    Mean = Sum/Len,
    math:sqrt(SqSum/Len-Mean*Mean).
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>To follow up on my previous comment. Like this</p>
<p><code><br />
stddev(L) -&gt;<br />
    {SqSum, Sum, Len} = lists:foldl(fun (X, {K,S,N}) -&gt;<br />
					    {K+X*X,S+X,N+1}<br />
				    end, {0,0,0}, L),<br />
    Mean = Sum/Len,<br />
    math:sqrt(SqSum/Len-Mean*Mean).<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders Nygren</title>
		<link>http://fullof.bs/standard-deviation-root-mean-square-and-the-central-moments-statistics-in-erlang-part-3/comment-page-1/#comment-865</link>
		<dc:creator>Anders Nygren</dc:creator>
		<pubDate>Mon, 11 Aug 2008 03:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://fullof.bs/?p=314#comment-865</guid>
		<description>Statistics are an area with little support in erlang at the moment so I think that this is a good initiative.
But You need to be more careful with how many times You traverse the lists of values.
For instance in std_deviation You traverse the list 5 times. I seem to remember from my statistics course, (&gt;25 years ago), that it is possible to calculate stddev with only one traversal.</description>
		<content:encoded><![CDATA[<p>Statistics are an area with little support in erlang at the moment so I think that this is a good initiative.<br />
But You need to be more careful with how many times You traverse the lists of values.<br />
For instance in std_deviation You traverse the list 5 times. I seem to remember from my statistics course, (&gt;25 years ago), that it is possible to calculate stddev with only one traversal.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
