diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index ed7650c..3679e0e 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -35,6 +35,14 @@ jobs: extra-packages: any::pkgdown, local::. needs: website + - name: Install DrWhy theme + run: | + install.packages("remotes") + remotes::install_deps(dependencies = TRUE) + install.packages("future.apply") + remotes::install_github("ModelOriented/DrWhyTemplate") + shell: Rscript {0} + - name: Build site run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) shell: Rscript {0} diff --git a/DESCRIPTION b/DESCRIPTION index b20a611..cd4ef1d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,12 @@ Package: hstats Title: Interaction Statistics Version: 1.2.0 -Authors@R: - person("Michael", "Mayer", , "mayermichael79@gmail.com", role = c("aut", "cre")) +Authors@R: c( + person("Michael", "Mayer", , "mayermichael79@gmail.com", role = c("aut", "cre"), + comment = c(ORCID = "0000-0002-6148-5756")), + person("Przemyslaw", "Biecek", , "przemyslaw.biecek@gmail.com", role = "ctb", + comment = c(ORCID = "0000-0001-8423-1823")) + ) Description: Fast, model-agnostic implementation of different H-statistics introduced by Jerome H. Friedman and Bogdan E. Popescu (2008) . These statistics quantify interaction @@ -18,7 +22,7 @@ Depends: R (>= 3.2.0) Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 Imports: ggplot2, stats, @@ -26,5 +30,5 @@ Imports: Suggests: testthat (>= 3.0.0) Config/testthat/edition: 3 -URL: https://github.com/mayer79/hstats, https://mayer79.github.io/hstats/ -BugReports: https://github.com/mayer79/hstats/issues +URL: https://github.com/ModelOriented/hstats, https://mayer79.github.io/hstats +BugReports: https://github.com/ModelOriented/hstats/issues diff --git a/NEWS.md b/NEWS.md index 7465a11..0c5bcdb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # hstats 1.2.0 +## New home + +- My brand new home: https://github.com/ModelOriented/hstats + ## Major changes - Factor-valued predictions are no longer possible. diff --git a/README.md b/README.md index 0da5a4a..a6ff0ae 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# hstats +# hstats [![CRAN status](http://www.r-pkg.org/badges/version/hstats)](https://cran.r-project.org/package=hstats) -[![R-CMD-check](https://github.com/mayer79/hstats/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mayer79/hstats/actions) -[![Codecov test coverage](https://codecov.io/gh/mayer79/hstats/graph/badge.svg)](https://app.codecov.io/gh/mayer79/hstats?branch=main) +[![R-CMD-check](https://github.com/ModelOriented/hstats/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ModelOriented/hstats/actions) +[![Codecov test coverage](https://codecov.io/gh/ModelOriented/hstats/graph/badge.svg)](https://app.codecov.io/gh/ModelOriented/hstats?branch=main) [![](https://cranlogs.r-pkg.org/badges/hstats)](https://cran.r-project.org/package=hstats) [![](https://cranlogs.r-pkg.org/badges/grand-total/hstats?color=orange)](https://cran.r-project.org/package=hstats) @@ -52,7 +52,7 @@ The core functions `hstats()`, `partial_dep()`, `ice()`, `perm_importance()`, an install.packages("hstats") # From Github -devtools::install_github("mayer79/hstats") +devtools::install_github("ModelOriented/hstats") ``` ## Usage diff --git a/packaging.R b/packaging.R index 5359f72..d3fd37a 100644 --- a/packaging.R +++ b/packaging.R @@ -26,7 +26,9 @@ use_description( or individual conditional expectation plots. 'DALEX' explainers, meta learners ('mlr3', 'tidymodels', 'caret') and most other models work out-of-the-box.", `Authors@R` = - "person('Michael', family='Mayer', role=c('aut', 'cre'), email='mayermichael79@gmail.com')", + "c(person('Michael', family='Mayer', role=c('aut', 'cre'), email='mayermichael79@gmail.com', comment=c(ORCID='0000-0002-6148-5756')), + person('Przemyslaw', family='Biecek', email='przemyslaw.biecek@gmail.com', role='ctb', comment=c(ORCID='0000-0001-8423-1823')) + )", Depends = "R (>= 3.2.0)", LazyData = NULL ), diff --git a/pkgdown/_pkgdown.yml b/pkgdown/_pkgdown.yml new file mode 100644 index 0000000..3cf908b --- /dev/null +++ b/pkgdown/_pkgdown.yml @@ -0,0 +1,6 @@ +template: + package: DrWhyTemplate + default_assets: false + params: + ganalytics: UA-5650686-14 + noindex: true