Displaying 20 results from an estimated 3000 matches similar to: "select a subset"
2005 Oct 05
1
how do I write Rd file for this?
Dear R-devel,
I'm working on Prof. Loader's new version of locfit to try to get it
pass R CMD check. I'm almost there, but I have a problem with some Rd
files that I hope some one can help me resolve. Here's an example:
In the package there's a function called locfit.censor(). This function
can be used in a few different ways:
locfit.censor(x, y, cens, ...)
2007 Apr 29
2
how to code the censor variable for "survfit"
Dear r-helpers,
This is my first time to run survival analysis. Currently, I have a
data set which contains two variables, the variable of time to event
(or time to censoring) and the variable of censor indicator. For the
indicator variable, it was coded as 0 and 1. 0 represents right
censor, 1 means event of interest. Now I try to use "survfit" in the
package of "survival". I
2008 Jan 28
1
KM estimation for interval censoring?
Does anybody know if there is such a function to estimate the distribution
for interval censored data?
survfit doesn't work for this type of data as I tried various references.
[[alternative HTML version deleted]]
2009 Mar 08
2
survreg help in R
Hey all,
I am trying to use the survreg function in R to estimate the mean and
standard deviation to come up with the MLE of alpha and lambda for the
weibull distribution. I am doing the following:
times<-c(10,13,18,19,23,30,36,38,54,56,59,75,93,97,104,107,107,107)
censor<-c(1,0,0,1,0,1,1,0,0,0,1,1,1,1,0,1,0,0)
survreg(Surv(times,censor),dist='weibull')
and I get the following
2011 Aug 31
1
formatting a 6 million row data set; creating a censoring variable
List,
Consider the following data.
gender mygroup id
1 F A 1
2 F B 2
3 F B 2
4 F B 2
5 F C 2
6 F C 2
7 F C 2
8 F D 2
9 F D 2
10 F D 2
11 F D 2
12 F D 2
13 F D 2
14 M A 3
15 M A 3
16 M A 3
17
2009 Nov 19
1
How do I specify a partially completed survival analysis model?
Hello,
I just started using R to do epidemiologic simulation research using the Cox
proportional hazard model. I have 2 covariates X1 and X2 which I want to
model as h(t,X)=h0(t)*exp(b1*X1+b2*X2). I assume independence of X from t.
After I simulate Time and Censor data vectors denoting the censoring time
and status respectively, I can call the following function to fit the data
into the Cox
2017 Oct 11
3
dput(treat)
I got advice here that I didn't understand! Can I ask to explain me the meaning of this procedure: first get the structure, and then assign it back. For what? Thanks!? (Great thanks to Moderator/Admin!)
You should learn to post in plain text and use dput to present your data structures. At your console do this
dput(treat)
# and this will appear. Copy it to your plain-text message:
2006 Jul 08
1
another tcl/tk query
Greetings:
I wish to use a tcl/tk widget to ask for user-selected parameter values. My
widget works ? it asks for and returns to my workspace the stuff I need.
Here is a snippet of my code:
###############################
OnOK <- function()
{
LOG.X <<- as.logical(as.character(tclvalue(log.X.buttonValue)))
LOG.Y <<- as.logical(as.character(tclvalue(log.Y.buttonValue)))
2010 Feb 18
2
Extract p-value from aftreg object
Dear all,
does anyone know how I can extract specific p-values for covariates
from an aftreg object? After fitting a model with aftreg I can find
all different variables by using str(), but there's no place where
p-values are kept. The odd thing is that print() displays them
correctly.
EXAMPLE:
> testdata
start stop censor groupvar var1 var2
1 0 1 0
2005 Jun 09
2
Weibull survival modeling with covariate
I was wondering if someone familiar
with survival analysis can help me with
the following.
I would like to fit a Weibull curve,
that may be dependent on a covariate,
my dataframe "labdata" that has the
fields "cov", "time", and "censor". Do
I do the following?
wieb<-survreg(Surv(labdata$time,
labadata$censor)~labdata$cov,
2009 Jul 22
1
kaplan-meier error
Hi all,
I am getting an error in my code and I don't know what the problem is.
I am using R 2.9 on ubuntu. my code is as follows:
## Libraries ##
library(survival)
library(foreign)
## reading data ##
data<-read.dta("http://psfaculty.ucdavis.edu/bsjjones/cabinet.dta")
head(data)
attach(data)
fit1<-survfit(Surv(durat,censor))
and I get the following error
>
2010 Feb 05
3
AFTREG with ID argument
Dear all,
I have some trouble using the "id"-argument with aftreg (accelerated
failure time regression analysis from the eha library).
As far as I understand it, the id argument is used to group
individuals together if there are time-varying covariates and the
data is arranged in counting process style.
Unfortunately, i cannot figure out how to use the "id"-argument. The
2011 Jun 03
1
Surv(): Stop time must be > start time, NA created
I am writing to get a better handle on a warning I am getting from a coxph analysis I am doing.
I am analysing age of onset of dementia *after* the onset of parkinson disease. My data looks like:
age.park age.dem age.death censor x1 x2 x3 x4
1 76 87 88 0 16 33 E3 E3
2 75 84 84 0 33 36 E3 E3
3 77 81 81 1 NA NA
2002 May 02
2
plot survival points
Hi all,
I have a little problem.
I make an weibull survival analysis using the survival package. It,s OK, them
I have the functions. I plot this funcions with curve(). I want to make a
plot with the real survival points (proportion of alive x time) and them add
the curves to points. I have the time to dead, the censor data and my
trataments. To analysis the model is:
model1 <-
2017 Oct 07
2
Adjusted survival curves
For adjusted survival curves I took the sample code from here:
https://rpubs.com/daspringate/survival
and adapted for my date, but ... have a QUESTION.
library(survival)
library(survminer)
df<-read.csv("base.csv", header = TRUE, sep = ";")
head(df)
ID start stop censor sex age stage treatment
1 1 0 66 0 2 1 3 1
2 2 0 18 0 1 2 4 2
3 3 0 43 1 2 3 3 1
4 4 0 47 1 2 3 NA 2
5 5
2008 Apr 29
2
Help on extract paramters from fitted models
Hi, I have a question about how to extract paramters from a fitted model. I
can extract coefficients and std, but from some other statistics, I dont
know how to extract. Can anyone help?
Here it is an example:
> coxout<-coxph(Surv(t,t.censor)~x)
> coxout
Call:
coxph(formula = Surv(t, t.censor) ~ x)
coef exp(coef) se(coef) z p
x 0.349 1.42 0.257 1.36 0.17
Likelihood
2008 Apr 21
2
How to do survival analysis with time-related IVs?
Hello folks,
I am wondering how to do survival analysis with time-related IVs in R. For
example,
> > If we have time-related variables, such as the Overall Condition of
1990, 1991 etc., how can we include these variables in coxph model?
> >
> > If we can not use coxph model, do we need to rearrange the dataset to
make it something like:
> > ID time age
2013 Jun 25
1
censor=FALSE and id options in survfit.coxph
Terry,
I recently noticed the censor argument of survfit. For some analyses it greatly reduces the size of the resulting object, which is a nice feature.
However, when combined with the id argument, only 1 prediction is made. Predictions can be made individually but I'd prefer to do them all at once if that change can be made.
Chris
#####################################
# CODE
# create
2017 Oct 07
2
Adjusted survival curves
For adjusted survival curves I took the sample code from here:
https://rpubs.com/daspringate/survival
and adapted for my date, but got error.
I would like to understand what is my mistake. Thanks!
#ADAPTATION FOR MY DATA
library(survival)
library(survminer)
df<-read.csv("F:/R/data/base.csv", header = TRUE, sep = ";")
head(df)
ID start stop censor sex age stage treatment
1
2010 Feb 19
1
eha aftreg performance
G?ran, thanks for the update, I'm just about to install it!
Just wanted to drop you a short line about performance (as you once
requested):
aftreg takes ages on my windows machine to calculate a small set of
7 observations which are not even grouped together by "id". To be a
bit more precise, it takes 2:40 mins on my Intel T9300 Core2 Duo @
2.5 GHz. Bigger samples with about 700