Displaying 6 results from an estimated 6 matches for "salzman".
Did you mean:
salman
2008 Jan 24
2
testing coeficients of glm
...varV <- by(y,cl,var)
## the mean of Hb is
muHb <- H %*% muV
## because of independence, the variance of Hb is
varHb <- sum(varV)
## the probability of error, so-called p-value:
p.val <- 2 * pnorm( -abs(muHb), mean=0, sd=sqrt(varHb),lower.tail = TRUE)
thanks again,
peter
--
Peter Salzman, PhD
Department of Biostatistics and Computational Biology
University of Rochester
[[alternative HTML version deleted]]
2001 Oct 22
1
basic question
hi there,
i'm about to install wine on my debian system. is it better to use libwine
for the dll's or is it better to use MS's dll's?
thanks,
pete
--
"You may not use the Software in connection with any site that disparages
Microsoft, MSN, MSNBC, Expedia, or their products or services ..."
-- Clause from license for FrontPage 2002
2001 Oct 25
1
basic install questions
Hello,
I was reading the docs and have a few questions:
1. I compile wine from the daily debian repository at gluck.debian.org.
Do I still need to first remove the old wine before dpkg'ing a newly
compiled wine source?
2. I plan on installing wine WITH Windows. Can I still use winesetuptk?
I can ignore installation on wine-lib, right?
3. Copyright issues aside, would the most
2009 Aug 31
4
Book on R programming
Most books on R I come across describe running statistical procedures in R.
Any suggestions on a good book that teaches *programming* in R?
Thanks,
Anjan
--
=============================
anjan purkayastha, phd
bioinformatics analyst
whitehead institute for biomedical research
nine cambridge center
cambridge, ma 02142
purkayas [at] wi [dot] mit [dot] edu
703.740.6939
[[alternative HTML version
2001 Oct 26
1
first stabs at wine - need a bit of help
Hello all,
I'm using a Windows machine, navalle, to copy files to my Linux box, lucifer,
which will hopefully run Wine. I'm keeping a careful log of exactly how I
install wine. This is what i've done so far:
1. Let ~ = lucifer:/home/p/.wine/fake_windows
2. apt-get install wine-doc winesetuptk wine-utils wine wine-lib:
ii libwine 0.20011026.033 Windows Emulator (Library)
2007 Oct 01
4
Disentagling formulas
I am writing a program in which I would like to take in a formula, change the response (Y) variable into something else, and then pass the formula, with the new Y variable to another function. That is, I am starting with
formula <- Y~X1+X2+X3
and I'd like to do something like
Y <- formula$Y
newY <- f(Y)
lm(newY~X1+X2+X3)
So far, it seems that my