Displaying 5 results from an estimated 5 matches for "outi".
Did you mean:
out
2010 Aug 26
3
Help with ddply to eliminate a for..loop
...all examples quite a bit
I can't figure out how to get it to work with my sample dataset.
TIA for any help, Roger
Here is the sample code:
dat <- data.frame(id=rep(letters[1:5],3),
time=c(rep(1,5),rep(2,5),rep(3,5)), slope=1:15)
dat
for (i in 1:3) {
mat <- dat[dat$time==i, ]
outi <- data.frame(mat$time, mat$id, slope=scale(mat$slope))
if (i==1) {
out <- outi
} else {
out <- rbind(out, outi)
}
}
out
Here is the sample output:
> dat <- data.frame(id=rep(letters[1:5],3),
time=c(rep(1,5),rep(2,5),rep(3,5)), slope=1:15)
> dat
i...
2000 Sep 29
0
Is it R or I?
...x(xdnc.act)
xpnd.max <- max(xpndfit.df$fit)
xdnc.min <- min(xdnc.act)
xpnd.min <- min(xpndfit.df$fit)
if(xpnd.max > xdnc.max) max.lim <- xpnd.max
else max.lim <- xdnc.max
if(xpnd.min < xdnc.min) min.lim <- xpnd.min
else min.lim <- xdnc.min
outidap <- as.null()
outidrs <- as.null()
cat("Before tcltk","\n")
tt <- tktoplevel()
tktitle(tt) <- "Diagnostics"
label.widget <- tklabel(tt, text="Choose type of plot!")
idnfyplot <- function() {
outi <- ide...
2009 Mar 24
3
LSI Logic raid status
Hi,
I have a LSI Logic sata/sas raid running, is there a way to see the
state of
the volume, like optimal, degraded or resyncing?
I've tried several commands with camcontrol but I cant figure it out.
--
Peter Ankerst?l
peter@pean.org
http://www.pean.org/
2011 Oct 09
11
[PATCH 01/10]: nouveau: assorted fixes
Hi,
Here is my patch queue I accumulated over quite a long time.
Patches 1-6 are bugfixes, and rest is mostly RFC.
Comments are welcome.
Best regards,
Maxim Levitsky
2009 Dec 13
3
[PATCH] drm/nouveau: use drm debug levels
- Use driver level (0x2) for NV_DEBUG instead of all levels
- Create a NV_DEBUG_KMS for KMS level (04) and use them in modesetting code
- Remove a few odd NV_TRACE calls and replace with NV_DEBUG_KMS
Signed-off-by: Maarten Maathuis <madman2003 at gmail.com>
---
drivers/gpu/drm/nouveau/nouveau_bios.c | 12 +++++-----
drivers/gpu/drm/nouveau/nouveau_connector.c | 8 +++---