Skip to content

Commit

Permalink
Merge pull request #125 from uriahf/rtichoke_007
Browse files Browse the repository at this point in the history
update README
  • Loading branch information
uriahf authored Nov 17, 2023
2 parents 20445f1 + 92ac89e commit 09428c2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ knitr::opts_chunk$set(

# rtichoke

For some reproducible examples please visit [rtichoke blog](https://rtichoke-blog.netlify.app/)!

<!-- badges: start -->
[![R-CMD-check](https://github.com/uriahf/rtichoke/workflows/R-CMD-check/badge.svg)](https://github.com/uriahf/rtichoke/actions)
[![CRAN status](https://www.r-pkg.org/badges/version/rtichoke)](https://CRAN.R-project.org/package=rtichoke)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![Codecov test coverage](https://codecov.io/gh/uriahf/rtichoke/branch/main/graph/badge.svg)](https://codecov.io/gh/uriahf/rtichoke?branch=main)
<!-- badges: end -->

For some reproducible examples please visit [rtichoke blog](https://rtichoke-blog.netlify.app/)!

## Installation

<!-- You can install the released version of rtichoke from [CRAN](https://CRAN.R-project.org) with: -->
Expand Down
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](h
coverage](https://codecov.io/gh/uriahf/rtichoke/branch/main/graph/badge.svg)](https://codecov.io/gh/uriahf/rtichoke?branch=main)
<!-- badges: end -->

For some reproducible examples please visit [rtichoke
blog](https://rtichoke-blog.netlify.app/)!

## Installation

<!-- You can install the released version of rtichoke from [CRAN](https://CRAN.R-project.org) with: -->
Expand All @@ -32,9 +35,9 @@ devtools::install_github("uriahf/rtichoke")

## Overview:

- `rtichoke` is designed to help analysts with exploration of
performance metrics with a binary outcome. In order to do so it uses
interactive visualization.
- `rtichoke` is designed to help analysts with exploration of
performance metrics with a binary outcome. In order to do so it uses
interactive visualization.

## Getting started

Expand All @@ -46,8 +49,8 @@ devtools::install_github("uriahf/rtichoke")

In order to use `rtichoke` you need to have

- `probs`: Estimated Probabilities as predictions.
- `reals`: Binary Outcomes.
- `probs`: Estimated Probabilities as predictions.
- `reals`: Binary Outcomes.

There are 3 different cases and for each one of them rtichoke requires a
different kind of input:
Expand All @@ -74,8 +77,10 @@ predictions and a list with one vector for the outcomes.
<!-- ``` -->

``` r
create_roc_curve(probs = list(example_dat$bad_model),
reals = list(example_dat$outcome))
create_roc_curve(
probs = list(example_dat$bad_model),
reals = list(example_dat$outcome)
)
```

### Models Comparison:
Expand Down

0 comments on commit 09428c2

Please sign in to comment.