この質問は、経験的または非パラメトリックな歪度についてですか、それとも歪度の推定についてですか?
—
-gwr
回答:
スキューを計算するためにさまざまな方法を使用しています。skewness()
Rパッケージ内でヘルプページを検索すると、次のe1071
結果が得られます。
Joanes and Gill (1998) discuss three methods for estimating skewness:
Type 1:
g_1 = m_3 / m_2^(3/2). This is the typical definition used in many older textbooks.
Type 2:
G_1 = g_1 * sqrt(n(n-1)) / (n-2). Used in SAS and SPSS.
Type 3:
b_1 = m_3 / s^3 = g_1 ((n-1)/n)^(3/2). Used in MINITAB and BMDP.
All three skewness measures are unbiased under normality.
#Why are these numbers different?
> skewness(c(222,1122,45444), type = 2)
[1] 1.729690
> skewness(c(222,1122,45444), type = 1)
[1] 0.7061429
誰かがさらなる議論や教育のためにそれを取得する資格を持っている場合に参照される論文へのリンクは次のとおりです:http : //onlinelibrary.wiley.com/doi/10.1111/1467-9884.00122/abstract
e1071
具体的に何を意味するのかを明確にするために、パッケージを管理しているFriedrich.Leisch@R-project.orgに従うことにします。私のポストは明確ではなかった場合、それはから来ているのヘルプページskewness()