Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
R package for **partial dependence plots (PDPs)** and **individual conditional
expectation (ICE) curves** from fitted ML models. Exports: `partial()` (the
workhorse), `plot()` methods (tinyplot/base graphics, default engine),
`plotPartial()` (lattice), `exemplar()`, and the deprecated `topPredictors()`.
`plotPartial()` (lattice), and `exemplar()`.

## Branches & releases

Expand All @@ -12,8 +12,10 @@ workhorse), `plot()` methods (tinyplot/base graphics, default engine),
- **`main`**: stable releases only, tagged `vX.Y.Z`. r-universe
(pinned to main in bgreenwell/bgreenwell.r-universe.dev) and the pkgdown
site both build from main — never push experimental work there.
- Release: merge devel → main, drop the `.9000` suffix and dev NEWS heading,
tag, push; then bump devel to the next `.9000`.
- Release: merge devel → main (`--no-ff`), drop the `.9000` suffix and dev
NEWS heading, tag, push, `gh release create`; then **merge main back into
devel** (else the release merge commit leaves devel "behind" main) and bump
devel to the next `.9000`.
- Shared fixes that main needs immediately (CI, README): commit to **main
first, then merge main → devel**. Never cherry-pick devel → main — it
duplicates commits and makes main appear "ahead" of devel.
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pdp
Type: Package
Title: Partial Dependence Plots
Version: 0.9.1
Version: 0.9.1.9000
Authors@R: person(c("Brandon", "M."), family = "Greenwell",
email = "greenwell.brandon@gmail.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-8120-0084"))
Expand Down
3 changes: 0 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,9 @@ S3method(plot,partial)
S3method(plotPartial,cice)
S3method(plotPartial,ice)
S3method(plotPartial,partial)
S3method(topPredictors,default)
S3method(topPredictors,train)
export(exemplar)
export(partial)
export(plotPartial)
export(topPredictors)
export(trellis.last.object)
importFrom(lattice,dotplot)
importFrom(lattice,equal.count)
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# pdp (development version)

## Breaking changes

* Removed `topPredictors()`, which had been deprecated since pdp 0.8.0; use
the [vip](https://bgreenwell.github.io/vip/) package to identify important
predictors instead.


# pdp 0.9.1

## Deprecations
Expand Down
88 changes: 0 additions & 88 deletions R/topPredictors.R

This file was deleted.

3 changes: 0 additions & 3 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,3 @@ reference:
contents:
- boston
- pima
- title: Deprecated
contents:
- topPredictors
64 changes: 0 additions & 64 deletions man/topPredictors.Rd

This file was deleted.

Loading