Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software Modulerwasp_boxcoxnorm.wasp
Title produced by softwareBox-Cox Normality Plot
Date of computationTue, 11 Nov 2008 07:28:41 -0700
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2008/Nov/11/t1226413764yzo72ngb5ji8vsx.htm/, Retrieved Mon, 27 May 2024 23:09:28 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=23525, Retrieved Mon, 27 May 2024 23:09:28 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact123
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
F       [Box-Cox Normality Plot] [Various EDA Topic...] [2008-11-11 14:28:41] [620b6ad5c4696049e39cb73ce029682c] [Current]
Feedback Forum
2008-11-14 10:27:54 [Ciska Tanghe] [reply
Op deze grafiek zien we een volledig ander verloop van de tijdreeks dan bij de Box-Cox linearity plot. Hier zou een lambda-waarde van 1.35 optimaal zijn omdat in dit punt een maximum bereikt wordt.
2008-11-24 18:04:52 [Jan Cavents] [reply
hier merken we een andere BCN-plot dan bij de vorige vraag. hier wordt de lambdawaarde geschat om -1,35, omdat hier de optimale waarde gevonden wordt.

Post a new message
Dataseries X:
1045,9
1401,9
1027,6
1703,8
1481,3
1422,7
1304,7
1246,1
1417,8
1459,1
1156,4
1304,5
1336,9
1372,3
975,5
1180,8
1361,3
1428,1
1355,9
1781,2
1697
1852
1844,1
1967,2
1747,1
1863,9
1559,3
1675
2237,5
1965,2
1871,5
1752,2
1360,7
1444,3
1621,6
1368
1553,9
1695,3
1397,1
1848,4
1809,2
1551,1
1546,6
1467,9
1662,4
1972,3
1673,5
1762
2019,8
1754,3
1400,4
1453,6
1740,9
1694,6
1541,2
1482,3
1632,1
1837,3
1797
2066,2
1983,8
1601,7
1660,3
1954
1991,9
1881,4
2345,5
1773,1
1719,2
2240,9
1816,4
2171,3
1823,3
2022,5
1991
1920
2168,4
2013,5
1790,8
1855,7
2074
2535,8
1837,2
1805,1
1785,7
2250
1959,7
1890,8
2405,7
2090,3
1666,5
1803,5
1793,8
1488,8
1545
1369,9
1451,6




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'Gwilym Jenkins' @ 72.249.127.135

\begin{tabular}{lllllllll}
\hline
Summary of computational transaction \tabularnewline
Raw Input & view raw input (R code)  \tabularnewline
Raw Output & view raw output of R engine  \tabularnewline
Computing time & 2 seconds \tabularnewline
R Server & 'Gwilym Jenkins' @ 72.249.127.135 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=23525&T=0

[TABLE]
[ROW][C]Summary of computational transaction[/C][/ROW]
[ROW][C]Raw Input[/C][C]view raw input (R code) [/C][/ROW]
[ROW][C]Raw Output[/C][C]view raw output of R engine [/C][/ROW]
[ROW][C]Computing time[/C][C]2 seconds[/C][/ROW]
[ROW][C]R Server[/C][C]'Gwilym Jenkins' @ 72.249.127.135[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=23525&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=23525&T=0

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'Gwilym Jenkins' @ 72.249.127.135







Box-Cox Normality Plot
# observations x97
maximum correlation0.548924490875059
optimal lambda-1.35

\begin{tabular}{lllllllll}
\hline
Box-Cox Normality Plot \tabularnewline
# observations x & 97 \tabularnewline
maximum correlation & 0.548924490875059 \tabularnewline
optimal lambda & -1.35 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=23525&T=1

[TABLE]
[ROW][C]Box-Cox Normality Plot[/C][/ROW]
[ROW][C]# observations x[/C][C]97[/C][/ROW]
[ROW][C]maximum correlation[/C][C]0.548924490875059[/C][/ROW]
[ROW][C]optimal lambda[/C][C]-1.35[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=23525&T=1

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=23525&T=1

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

Box-Cox Normality Plot
# observations x97
maximum correlation0.548924490875059
optimal lambda-1.35



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
n <- length(x)
c <- array(NA,dim=c(401))
l <- array(NA,dim=c(401))
mx <- 0
mxli <- -999
for (i in 1:401)
{
l[i] <- (i-201)/100
if (l[i] != 0)
{
x1 <- (x^l[i] - 1) / l[i]
} else {
x1 <- log(x)
}
c[i] <- cor(qnorm(ppoints(x), mean=0, sd=1),x1)
if (mx < c[i])
{
mx <- c[i]
mxli <- l[i]
}
}
c
mx
mxli
if (mxli != 0)
{
x1 <- (x^mxli - 1) / mxli
} else {
x1 <- log(x)
}
bitmap(file='test1.png')
plot(l,c,main='Box-Cox Normality Plot',xlab='Lambda',ylab='correlation')
mtext(paste('Optimal Lambda =',mxli))
grid()
dev.off()
bitmap(file='test2.png')
hist(x,main='Histogram of Original Data',xlab='X',ylab='frequency')
grid()
dev.off()
bitmap(file='test3.png')
hist(x1,main='Histogram of Transformed Data',xlab='X',ylab='frequency')
grid()
dev.off()
bitmap(file='test4.png')
qqnorm(x)
qqline(x)
grid()
mtext('Original Data')
dev.off()
bitmap(file='test5.png')
qqnorm(x1)
qqline(x1)
grid()
mtext('Transformed Data')
dev.off()
load(file='createtable')
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Box-Cox Normality Plot',2,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'# observations x',header=TRUE)
a<-table.element(a,n)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'maximum correlation',header=TRUE)
a<-table.element(a,mx)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'optimal lambda',header=TRUE)
a<-table.element(a,mxli)
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')