diff --git a/DESCRIPTION b/DESCRIPTION index 5215d6dc5..268c70268 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -6,8 +6,8 @@ Authors@R: c( person("Max", "Kuhn", , "max@rstudio.com", c("aut", "cre")), person("RStudio", role = "cph")) Maintainer: Max Kuhn -URL: https://topepo.github.io/parsnip -BugReports: https://github.com/topepo/parsnip/issues +URL: https://tidymodels.github.io/parsnip +BugReports: https://github.com/tidymodels/parsnip/issues License: GPL-2 Encoding: UTF-8 LazyData: true diff --git a/README.md b/README.md index 4905606f3..8a8d7d8a8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![Travis build status](https://travis-ci.org/topepo/parsnip.svg?branch=master)](https://travis-ci.org/topepo/parsnip) -[![Coverage status](https://codecov.io/gh/topepo/parsnip/branch/master/graph/badge.svg)](https://codecov.io/github/topepo/parsnip?branch=master) +[![Travis build status](https://travis-ci.org/tidymodels/parsnip.svg?branch=master)](https://travis-ci.org/tidymodels/parsnip) +[![Coverage status](https://codecov.io/gh/tidymodels/parsnip/branch/master/graph/badge.svg)](https://codecov.io/github/tidymodels/parsnip?branch=master) ![](https://img.shields.io/badge/lifecycle-experimental-orange.svg) @@ -44,5 +44,5 @@ To install it, use: ```r require(devtools) -install_github("topepo/parsnip") +install_github("tidymodels/parsnip") ``` diff --git a/docs/articles/articles/Classification.html b/docs/articles/articles/Classification.html index 6d3e67216..9810d6296 100644 --- a/docs/articles/articles/Classification.html +++ b/docs/articles/articles/Classification.html @@ -175,17 +175,17 @@

Classification Example

#> # A tibble: 1 x 2 #> .metric .estimate #> <chr> <dbl> -#> 1 roc_auc 0.822 +#> 1 roc_auc 0.824 test_results %>% accuracy(truth = Status, estimate = `nnet class`) #> # A tibble: 1 x 2 #> .metric .estimate #> <chr> <dbl> -#> 1 accuracy 0.803 +#> 1 accuracy 0.809 test_results %>% conf_mat(truth = Status, estimate = `nnet class`) #> Truth #> Prediction bad good -#> bad 176 82 -#> good 137 718 +#> bad 184 84 +#> good 129 716