search for: subparameters

Displaying 2 results from an estimated 2 matches for "subparameters".

Did you mean: simparameters
2005 Sep 30
0
error with vif parameter
...e 71, in op_create raise XendError("Error creating domain: " + str(ex)) >From the looks of it, this None seems to be the problem: (device (vif (mac ''None'') (bridge xen-br2))) The ''xm help create'' command suggests you can leave any of the vif subparameters out to invoke the defaults, so this should work, right? When specifying the MAC address also, it works: vif=mac=00:11:22:33:44:55,bridge=xen-br2 Thanks, Tim _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-user...
2007 Mar 25
1
eliminating panel borders from lattice plots
I am trying to eliminate panel borders from my lattice plots. By default, they always print. For example: library(lattice) x <- seq(-3,3,length=1000) y1 <- dnorm(x) y2 <- dnorm(x, sd=.5) data <- data.frame(x=rep(x,2), y=c(y,y2), panel=rep(c(1,2), each=1000)) dplot <- xyplot(y~x | panel, data=data, strip=F, scales=list(draw=F))