Nothing
#########################################################
## C1.gauss: here assumption: gaussian distribution ###
#########################################################
setClass(
Class = "C1.gauss",
contains = "ADEg.C1"
)
setMethod(
f = "initialize",
signature = "C1.gauss",
definition = function(.Object, data = list(score = NULL, fac = NULL, wt = NULL, frame = 0, storeData = TRUE), ...) {
.Object <- callNextMethod(.Object, data = data, ...) ## ADEg.C1 initialize
.Object@data$fac <- data$fac
.Object@data$wt <- data$wt
return(.Object)
})
setMethod(
f = "prepare",
signature = "C1.gauss",
definition = function(object) {
nameobj <- deparse(substitute(object))
## pre-management of graphics parameters
oldparamadeg <- adegpar()
on.exit(adegpar(oldparamadeg))
adegtot <- adegpar(object@adeg.par)
if(object@data$storeData) {
score <- object@data$score
fac <- object@data$fac
wt <- object@data$wt
} else {
score <- eval(object@data$score, envir = sys.frame(object@data$frame))
fac <- eval(object@data$fac, envir = sys.frame(object@data$frame))
wt <- eval(object@data$wt, envir = sys.frame(object@data$frame))
}
score <- as.matrix(score)[, 1] ## to manage 'score' when it is a data.frame with only one column
nlev <- nlevels(as.factor(fac))
## If axes are plotted, put a label for axis
if(adegtot$paxes$draw) {
if(is.null(object@g.args$xlab) & !adegtot$p1d$horizontal)
object@g.args$xlab <- "density"
if(is.null(object@g.args$ylab) & adegtot$p1d$horizontal)
object@g.args$ylab <- "density"
}
## setting colors
paramsToColor <- list(plabels = list(col = object@adeg.par$plabels$col, boxes = list(col = object@adeg.par$plabels$boxes$col)),
plines = list(col = object@adeg.par$plines$col),
ppolygons = list(border = object@adeg.par$ppolygons$border, col = object@adeg.par$ppolygons$col))
if(!(is.null(object@g.args$col) || (is.logical(object@g.args$col) && !object@g.args$col)))
adegtot <- modifyList(adegtot, col2adepar(ccol = object@g.args$col, pparamsToColor = paramsToColor, nnlev = nlev))
## if fill is FALSE, polygons density curves are transparent
if(!object@g.args$fill)
adegtot$ppolygons$col <- "transparent"
## object modification before calling inherited method
object@adeg.par <- adegtot
callNextMethod() ## prepare graph
## statistics calculus
object@stats$means <- meanfacwt(score, fac, wt)
object@stats$var <- varfacwt(score, fac)
## here steps fixed, could be a argument of s1d.gauss
steps <- object@g.args$steps
nind <- table(fac)
gausscurv <- list()
if(object@adeg.par$p1d$horizontal)
xx <- seq(from = object@g.args$xlim[1], to = object@g.args$xlim[2], length.out = steps)
else
xx <- seq(from = object@g.args$ylim[1], to = object@g.args$ylim[2], length.out = steps)
for(i in 1:nlev) {
if(nind[i] == 0)
gausscurv[[i]] <- NA
else
gausscurv[[i]] <- dnorm(xx, mean = object@stats$means[i], sd = sqrt(object@stats$var[i]))
}
names(gausscurv) <- levels(fac)
lead <- ifelse(object@adeg.par$p1d$reverse, 1 , -1)
if(object@adeg.par$p1d$horizontal) {
Ylim <- object@g.args$ylim
if(is.null(object@s.misc$p1dReverse.update) || object@adeg.par$p1d$reverse != object@s.misc$p1dReverse.update ||
is.null(object@s.misc$Ylim.update) || any(Ylim != object@s.misc$Ylim.update)) {
if(is.null(object@g.args$ylim))
Ylim <- c(0, max(sapply(gausscurv, FUN = function(x) {ifelse(is.na(x[1]), 0, max(x)) / 0.85})))
if(object@adeg.par$p1d$rug$draw) {
ref <- ifelse(object@adeg.par$p1d$reverse, 2, 1)
margin <- Ylim[ref]
if(object@adeg.par$p1d$rug$draw)
margin <- object@adeg.par$p1d$rug$margin * abs(diff(Ylim))
object@s.misc$rug <- Ylim[ref]
Ylim[ref] <- Ylim[ref] + lead * margin
}
object@s.misc$Ylim.update <- Ylim
}
object@g.args$ylim <- Ylim
object@s.misc$p1dReverse.update <- object@adeg.par$p1d$reverse
} else {
Xlim <- object@g.args$xlim
if(is.null(object@s.misc$p1dReverse.update) || object@adeg.par$p1d$reverse != object@s.misc$p1dReverse.update ||
is.null(object@s.misc$Xlim.update) || Xlim != object@s.misc$Xlim.update) {
if(is.null(object@g.args$xlim))
Xlim <- c(0, max(sapply(gausscurv, FUN = function(x) {ifelse(is.na(x[1]), 0, max(x)) / 0.85})))
if(object@adeg.par$p1d$rug$draw) {
ref <- ifelse(object@adeg.par$p1d$reverse, 2, 1)
margin <- Xlim[ref]
if(object@adeg.par$p1d$rug$draw)
margin <- object@adeg.par$p1d$rug$margin * abs(diff(Xlim))
object@s.misc$rug <- Xlim[ref]
Xlim[ref] <- Xlim[ref] + lead * margin
}
object@s.misc$Xlim.update <- Xlim
object@s.misc$p1dReverse.update <- object@adeg.par$p1d$reverse
}
object@g.args$xlim <- Xlim
}
object@stats$gausscurves <- gausscurv
assign(nameobj, object, envir = parent.frame())
})
setMethod(
f = "panel",
signature = "C1.gauss",
definition = function(object, x, y) {
## Drawing gauss curves as polygons (filled or not)
## one polygon per level
## y is the score
## get some parameters
pscore <- object@adeg.par$p1d
curvess <- object@stats$gausscurves
labels <- names(curvess)
lims <- current.panel.limits(unit = "native")
if(object@data$storeData)
fac <- object@data$fac
else
fac <- eval(object@data$fac, envir = sys.frame(object@data$frame))
nlev <- nlevels(as.factor(fac))
ppoly <- lapply(object@adeg.par$ppolygons, FUN = function(x) rep(x, length.out = nlev))
plabels <- lapply(object@adeg.par$plabels, FUN = function(x) rep(x, length.out = nlev))
## manage string rotation
srt <- 0
if(is.numeric(plabels$srt[1]))
srt <- plabels$srt[1]
else {
if(plabels$srt[1] == "horizontal")
srt <- 0
else if(plabels$srt[1] == "vertical")
srt <- 90
}
## Starts the display
## depends on the parametres horizontal and reverse
lead <- ifelse(pscore$reverse, -1, 1)
if(pscore$horizontal) {
## horizontal drawing
margin <- ifelse(pscore$reverse, lims$ylim[2], lims$ylim[1])
xx <- seq(from = lims$xlim[1], to = lims$xlim[2], length.out = object@g.args$steps)
if(pscore$rug$draw)
margin <- if(is.unit(object@s.misc$rug)) convertUnit(object@s.misc$rug, typeFrom = "dimension", unitTo = "native", axisFrom = "y", valueOnly = TRUE) else object@s.misc$rug
# margin <- ifelse(pscore$reverse, lims$ylim[2], lims$ylim[1]) + lead * margin
for(i in 1:nlev) {
if(!is.na(curvess[[i]][1])) {
y <- margin + lead * curvess[[i]]
panel.polygon(x = c(lims$xlim[1], xx, lims$xlim[2]), y = c(margin, y, margin) , border = ppoly$border[i],
col = ppoly$col[i], lty = ppoly$lty[i], lwd = ppoly$lwd[i], alpha = ppoly$alpha[i])
if(nlev > 1) {
## indicate levels names for each curve
ymaxindex <- which.max(curvess[[i]]) ## places at the maximum
panel.text(x = xx[ymaxindex], y = y[ymaxindex], labels = names(curvess)[i], pos = ifelse(pscore$reverse, 1, 3), col = plabels$col[i],
cex = plabels$cex[i], alpha = plabels$alpha[i], srt = srt)
}
}
}
} else {
## vertical drawing
margin <- ifelse(pscore$reverse, lims$xlim[2], lims$xlim[1])
yy <- seq(from = lims$ylim[1], to = lims$ylim[2], length.out = object@g.args$steps)
if(pscore$rug$draw)
margin <- if(is.unit(object@s.misc$rug)) convertUnit(object@s.misc$rug, typeFrom = "dimension", unitTo = "native", axisFrom = "x", valueOnly = TRUE) else object@s.misc$rug
# margin <- ifelse(pscore$reverse, lims$xlim[2], lims$xlim[1]) + lead * margin
for(i in 1:nlev) {
if(!is.na(curvess[[i]][1])) {
x <- margin + lead * curvess[[i]]
panel.polygon(x = c(margin, x, margin), y = c(lims$ylim[1], yy, lims$ylim[2]), border = ppoly$border[i],
col = ppoly$col[i], lty = ppoly$lty[i], lwd = ppoly$lwd[i], alpha = ppoly$alpha[i])
if(nlev > 1) {
xmaxindex <- which.max(curvess[[i]])
panel.text(x = x[xmaxindex], y = yy[xmaxindex], labels = names(curvess)[i], col = plabels$col[i], pos = ifelse(pscore$reverse, 2, 4),
cex = plabels$cex[i], alpha = plabels$alpha[i], srt = srt)
}
}
}
}
})
s1d.gauss <- function(score, fac = gl(1, NROW(score)), wt = rep(1, NROW(score)), steps = 200, col = NULL, fill = TRUE, facets = NULL,
plot = TRUE, storeData = TRUE, add = FALSE, pos = -1, ...) {
thecall <- .expand.call(match.call())
## parameters management
sortparameters <- sortparamADEg(...)
## facets
if(!is.null(facets)) {
if(NCOL(score) == 1 & NCOL(fac) == 1)
object <- multi.facets.C1(thecall, sortparameters$adepar, samelimits = sortparameters$g.args$samelimits)
else
stop("Facets are not allowed with multiple scores and/or multiple fac")
}
## multiple scores
else if(NCOL(score) > 1) {
if(NCOL(fac) == 1)
object <- multi.score.C1(thecall)
else
stop("Multiple scores are not allowed with multiple fac")
}
## multiple fac
else if(NCOL(fac) > 1) {
object <- multi.variables.C1(thecall, "fac")
}
## simple ADEg graphic
else {
if(length(sortparameters$rest))
warning(c("Unused parameters: ", paste(unique(names(sortparameters$rest)), " ", sep = "")), call. = FALSE)
## creation of the ADEg object
g.args <- c(sortparameters$g.args, list(steps = steps, fill = fill, col = col))
if(storeData)
tmp_data <- list(score = score, fac = fac, wt = wt, frame = sys.nframe() + pos, storeData = storeData)
else
tmp_data <- list(score = thecall$score, fac = thecall$fac, wt = thecall$wt, frame = sys.nframe() + pos, storeData = storeData)
object <- new(Class = "C1.gauss", data = tmp_data, adeg.par = sortparameters$adepar, trellis.par = sortparameters$trellis, g.args = g.args, Call = match.call())
## preparation
prepare(object)
setlatticecall(object)
if(add)
object <- add.ADEg(object)
}
if(!add & plot)
print(object)
invisible(object)
}
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.