Displaying 20 results from an estimated 703 matches for "catholics".
Did you mean:
catholic
2012 Jul 23
2
marginal effect lmer
Hi everybody,
I try to calculate and display the marginal effect(s) in a hierarchical
model using lmer. Here is my model:
m1<- lmer(vote2011~ Catholic + Attendance+ logthreshold + West +
Catholicproportion+
(Catholic * Catholicproportion) + (Attendance*Catholicproportion) +
Catholicproportion?+ (Catholic *Catholicproportion?)+
(Attendance* Catholicproportion?) + (1 + Attendance+ Catholic
2007 May 04
1
subset
hello,
> subset(swiss, Agriculture > 60 & Examination != c(14,16), select = c(Agriculture,Examination,Catholic))
Agriculture Examination Catholic
Broye 70.2 16 3.30
Glane 67.8 14 4.20
Aigle 62.0 21 5.16
Avenches 60.7 19 5.23
Cossonay 69.3 22 5.62
2013 May 29
0
"Unable to optimize" error returned in factanal using R-3.0.1, Windows 64 bit, and OpenBLAS
Hello,
I have been trying for weeks to compile a 64-bit Rblas. I started with ATLAS where I have had success in the past, but 64 bit was not behaving, and as each compilation takes between 9 and 12 hours, "test, check, and revise" was not going to be really viable. I therefore switched to OpenBLas (OPBL). I was successful in compiling R-3.0.1 and an OPBL-based BLAS for Windows 64bit
2007 May 09
1
step() in sink() and Sweave()
Dear developers,
I just noticed that step() function currently prints the current model
using message(), but the resulting model using print(). The relevant
commands within the step() body are:
if (trace) message("Start: AIC=", format(round(bAIC, 2)), "\n",
cut.string(deparse(as.vector(formula(fit)))), "\n")
(with example() output:)
Start: AIC=190.69
2007 Apr 20
2
sorting data in R
hello,
I'd like know how to sort a data frame in R for example how I should do to sort by Catholic with swiss data frame like below
thanks
Fertility Agriculture Examination Education Catholic Infant.Mortality
Courtelary 80.2 17.0 15 12 9.96 22.2
Delemont 83.1 45.1 6 9 84.84 22.2
2002 May 02
2
problem with lme in nlme package
Dear R list members,
I've turned up a strange discrepancy between results obtained from the lme
function in the nlme package in R and results obtained with lme in S-PLUS.
I'm using version 3.1-24 of nlme in R 1.4.1 under Windows 2000, and both
S-PLUS 2000 and 6.0, again under Windows 2000.
I've noticed discrepancies in a couple of instances. Here's one, using data
from Bryk
2004 Dec 07
1
how to test the existence of a name in a dataframe
I wanted to test if there exists already a name (which is
incidentally a substring of another name) in a dataframe.
I did e.g.:
> data(swiss)
> names(swiss)
[1] "Fertility" "Agriculture" "Examination" "Education"
[5] "Catholic" "Infant.Mortality"
> ! is.null(swiss$EduX)
[1] FALSE
> !
2004 May 01
1
Managed switch? | PRIO chain
Saw this command on slashdot
(http://ask.slashdot.org/article.pl?sid=04/03/24/0434224&mode=flat&tid=126&tid=95
) to basically make a box behave like a managed switch:
"tc qdisc add dev eth1 root tbf rate 250kbit latency 20ms burst 2kb"
Followup:
2005 Feb 18
2
partition table Cent4RC1
I just installed CentRC1 on a Dell gx150 as a test. I'm running into the same problem I had with Fc3. I get a partition table error when trying to use ghost8 to create an image. I was considering putting Cent4 on a ProliantDL380, FC3 installed on that machine but wouldn't boot up, stuck on Grub. I had FC2 on the Proliant but when FC2 went to the 2.6 kernel, it hung up on the Nash prompt.
2003 Dec 04
5
Processing calendar dates with R
I am a beginner in R with a background in SAS.
Are there built-in R methods of reading dates for calculating elapsed days
between two calendar dates? If so, are there any examples I can browse?
Thanks in anticipation.
John Byrne.
Lecturer in Information Systems.
Australian Catholic University.
2004 Sep 06
4
100% CPU utilisation
Dovecot (0.9.11) consumes 100% CPU utilisation when accessing
(either pop or imap) one of my mailboxes. It doesn''t happen
with other mailboxes.
The mailbox has about 500 mails while others have many more.
They are all in mbox format.
OS: OpenBSD-3.5 with all patches
MTA: Sendmail-8.12.11
It happened with other RCs of dovecot-0.9.11
Configured as: ./configure --without-pam
2008 Aug 07
4
Obtaining the first /or last record of a subject in a longitudinal study
Dear R users,
I was wondering if anyone knows how to obtain(subset) the first and/or the
last record of a subject in a longitudinal setup.
Normally in SAS one uses first.variable1 and last.variable1. So my question
is that is there an R way of doing this.
Regards,
--
Luwis Diya, Phd student (Biostatistics),
Biostatistical Center,
School Of Public Health,
Catholic University of Leuven,
U.Z. St
2004 Sep 02
4
0.99.11-rc2
http://dovecot.org/rc/
Changes since rc1:
+ Create PID file in /var/run/dovecot/master.pid
- THREAD and SORT commands crashed with some mails
If nothing new comes up, this is the final release tomorrow.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: PGP.sig
Type: application/pgp-signature
Size: 186 bytes
Desc: This is a digitally signed message part
URL:
2009 Aug 11
1
Generating R plots via Ruby CGI
Greetings,
I'm trying to debug a simple two-line plot routine in R called test.R:
cor(swiss)
plot(swiss$Catholic, swiss$Examination)
These commands work fine when typed into R. They also work fine when
I invoke this routine by the following line into my terminal:
R --slave < /Library/WebServer/Documents/gsa/test.R
My ultimate goal is to send data to this R routine via a web
2006 Mar 02
2
'...' passed to both plot() and legend()
Dear R-devels,
I'd like to create a plot method for a class of objects that passes
the '...' argument to both plot() and legend(), e.g.,
x <- list(data = rnorm(1000))
class(x) <- "foo"
plot.foo <- function(x, legend = FALSE, cx = "topright", cy = NULL,
...){
dx <- sort(x$data)
plot(dx, dnorm(dx), type = "l", ...)
if (legend)
2008 Apr 09
4
apply lm() for all the columns of a matrix
Hi all,
My question is not really urgent. I can write a loop and solve the
problem. But I know that I'll be in a similar situation many more times so
it would be useful to find out the answer
Is there a fast way to perform linear fit to all the columns of a matrix?
(or in the one dimension of a multi-dimensional array.) I'm talking about
many single linear fits, not about a multiple fit.
2009 May 28
0
Urgent Statistician Position near Philadelphia
Dear R-list,
I know is going to be weird, but I need to do something about and I know
the R-list is big group of good people. I?m moving to Philadelphia in
August 2009 (my fianc? is there) and I need to find a job. I know to do so
many things, but my skill is in science and research. I would like to know
if you know a possible position near Philadelphia, New Jersey or New York.
I was working in
2009 Aug 21
1
Function "nsl()" missing in package utils
Dear list,
today I stumbled across the function ?nsl()? for the first time in order to
perform a hostname lookup. According to the R Reference Index (Version
2.9.1, page 1522), the function should be part of the "utils" package.
However, I cannot find it in the utils package of my installation(s). I've
tried the R-versions 2.8.1, 2.9.0 and 2.9.1.
I'd be very thankful if
2008 Feb 28
1
vorbis encoding question
Hello
I'm trying to make a simple program that records and saves the recorded
audio to an Ogg file on the fly.
But I can't find some examples and good documentation on encoding Ogg files,
is there some place or someone know a good way to start with Ogg
programming? I can decode Ogg files with no problem but I can't encode.
Any help will be appreciated.
Thanks
--
Yuri Jaeger Monti
2006 Nov 28
1
Slight discrepancy between predict.lm() and all.effects()
In the course of exploring response prediction, I stumbled upon a
small discrepancy between the CIs produced by predict.lm() and
all.effects()
require(mlmRev)
require(effects)
hsb.lm <- lm(mAch ~ minrty * sector, Hsb82)
hsb.new <- data.frame(
minrty = rep(c('No', 'Yes'), 2),
sector = rep(c('Public', 'Catholic'), each = 2))
hsb.eff <-