Displaying 1 result from an estimated 1 matches for "logregtest".
2006 Jun 06
2
Error in inherits(x, "data.frame") : object "Dataset" not found
I have been trying to run a logistic regression using a number of studies. 
Below is the syntax, error message & data.
Any advice regarding what I am doing wrong or solutions are appreciated,
regards
Bob Green
 > logreg <- read.csv("c:\\logregtest.csv",header=T)
 > attach(logreg)
 > names(logreg)
  [1] "medyear"   "where"     "who"       "dxbroad"   "firstep"   "standard"
  [7] "age"       "sex"       "successes" "failures"
 > mo...