Displaying 5 results from an estimated 5 matches for "chch".
Did you mean:
cach
2010 Jul 27
1
Dovecot and Active Directory separate domain data stores.
...roblem lies in the way we store our email for our virtual users in
this setup.
We run a flat domain for AD (lets call it newzealand.local), and then
under each users account that gets email, in the E-mail field in AD, they
have an email address like user1 at auckland, user2 at wellington, user3 at chch
and
so on.
With Postfix, I've set it up so that each email domain ends up being
stored in a different path - /mail/auckland/user1, /mail/wellington/user2,
/mail/chch/user3. This was done using a query filter that returned a
person's email address from AD, chopped it into separate user/dom...
2008 Jun 11
2
model simplification using Crawley as a guide
Hello,
I have consciously avoided using step() for model simplification in favour
of manually updating the model by removing non-significant terms one at a
time. I'm using The R Book by M.J. Crawley as a guide. It comes as no
surprise that my analysis does proceed as smoothly as does Crawley's and
being a beginner, I'm struggling with what to do next.
I have a model:
lm(y~A * B *
2008 Jun 03
1
Model simplification using anova()
Hello all,
I've become confused by the output produced by a call to
anova(model1,model2). First a brief background. My model used to predict
final tree height is summarised here:
Df Sum Sq Mean Sq F value Pr(>F)
Treatment 2 748.35 374.17 21.3096 7.123e-06 ***
HeightInitial 1 0.31 0.31 0.0178 0.89519
2006 Jun 27
3
reading a matrix from a file
Hello everyone,
I'm writting a little script that will read a matrix from a file
i.e.
0,.11,.22,.4
.11,0,.5,.3
.22,.5,0,.7
anb so on
and will then calculate some standard stats for nets (i.e. centralization, degree, etc).
So far I have opened the file and read the contents, however I' m using readLines(filename)
to read the file and it returns it as
2006 Oct 05
11
Block comments in R?
Hello list,
Is there any way to perform a block comment in R? In C++, anything in
between a /* and */ is considered a comment, and it allows
programmers to comment out chunks of code for testing and debugging.
Is there such a feature in R?
Cheers,
Wee-Jin