Displaying 4 results from an estimated 4 matches for "dataal".
Did you mean:
dataa
2006 Sep 13
2
recursive methods for concatenating sets of files
...("t (72).txt", quote="", as.is=TRUE)
data73 <-read.delim("t (73).txt", quote="", as.is=TRUE)
data74 <-read.delim("t (74).txt", quote="", as.is=TRUE)
data75 <-read.delim("t (75).txt", quote="", as.is=TRUE)
dataALL
<-cbind(data0,data1,data2,data3,data4,data5,data6,data7,data8,data9,data10,data11,data12,data13,data14,data15,data16,data17,data18,data19,data20,data21,data22,data23,data24,data25,data26,data27,data28,data29,data20,data31,data32,data33,data34,data35,data36,data37,data38,data39,data40,data41,dat...
2010 Dec 14
1
survfit
...the following but it fails
miserably. I looked at some old posts but could not figure out the solution.
Here's what I did where for one single patient, the answer is "NULL". Could
anyone help me with the problem?
R.app GUI 1.34 (5589 Leopard build 32-bit)
> library(glmpath)
*> dataall <- list(x=lung.data$x[1:130,], time=lung.data$time[1:130],
status=lung.data$status[1:130])*
*
> fit.a <- coxpath(dataall)
> testall <- list(x=lung.data$x[131:137,], time=lung.data$time[131:137],
status=lung.data$status[131:137])
> testpred <- predict(fit.a, testall, s=0.99,...
2010 Dec 14
0
Urgent help requested using survfit(individual=T):
...the following but it fails
miserably. I looked at some old posts but could not figure out the solution.
Here's what I did where for one single patient, the answer is "NULL". Could
anyone help me with the problem?
R.app GUI 1.34 (5589 Leopard build 32-bit)
> library(glmpath)
*> dataall <- list(x=lung.data$x[1:130,], time=lung.data$time[1:130],
status=lung.data$status[1:130])*
*
> fit.a <- coxpath(dataall)
> testall <- list(x=lung.data$x[131:137,], time=lung.data$time[131:137],
status=lung.data$status[131:137])
> testpred <- predict(fit.a, testall, s=0.99,...
2008 Aug 20
1
read.csv : double quoted numbers
...ied and problems with them:
1) I tried scan and pipe but getting following error message; that is
how do I replace all double quotes with nothing. I tired enclosing sed
command in single quotes but that does not help.
(Though the sed command works from shell)
scan(pipe("sed -e s/\"//g DataAll.txt"), sep="\t")
sh: Syntax error: Unterminated quoted string
2) On mailing list on solution I found was setAs() described here
http://www.nabble.com/Re%3A--R--read.table()-and-scientific-notation-p6734890.html
3) Other than using as.is=TRUE and then doing as.numeric for numeric
c...