Displaying 20 results from an estimated 2000 matches similar to: "Data Censoring and Normality Tests"
2007 Dec 08
0
help for segmented package
Hi,
I am trying to find m breakpoints of a linear regression model. I
used the segmented package. It works fine for small number of
predicators and breakpoints.(3 r.v. 3 points). However, my model has
14 variables it even would not work even for just one breakpoints!.
The error message is always estimated breakpoints are out of range.
Since my problem is time related problem. So I
2004 Aug 21
3
Puzzled at lm() and time-series
I tried toy problems and there doesn't seem to be a basic problem
between lm() and ts objects:
X = data.frame(x=c(1,2,7,9), y=c(7,2,3,1))
lm(y ~ x, X)
X <- lapply(X, function(x) ts(x, frequency=12, start=c(1994,7)))
lm(y ~ x, X)
and this works fine - whether you do an lm() before or after making ts
objects, it's okay.
But I have a situation where things aren't okay.
2006 Nov 21
4
means over factors in mlm terms
I'm trying to write a function to find the means over factors of the
responses in a mlm (something I would do easily in SAS with PROC SUMMARY).
The not-working stub of a function to do what I want is below,
and my problem is that I don't know how to call aggregate (or
some other function) in the context of terms in a linear model
extracted from a lm/mlm object.
means.mlm <-
2003 Dec 11
4
Probelm with read.table
Hi All,
I have the following text file (mytextfile.txt)
738307 527178 714456 557955
#N/A 17.42 6.22 4.73
#N/A 17.3 6.23 4.75
#N/A 17.29 6.17 4.7
#N/A 17.07 6.12 4.6
#N/A 17.27 6.19 4.7
#N/A 17.72 6.4 4.78
#N/A 17.12 6.19 4.75
#N/A 17.07 6.15 4.65
#N/A 17.03 6.07 4.64
#N/A 17.38 6.13 4.7
#N/A 17.38 6.13 4.7
#N/A 17.38 6.13 4.7
#N/A 17.38 6.13 4.7
#N/A
2005 Jul 20
4
poisson fit for histogram
I haven't been an R lister for a bit, but I hope to enlist someone's
help here. I think this is a simple question, so I hope the answer
is not much trouble. Can you please respond directly to this email
address in addition to the list (if responding to the list is
warranted)?
I have a histogram and I want to see if the data fit a Poisson
distribution. How do I do this? It is
2012 Jun 05
2
[LLVMdev] [PATCH] add x32 psABI support
If you are interesting to play around X32, you may refer to http://sourceware.org/glibc/wiki/x32 to bootstrap a local environment on Linux.
Yours
- Michael
-----Original Message-----
From: cfe-commits-bounces at cs.uiuc.edu [mailto:cfe-commits-bounces at cs.uiuc.edu] On Behalf Of Liao, Michael
Sent: Monday, June 04, 2012 5:09 PM
To: llvm-commits at cs.uiuc.edu; cfe-commits at cs.uiuc.edu
2010 Nov 02
2
multi-level cox ph with time-dependent covariates
Dear all,
I would like to know if it is possible to fit in R a Cox ph model with
time-dependent covariates and to account for hierarchical effects at
the same time. Additionally, I'd like also to know if it would be
possible to perform any feature selection on this model fit.
I have a data set that is composed by multiple marker measurements
(and hundreds of covariates) at different time
2010 May 26
3
Peak Over Threshold values
Dear List
I hope you can help me: I?ve got a dataframe (df) within which I am looking
for Peak Over Threshold values as well as the length of the events. An event
starts when walevel equals 5.8 and it should end when walevel equals the
lower threshold value (5.35).
I tried ?clusters (?)? from ?evd package?, and varied r (see example) but it
did not work for all events (again
2012 Oct 28
6
Having some Trouble Data Structures
Hi All,
I'm trying to run a simulation of host-pathogen evolution based around individuals.
What I need to have is a dataframe or table of some description - describing all the individuals of a pathogen population (so far I've implemented this as a matrix):
ID No_of_Effectors Effectors (Sequences)
[1,] 0001 3 ## 3
2007 Jun 29
4
Dominant eigenvector displayed as third (Marco Visser)
Dear R users & Experts,
This is just a curiousity, I was wondering why the dominant eigenvetor and eigenvalue
of the following matrix is given as the third. I guess this could complicate automatic selection
procedures.
0 0 0 0 0 5
1 0 0 0 0 0
0 1 0 0 0 0
0 0 1 0 0 0
0 0 0 1 0 0
0 0 0 0 1 0
Please
2012 Nov 08
1
Extract cell of many values from dataframe cells and sample from them.
Hi,
First my apologies for a non-working piece of code in a previous submission, I have corrected this error.
I'm doing is individual based modelling of a pathogen and it's host. The way I've thought of doing this is with two dataframes, one of the pathogen and it's genes and effector genes, and one of the host and it's resistance genes. During the simulation, these things
2004 Aug 25
1
brlr function
Hi,
I'm trying the brlr function in a penalized logistic regression function.
However, I am not sure why I am encountering errors. I hope to seek
your advice here. (output below)
Thank you! Your help is truly appreciated.
Min-Han
#No error here, the glm seems to work fine
>
2013 Apr 09
4
Converting matrix to data frame without losing an assigned dimname
Hello All,
Would like to be able to convert a matrix to a dataframe without losing an assigned dimname.
Here is an example that should illustrate what I'm talking about.
tableData <- state.x77[c(7, 38, 20, 46), c(7, 1, 8)]
names(dimnames(tableData)) <- c("State", "")
tableData
State Frost Population Area
Connecticut 139 3100 4862
2002 Dec 18
1
samba to samba via LDAP
Hi all,
I have lots of samba servers and want them to all authenticate against a
single password file which will be a LDAP database.
Where I want to be:
Login to a domain called "FROST" that passes the username:passwd to a domain
called "ACR" which checks LDAP.
Where I'm at:
I can login (from a W2K machine) to a test server called LIBIT which uses LDAP
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 Feb 28
3
error on installation
My system: Suse 9.3 Prof.
I downloaded Wine: wine-0.9.7-SuSELinux100.i586.rpm.
I get the message libstdc++.so.6 not available.
What can I do?
Please note: I am not a linux expert. What little I know,
I acquired by myself.
Regards,
suren
--
The woods are lovely dark and deep
But I have promises to keep
And miles to go before I sleep
And miles to go before I sleep (Robert Frost)
2004 Dec 13
1
UPGMA
R-help folks:
Thanks in the past for your help. I have another question that I hope
has a simple answer. I have searched the R home pages and the R-help
archives with no hits. How can I cluster data in R using UPGMA?
I am not subscribed to the list (can't keep up with all the traffic!),
so I would appreciate it if you could email directly to me (or to the
list and to me).
Thanks,
Tom
2007 Apr 21
7
Database Modeller (Mac)
Can anyone recommend a database modelling tool for the Mac? I''m
building a new Rails app and want an interface to draw out the
database''s entity relationship diagram, setup foreign keys and then
output DDL at the end to MySQL.
I''ve previously used DBDesigner, CASE Studio and some pricier
enterprise software on Windows, but can''t find anything suitable for
my
2012 Nov 07
3
HELP! Excel and R give me totally different regression results using the exact same data
Hallo,
I am totally confused why Excel and R give me totally different regression
results for the data below. If you know the solution, please enlighten me.
In Excel I used LINEST() and Data>Data Analysis>Regression and both
(fortunately) gave the same result.
The coefficients were:
/b0=1.16, b1=0.957, b2=0.024, R2=0.0027, adjusted R2=-0.017/
In R I used
2002 Feb 20
2
Code for bivariate Poisson regression?
Dear RHelpers,
Does anyone know of any R code to perform bivariate Poisson regression
(including random effects)?
Best wishes
Simon
Simon D.W. Frost, M.A., D.Phil.
Department of Pathology
University of California, San Diego
Antiviral Research Center
(Formerly: UCSD Treatment Center)
150 W. Washington St., Suite 100
San Diego, CA 92103
USA
Tel: +1 619 543 8080 x275
Fax: +1 619 298 0177
Email: