Re: [R] Data Package Query

2013-07-05 Thread Yasmine Refai
Hello, When I run the below syntax: Trial-read.table(Trial.txt,header=TRUE) Trial save.image(file=Trial.RData) load(Trial.RData) fit-logistf(data=Trial, y~x1+x2) summary(fit) AIC(fit) I am getting the below error: AIC(fit) Error in UseMethod(logLik) : no applicable method for 'logLik'

Re: [R] Data Package Query

2013-06-29 Thread Yasmine Refai
hello, please advice what is wrong at the below syntax: Trial-read.table(Trial.txt,header=TRUE) Trial save.image(file=Trial.RData) data(Trial) fit-logistf(data=Trial, y~x1+x2) and here is the error I get: Warning message: In data(Trial) : data set ‘Trial’ not found regards, yasmine

[R] Data Package Query

2013-06-27 Thread Yasmine Refai
Hello, When i type in the below syntax: Data (name of the data set) I get an error message specifying that the data package is not found. Please note that i installed all packages having the word data included in them and loaded all these packages. Please advice. Regards!