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
Under specific circumstances, the following warning is thrown:
as(<numLike>, "dgeMatrix") is deprecated since Matrix 1.5-0; do as(as(as(., "dMatrix"), "generalMatrix"), "unpackedMatrix") instead
I suspect this originates here. The following code reproduces this behavior, but only once per R session:
library(survival) poissonData <- dplyr::tibble( y = 0, caseId = 1, x = TRUE, logDays = 3.4 ) cyclopsData <- Cyclops::createCyclopsData( y ~ x + strata(caseId) + offset(logDays), modelType = "cpr", data = poissonData )
Could the code be modified as suggested in the warning?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Under specific circumstances, the following warning is thrown:
I suspect this originates here. The following code reproduces this behavior, but only once per R session:
Could the code be modified as suggested in the warning?
The text was updated successfully, but these errors were encountered: