Nothing
vis.boxcox.old <-
function(lambda = sample( c(-1,-0.5,0,1/3,1/2,1,2), 1) ) {
if( !requireNamespace('tcltk', quietly = TRUE) ) stop('This function depends on the tcltk package')
x <- runif(100, 1, 10)
y <- 3+2*x + rnorm(100)
if ( min(y) <= 0 ) y <- y - min(y) + 0.05
if (lambda==0) {
y <- exp(y)
} else {
y <- y^(1/lambda)
}
if(!exists('slider.env')) slider.env <<-new.env()
lam <- 1 ; assign('lam',tcltk::tclVar(lam), envir=slider.env)
bc.refresh <- function(...){
lam <- as.numeric(evalq(tcltk::tclvalue(lam), envir=slider.env))
old.par <- par(mfcol=c(2,2))
on.exit(par(old.par))
tmp1 <- lm(y~x)
tmp2 <- lm(bct(y,lam)~x)
plot(x,y,main="Raw Data")
abline(tmp1)
scatter.smooth(x,resid(tmp1),main="Raw Residuals",ylab='Residuals')
abline(h=0, lty=2 )
plot(x,bct(y,lam), main=bquote( lambda == .(lam) ),ylab="Transformed y" )
abline(tmp2)
scatter.smooth(x,resid(tmp2), main=bquote( lambda == .(lam) ),
ylab="Residuals")
abline(h=0, lty=2)
}
m <- tcltk::tktoplevel()
tcltk::tkwm.title(m, 'Box Cox Transform')
tcltk::tkwm.geometry(m,'+0+0')
tcltk::tkpack(fr <- tcltk::tkframe(m), side='top')
tcltk::tkpack(tcltk::tklabel(fr, text='lambda', width='10'), side='right')
tcltk::tkpack(sc <- tcltk::tkscale(fr, command=bc.refresh, from=-2, to=3, orient='horiz',
resolution=0.1, showvalue=T),
side='left')
assign('sc',sc,envir=slider.env)
evalq(tcltk::tkconfigure(sc, variable=lam), envir=slider.env)
tcltk::tkpack(tcltk::tkbutton(m, text="Refresh", command=bc.refresh), side='left')
tcltk::tkpack(tcltk::tkbutton(m, text="Exit", command=function()tcltk::tkdestroy(m)),
side='right')
}
vis.boxcox <- function(lambda = sample( c(-1,-0.5,0,1/3,1/2,1,2), 1),
hscale=1.5, vscale=1.5, wait=FALSE) {
if( !requireNamespace('tkrplot', quietly = TRUE) ) stop('This function depends on the tkrplot package being available')
x <- runif(100, 1, 10)
y <- 3+2*x + rnorm(100)
if( min(y) <= 0 ) y <- y - min(y) + 0.05
if(lambda==0) {
y <- exp(y)
} else {
y <- y^(1/lambda)
}
lam <- tcltk::tclVar()
tcltk::tclvalue(lam) <- 1
hsc <- tcltk::tclVar()
tcltk::tclvalue(hsc) <- hscale
vsc <- tcltk::tclVar()
tcltk::tclvalue(vsc) <- hscale
replot <- function(...) {
tmp.l <- as.numeric(tcltk::tclvalue(lam))
par(mfcol=c(2,2))
tmp1 <- lm(y~x)
tmp2 <- lm( bct(y,tmp.l)~x)
plot(x,y,main="Raw Data")
abline(tmp1)
scatter.smooth(x,resid(tmp1), main="Raw Residuals", ylab='Residuals')
abline(h=0, lty=2)
plot(x,bct(y,tmp.l), main=bquote( lambda == .(tmp.l) ), ylab="Transformed y")
abline(tmp2)
scatter.smooth(x,resid(tmp2), main=bquote( lambda == .(tmp.l) ),
ylab='Residuals')
abline(h=0, lty=2)
}
tt <- tcltk::tktoplevel()
tcltk::tkwm.title(tt, "Box Cox Demo")
img <- tkrplot::tkrplot(tt, replot, vscale=vscale, hscale=hscale)
tcltk::tkpack(img, side='top')
tcltk::tkpack(fr <- tcltk::tkframe(tt), side='top')
tcltk::tkpack(tcltk::tklabel(fr, text='lambda: '), side='left', anchor='s')
tcltk::tkpack(tcltk::tkscale(fr, variable=lam, orient='horizontal',
command=function(...) tkrplot::tkrreplot(img,
hscale=as.numeric(tcltk::tclvalue(hsc)),
vscale=as.numeric(tcltk::tclvalue(vsc)) ),
from=-2, to=4, resolution=.05), side='right')
tcltk::tkpack(tfr <- tcltk::tkframe(tt), side='bottom', fill='x')
tcltk::tkpack(tcltk::tkbutton(tfr, text="Refresh", command=function() tkrplot::tkrreplot(img,
hscale=as.numeric(tcltk::tclvalue(hsc)),
vscale=as.numeric(tcltk::tclvalue(vsc)) ) ),
side='left',anchor='s')
tcltk::tkpack(tcltk::tkbutton(tfr, text="Exit", command=function()tcltk::tkdestroy(tt)),
side='right',anchor='s')
tcltk::tkpack(tfr <- tcltk::tkframe(tt), side='bottom', fill='x')
tcltk::tkpack(tcltk::tklabel(tfr,text="Hscale: "), side='left')
tcltk::tkpack(tcltk::tkentry(tfr,textvariable=hsc,width=6), side='left')
tcltk::tkpack(tcltk::tklabel(tfr,text=" Vscale: "), side='left')
tcltk::tkpack(tcltk::tkentry(tfr,textvariable=vsc,width=6), side='left')
if(wait) {
tcltk::tkwait.window(tt)
return( list(lambda = as.numeric(tcltk::tclvalue(lam)),
x=x, y=y,
ty = bct(y, as.numeric(tcltk::tclvalue(lam)))
))
} else {
return(invisible(NULL))
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.