We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Examples are:
The text was updated successfully, but these errors were encountered:
Basic things like X,Y,Z etc are numeric and same lengths are easy to check.
For other things we need to think which invariants we wish to maintain given in input tuple (X,Y,W,D, times). For example if we require times > min(Y) and not all subjects censored then the following is always well defined https://github.com/som-shahlab/survmetabench/blob/master/r-package/survlearners/R/surv_fl_grf.R#L76
Some other things like X/T learners that split data into treated/control requires something more
Sorry, something went wrong.
The requirement on n.min{W==0} and n.min{W==1} can maybe be made a function of n.folds and N to make things like https://github.com/som-shahlab/survmetabench/blob/master/r-package/survlearners/R/surv_xl_lasso.R#L39 always well defined
even if all D==0 for a given W things like https://github.com/som-shahlab/survmetabench/blob/master/r-package/survlearners/R/surv_xl_lasso.R#L42 are still well defined, the curve is just a constant, so ideally that doesn't need to be a requirement, though it's wierd input a user should have thought about
No branches or pull requests
Examples are:
The text was updated successfully, but these errors were encountered: