jss.bst to inst/vignette-source/ for self-contained vignette rebuilds.volatile int with std::atomic<int> for thread
synchronization in C++ code, fixing -Wdeprecated-volatile compiler warnings
with newer Clang/GCC versions.R.rsp::asis, resolving
vignette build warnings. Vignette source (.Rnw, .bib, cached .rds files)
moved to inst/vignette-source/ for optional manual rebuilding.install.packages() fallbacks from vignette source code.Deprecated the localControlCompetingRisks(), localControlNearestNeighbors(), and (hidden) doLocalControl() functions.
Added a new function in their place, LocalControl().
The behavior of the three removed functions now exists in this function.
The new “outcomeType” parameter allows users to toggle between the competingRisks and NearestNeighbors functionality.
Deprecated the plotLocalControlCIF and plotLocalControlLTD functions, replaced with s3 (plot()) functions.
Added S3 functions: print() and summary() have also been added for the LocalControl classes.
Changed the structure of the LocalControlCS and LocalControlCR objects.
Removed the summary object.
The summary is now created upon request using the summary() s3 function with the LocalControl classes.
Added a formula interface for LocalControl (beta).
LocalControl(data = lindner, modelForm = formula('cardbill ~ abcix | stent + female + acutemi'))
Is now a valid alternative to:
LocalControl( data = lindner, clusterVars = c("stent", "female", "acutemi"), treatmentColName = "abcix", outcomeColName = "cardbill")