Open alexhallam opened 7 years ago
Hi!
What happens if you run Pkg.test("Survival")
in the REPL instead? Does that work?
Also, are you on master and up to date?
Given that Survival defines and exports Event
, the only thing that I can imagine is that you are simultaneously using another package which also has Event
and it comes out as undefined because Julia doesn't know which one to use. Pkg.test("Survival")
should start a separate julia session so this is no problem. If you want to use several survival packages at once, you need to specify Survival.Event
when defining some variable of that type.
Also, if the name is conflicting with stuff that other people use, I should probably take Event
away altogether and only use EventWindow
.
Pkg.test("Survival")
did it! Thanks. Would you me okay if I check that KM-curves are the same as the KM-curves in R?
Yes, that sounds great. Please save the full output of what R gives you, because I plan on adding the remaining features (at least the standard error). I'd also be curious to know what terminology R uses to call these functions.
No problem. Also, the survival package in R is very object oriented. I think that the survival package here was trying to follow the same kind of terminology as R.
Hi there,
I was interested in writing a KM tests for this package, but I got the following error
Would you know anything about what the bug is?