| lik.contour {gaston} | R Documentation | 
Contour plot for two parameters likelihood
Description
Create a contour plot (superimposed with a heat map)
Usage
 lik.contour(x, y, z, levels = NULL, nlevels = 11, heat = TRUE, col.heat = NULL, ...) Arguments
| x,y,z |  As in  | 
| levels |  As in  | 
| nlevels |  As in  | 
| heat |  If  | 
| col.heat | Vector of heat colors | 
| ... |  Additional arguments to  | 
Details
 This function is a wrapper for contour, with a different method to compute
a default value for levels. If heat = TRUE, a heatmap produced by image is added to the plot.
See contour for details on parameters. 
Author(s)
Hervé Perdry and Claire Dandine-Roulland
See Also
lmm.diago.likelihood, contour, image 
Examples
data(AGT)
x <- as.bed.matrix(AGT.gen, AGT.fam, AGT.bim)
# Compute Genetic Relationship Matrix
K <- GRM(x)
# eigen decomposition of K
eiK <- eigen(K)
# simulate a phenotype
set.seed(1)
y <- 1 + lmm.simu(tau = 1, sigma2 = 2, eigenK = eiK)$y
# Likelihood
TAU <- seq(0.5,2.5,length=30)
S2 <- seq(1,3,length=30)
lik1 <- lmm.diago.likelihood(tau = TAU, s2 = S2, Y = y, eigenK = eiK)
lik.contour(TAU, S2, lik1, heat = TRUE, xlab = "tau", ylab = "sigma^2")
[Package gaston version 1.6 Index]