Displaying 6 results from an estimated 6 matches for "residplot".
2009 Jun 21
2
Help on qpcR package
...odel selection in
quantitative real-time polymerase chain reaction analysis.
Bioinformatics 2008, 24:1549-1551
Newest version always available at www.dr-spiess.de/qpcR.html.
Attaching package: 'qpcR'
The following object(s) are masked from package:gplots :
residplot
[1] 12 24 13 11 23 10 9 17 11 14 18
[1] 2.302585 2.397895 2.197225 2.079442 1.609438 2.484907 2.397895
3.044522 2.484907 2.564949 2.639057
Error in get(noquote(a)) : object 'dep' not found
The error reported, as I understand it, is that the object dep it is
not defined. Ob...
2008 Jul 11
2
Problems with Package Installation.
...html latex example
plot.lm2 text html latex example
plotCI text html latex example
plotmeans text html latex example
qqnorm.aov text html latex example
residplot text html latex
rich.color text html latex example
rtPCR text html latex example
sinkplot text html latex example
smartlegend text html...
2000 Sep 29
0
Is it R or I?
...quot;
tkdestroy(tt2a)
})
tkpack(but.lab2, but.wid22, but.wid23)
# wait until DONE is pressed
tclvar$done2 <- "F"
tkwait.variable("done2")
}
residplot <- function() {
plot(tmpzx$fit, tmpzx$residuals)
abline(h=0)
opfr <- opf2b
idf.x <- tmpzx$fit
idf.y <- tmpzx$residuals
flag <- 2
assign("flag", flag, env=.GlobalEnv)
assign("idf.x", idf.x, env=.GlobalEnv)
assig...
2007 Nov 02
0
gplots 2.5.0
...------------------
gplots provides additional plotting functions, including several
enhanced versions of base R functions.
Provided functions include:
balloonplot, bandplot, barplot2, boxplot.n, colorpanel, heatmap.2,
hist2d, lowess, ooplot, overplot, plot.lm2, plotCI, plotmeans,
qqnorm.aov, residplot, rich.color, sinkplot, smartlegend, space,
textplot, wapply
Changes in 2.5.0
-----------------------
New Features:
- textplot() now converts tab characters to spaces before processing to
avoid problems with computing height and width of text that includes
tabs.
- Add col2rgb() f...
2007 Nov 02
0
gplots 2.5.0
...------------------
gplots provides additional plotting functions, including several
enhanced versions of base R functions.
Provided functions include:
balloonplot, bandplot, barplot2, boxplot.n, colorpanel, heatmap.2,
hist2d, lowess, ooplot, overplot, plot.lm2, plotCI, plotmeans,
qqnorm.aov, residplot, rich.color, sinkplot, smartlegend, space,
textplot, wapply
Changes in 2.5.0
-----------------------
New Features:
- textplot() now converts tab characters to spaces before processing to
avoid problems with computing height and width of text that includes
tabs.
- Add col2rgb() f...
2012 Sep 10
0
More help need on Von Bertalanffy Growth Curves
...arameter estimates using all the Cohorts data#
vbCom <- Length~Linf*(1-exp(-K*(Age-t0)))
fitCom <- nls(vbCom,data=BLG,start=svCom)
overview(fitCom)
# Checking assumptions#
#want residual plot to look like a shot gun blast, no funnels, no trends, no arches, (ie Unbiased and homoscedastic)#
residPlot(fitCom)
#Want histogram to be normally distributed#
hist(residuals(fitCom),main="")
# Create a model that holds Linf and t0 steady but varies by Cohort#
vbK=Length~Linf*(1-exp(-K[Cohortf]*(Age-t0)))
svK=mapply(rep,svCom,c(1,8,1))
#Fit model to the data#
fitK <- nls(vbK,data=BLG,st...