Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tidymodels/censored
Parsnip wrappers for survival models
https://github.com/tidymodels/censored
parsnip tidymodels
Last synced: 3 days ago
JSON representation
Parsnip wrappers for survival models
- Host: GitHub
- URL: https://github.com/tidymodels/censored
- Owner: tidymodels
- License: other
- Created: 2020-07-31T04:58:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T13:01:31.000Z (29 days ago)
- Last Synced: 2024-10-31T22:03:14.635Z (12 days ago)
- Topics: parsnip, tidymodels
- Language: R
- Homepage: https://censored.tidymodels.org/
- Size: 10.2 MB
- Stars: 123
- Watchers: 9
- Forks: 12
- Open Issues: 24
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - tidymodels/censored - Parsnip wrappers for survival models (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![R-CMD-check](https://github.com/tidymodels/censored/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/tidymodels/censored/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/tidymodels/censored/branch/main/graph/badge.svg)](https://app.codecov.io/gh/tidymodels/censored?branch=main)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![R-CMD-check-hard](https://github.com/tidymodels/censored/actions/workflows/R-CMD-check-hard.yaml/badge.svg)](https://github.com/tidymodels/censored/actions/workflows/R-CMD-check-hard.yaml)`censored` is a [parsnip](https://parsnip.tidymodels.org) extension package which provides engines for various models for censored regression and survival analysis.
## Installation
You can install the released version of censored from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("censored")
```And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pak("tidymodels/censored")
```## Available models, engines, and prediction types
censored provides engines for the models in the following table. For examples, please see [Fitting and Predicting with censored](https://censored.tidymodels.org/articles/articles/examples.html).
The time to event can be predicted with `type = "time"`, the
survival probability with `type = "survival"`, the linear predictor with `type = "linear_pred"`, the quantiles of the event time distribution with `type = "quantile"`, and the hazard with `type = "hazard"`.```{r, echo=FALSE, message=FALSE}
library(censored)
library(dplyr)
library(purrr)
library(tidyr)yep <- cli::symbol$tick
nope <- cli::symbol$crossmod_names <- get_from_env("models")
model_info <-
map_dfr(mod_names, ~ get_from_env(paste0(.x, "_predict")) %>% mutate(model = .x))model_info %>%
filter(mode == "censored regression") %>%
select(model, engine, mode, type) %>%
pivot_wider(
names_from = type,
values_from = mode,
values_fill = nope,
values_fn = function(x) yep
) %>%
knitr::kable()
```## Contributing
This project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
- For questions and discussions about tidymodels packages, modeling, and machine learning, please [post on Posit Community](https://forum.posit.co/new-topic?category_id=15&tags=tidymodels,question).
- If you think you have encountered a bug, please [submit an issue](https://github.com/tidymodels/censored/issues).
- Either way, learn how to create and share a [reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html) (a minimal, reproducible example), to clearly communicate about your code.
- Check out further details on [contributing guidelines for tidymodels packages](https://www.tidymodels.org/contribute/) and [how to get help](https://www.tidymodels.org/help/).