similar to: Ancova: formula with a common intercept

Displaying 20 results from an estimated 90 matches similar to: "Ancova: formula with a common intercept"

2012 Jan 11
2
problems with glht for ancova
I've run an ancova, edadysexo is a factor with 3 levels,and log(lcc) is the covariate (continous variable) I get this results > ancova<-aov(log(peso)~edadysexo*log(lcc)) > summary(ancova) Df Sum Sq Mean Sq F value Pr(>F) edadysexo 2 31.859 15.9294 803.9843 <2e-16 *** log(lcc) 1 11.389 11.3887 574.8081 <2e-16 ***
2013 Feb 24
2
[LLVMdev] Phabricator homepage "UNRECOVERABLE FATAL ERROR"
When accessing the Phabricator homepage <http://llvm-reviews.chandlerc.com/> I see: <http://llvm-reviews.chandlerc.com/P53>. The rest of the site seems to be fine (e.g. I can access that paste fine, and all Differential links that I see on the list work fine), but the homepage just dies. Is this a known issue? -- Sean Silva
2013 Feb 24
2
[LLVMdev] Phabricator homepage "UNRECOVERABLE FATAL ERROR"
Yes. I'm seeing the problem. The error text is: Cannot override final method LiskDAO::loadOneRelative() /srv/http/phabricator/src/applications/repository/storage/PhabricatorRepository.php:7 On Sun, Feb 24, 2013 at 10:19 PM, Manuel Klimek <klimek at google.com> wrote: > On Sat, Feb 23, 2013 at 8:27 PM, Sean Silva <silvas at purdue.edu> wrote: >> >> When accessing
2013 Feb 24
0
[LLVMdev] Phabricator homepage "UNRECOVERABLE FATAL ERROR"
On Sat, Feb 23, 2013 at 8:27 PM, Sean Silva <silvas at purdue.edu> wrote: > When accessing the Phabricator homepage > <http://llvm-reviews.chandlerc.com/> I see: > > <http://llvm-reviews.chandlerc.com/P53>. > > The rest of the site seems to be fine (e.g. I can access that paste > fine, and all Differential links that I see on the list work fine), > but
2013 Feb 25
0
[LLVMdev] Phabricator homepage "UNRECOVERABLE FATAL ERROR"
I filed an upstream bug: https://secure.phabricator.com/T2594 On Sun, Feb 24, 2013 at 10:43 AM, Anton Korobeynikov < anton at korobeynikov.info> wrote: > Yes. I'm seeing the problem. > > The error text is: > > Cannot override final method LiskDAO::loadOneRelative() > > > /srv/http/phabricator/src/applications/repository/storage/PhabricatorRepository.php:7 >
2007 Apr 11
1
Programming Problem (for loop, random # control, 3 dimentional graph)
Dear List, This is just a programming problem which i cannot seem to figure out. I am trying to get a set of power from a test (say, kolmogorov smirnov) out of a distribution (say, G-K distribution) as follows. I am trying to reduce to pain of writing the whole set of data points (p# below) using "for" loop. However, I seem to have some problem in it as the output "M" does not
2010 Jan 21
3
cross validation function translated from stata
Hi, everyone: I ask for help about translating a stata program into R. The program perform cross validation as it stated. #1. Randomly divide the data set into 10 sets of equal size, ensuring equal numbers of events in each set #2. Fit the model leaving out the 1st set #3. Apply the fitted model in (2) to the 1st set to obtain the predicted probability of a prostate cancer diagnosis. #4. Repeat
2013 Feb 25
2
[LLVMdev] Phabricator homepage "UNRECOVERABLE FATAL ERROR"
The problem should be fixed (according to upstream it's a bad apc version that is part of archlinux). Let me know if the error persists... Thanks! /Manuel On Mon, Feb 25, 2013 at 9:16 AM, Manuel Klimek <klimek at google.com> wrote: > I filed an upstream bug: > https://secure.phabricator.com/T2594 > > > On Sun, Feb 24, 2013 at 10:43 AM, Anton Korobeynikov < >
2020 Sep 06
2
pcieport 0000:00:01.0: PME: Spurious native interrupt (nvidia with nouveau and thunderbolt on thinkpad P73)
Ok, I have an update to this problem. I added the nouveau list because I can't quite tell if the issue is: - the PCIe changes that went in 5.6 I think (or 5.5?), referenced below - a new issue with thunderbold on thinkpad P73, that seems to be triggered if I have a USB-C yubikey in the port. With 5.7, my issues went away if I removed the USB key during boot, showing an interaction
2011 Mar 04
1
a simple problem
Hello R-help   I am working with large data table that have the occasional label,  a particular time point in an experiment. E.g: "Time (min)", "R1 R1", "R2 R1", "R3 R1", "R4 R1" .909, 1.117, 1.225, 1.048, 1.258 3.942, 1.113, 1.230, 1.049, 1.262 3.976, 1.105, 1.226, 1.051, 1.259 4.009, 1.114, 1.231, 1.053, 1.259 4.042, 1.107, 1.230, 1.048, 1.262
2009 Sep 09
2
ggplot2: mixing colour and linetype in geom_line
Hi all, I try to represent a multiple curve graphic where the x-axis is the temperature and the different y-axes are the different X (X22,X43,X44...) some X corresponds to the same molecule (22 and 44 are for CO2 for instance) so I use the same colour for them. I wanna mix the linetype with the colour to be able to visually see the difference between X43 and X45 The best I have done up to now
2005 Jan 19
3
importing files, columns "invade next column"
Dear R-listers: I want to import a reasonably big file into a table. (15797 x 257 columns). The file is tab delimited with NA in every empty space. I have reproduced what I have used as my read.table instruction. I have read the R-dataImportExport FAQ and still couldn't solve my problem. (I might have missed it, of course). I'm using R.2.01 in a Mac G4, 10.3.7. I can import the
2013 Apr 11
2
Read the data from a text file and reshape the data
I have a data set for different time intervals. The data has three comment lines before data for each time interval. For each time interval there are 500 data points. I want to change the dataset such that I have the following format: t1 t2 t3 ................ 0.00208 0.00417 0.00625 ................. a1 a2 a3 ...................
2006 Sep 11
1
summary(glm) for categorical variables
Dear list people Suppose we have a data.frame where variables are categorical and the response is categorical eg: my.df=NULL for(i in LETTERS[1:3]){my.df[[i]]=sample(letters, size=10)} my.df=data.frame(my.df) my.df$class=factor(rep(c("pos", "neg"), times=5)) my.glm=glm(class ~ ., data=my.df, family=binomial) summary(my.glm) .... Estimate Std. Error z
2020 Sep 07
0
pcieport 0000:00:01.0: PME: Spurious native interrupt (nvidia with nouveau and thunderbolt on thinkpad P73)
On Sun, Sep 6, 2020 at 8:52 PM Marc MERLIN <marc_nouveau at merlins.org> wrote: > > Ok, I have an update to this problem. I added the nouveau list because > I can't quite tell if the issue is: > - the PCIe changes that went in 5.6 I think (or 5.5?), referenced below > > - a new issue with thunderbold on thinkpad P73, that seems to be > triggered if I have a USB-C
2011 Apr 05
6
simple save question
Hi, When I run the survfit function, I want to get the restricted mean value and the standard error also. I found out using the "print" function to do so, as shown below, print(km.fit,print.rmean=TRUE) Call: survfit(formula = Surv(diff, status) ~ 1, type = "kaplan-meier") records n.max n.start events *rmean *se(rmean) median 200.000
2008 Jun 24
2
logistic regression
Hi everyone, I'm sorry if this turns out to be more a statistical question than one specifically about R - but would greatly appreciate your advice anyway. I've been using a logistic regression model to look at the relationship between a binary outcome (say, the odds of picking n white balls from a bag containing m balls in total) and a variety of other binary parameters:
2006 Jan 27
2
lme4_0.995-2/Matrix_0.995-4 upgrade introduces error messages (change management)
I'll address two issues. The first is today's error message and the other is change management for contributed packages on CRAN. TODAY'S ERROR MESSAGE I switched from the 0.995-1 versions of lme4 and Matrix to those referenced in the subject line this afternoon. Prior to using these packages on anything else, I applied them to code that 'worked' (provided numerical results
2003 Oct 28
5
rxfax problem
Hello, I tryed out spandsp with libtiff-3.5.7 and with Asterisk from CVS. I tryed to receive a fax on a CAPI channel. Finally I got a file with 8 byte length (/tmp/testfax.tif). How can I do next? Thanks in advance, Thomas ps: what are hardware requirements for sending/receiving faxes? -- creating pipe for PLCI=0x101 msn = 2258589 > sent ALERT_REQ PLCI = 0x101 --
2017 Jun 01
35
.ogg extension and Theora
>Paul E Wrote [snip] >Windows 2000 (although it's the same for all of them) doesn't read in >any mime-type to correctly identify a file, it just uses the extension. [snip] What if, at least for Windows, someone wrote a simple application which when associated with .ogg files and an .ogg file was opened simply read enough of the ogg stream to identify the type of content and then