Displaying 2 results from an estimated 2 matches for "survivaldata".
2020 Oct 24
3
Issue with data() function
...a(aidssi, package="mstate").? But this does not work for survival.? (The larger
survival data sets that are in separate .rda files can be found.)
?c. What does work is survival::lung.? Might it be useful to add a comment to data.Rd to
this effect?
3. Creating a separate package 'survivaldata' is of course one route, and is suggested in
the "Writing R Extensions" guide.? But this is not possible since survival is a
recommended package: it can't load any non-recommended package for it's tests or
vignettes.? Longer term, perhaps there is way around this constraint...
2020 Oct 24
0
Issue with data() function
...survival):
data(lung, package="survival")
I think if the lung dataset is now being included in cancer.rda, you'd need
data(cancer, package="survival")
or equivalent to load it (and the rest of the datasets there).
>
>
> 3. Creating a separate package 'survivaldata' is of course one route, and is suggested in
> the "Writing R Extensions" guide.? But this is not possible since survival is a
> recommended package: it can't load any non-recommended package for it's tests or
> vignettes.? Longer term, perhaps there is way around thi...