From 5fe6fd3caf58c15dcdf8f4dfc294f0c03a4bf835 Mon Sep 17 00:00:00 2001 From: simonpcouch Date: Fri, 13 Sep 2024 14:37:32 -0400 Subject: [PATCH] remove unneeded `library()` --- README.Rmd | 1 - README.md | 9 --------- 2 files changed, 10 deletions(-) diff --git a/README.Rmd b/README.Rmd index 7f77ef6..d8a6d14 100644 --- a/README.Rmd +++ b/README.Rmd @@ -48,7 +48,6 @@ library(tailor) The `two_class_example` dataset from modeldata gives the true value of an outcome variable `truth` as well as predicted probabilities (`Class1` and `Class2`). The hard class predictions, in `predicted`, are `"Class1"` if the probability assigned to `"Class1"` is above `.5`, and `"Class2"` otherwise. ```{r} -library(dplyr) library(modeldata) head(two_class_example) diff --git a/README.md b/README.md index 373ba47..3352263 100644 --- a/README.md +++ b/README.md @@ -53,15 +53,6 @@ and `Class2`). The hard class predictions, in `predicted`, are `"Class2"` otherwise. ``` r -library(dplyr) -#> -#> Attaching package: 'dplyr' -#> The following objects are masked from 'package:stats': -#> -#> filter, lag -#> The following objects are masked from 'package:base': -#> -#> intersect, setdiff, setequal, union library(modeldata) head(two_class_example)