Displaying 2 results from an estimated 2 matches for "xcat2".
Did you mean:
xcat
2012 Apr 20
1
predictOMatic for regression. Please try and advise me
...newdataMaker(model, fl)
fit <- predict(model, newdata=nd, ...)
cbind(fit, nd)
}
set.seed(12345)
x1 <- rnorm(100)
x2 <- rnorm(100)
x3 <- rnorm(100)
x4 <- rnorm(100)
x5 <- rpois(100, 5)
x6 <- rgamma(100, 2,1)
xcat1 <- gl(2,50, labels=c("M","F"))
xcat2 <- cut(rnorm(100), breaks=c(-Inf, 0, 0.4, 0.9, 1, Inf),
labels=c("R", "M", "D", "P", "G"))
dat <- data.frame(x1, x2, x3, x4, x5, xcat1, xcat2)
rm(x1, x2, x3, x4, xcat1, xcat2)
dat$y <- with(dat, 0.03 + 0.1*x1 + 0.1*x2 + 0.4*x3 -0.1*x4 + 0.0...
2019 Mar 13
1
Fwd: syslinux-6.03 failed to boot ESXI 6.7
...t I have
done.
Going off on a tangent with this, the source code to VMWare's version of
mboot is available when you get the source code from their site. It's a
giant DVD ISO file; in it a file called efiboot-....tgz has it. I did a
google search and found a file here:
https://github.com/xcat2/xcat-dep/tree/master/esxboot
It's GPL 2
In case someone want's to look at it.
On Wed, Mar 13, 2019 at 1:36 AM luckydog xf <luckydogxf at gmail.com> wrote:
> Thanks everyone.
> ---
> Yes, I used syslinux v4.05, it was sucessful.
>
> Speaking of chainloading, does i...