Skip to content

Commit 048bb32

Browse files
committed
Deploying to gh-pages from @ fe5c0d1 🚀
1 parent 078872e commit 048bb32

21 files changed

Lines changed: 28 additions & 28 deletions

articles/faster-pdp.html

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/faster-pdp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ system.time( # classic: one predict() call per grid point
3232
pd1 <- partial(boston.rf, pred.var = "lstat", train = boston)
3333
)
3434
#> user system elapsed
35-
#> 0.446 0.015 0.461
35+
#> 0.416 0.009 0.425
3636
system.time( # batched: score up to one million rows per predict() call
3737
pd2 <- partial(boston.rf, pred.var = "lstat", train = boston,
3838
batch.size = 1e6)
3939
)
4040
#> user system elapsed
41-
#> 0.185 0.000 0.184
41+
#> 0.177 0.001 0.178
4242
identical(pd1, pd2)
4343
#> [1] TRUE
4444
```
@@ -106,13 +106,13 @@ system.time(
106106
train = boston) # recursive = TRUE is the default
107107
)
108108
#> user system elapsed
109-
#> 0.002 0.000 0.002
109+
#> 0.001 0.000 0.002
110110
system.time(
111111
pd.brute <- partial(boston.gbm, pred.var = "lstat", n.trees = 500,
112112
recursive = FALSE, train = boston, batch.size = 1e6)
113113
)
114114
#> user system elapsed
115-
#> 0.282 0.002 0.284
115+
#> 0.289 0.002 0.290
116116
```
117117

118118
Overlaying the results shows that the two methods produce nearly the

articles/ice-curves.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/pdp.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

authors.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

authors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## Citation
99

1010
Source:
11-
[`inst/CITATION`](https://github.com/bgreenwell/pdp/blob/v0.9.1/inst/CITATION)
11+
[`inst/CITATION`](https://github.com/bgreenwell/pdp/blob/main/inst/CITATION)
1212

1313
Brandon M. Greenwell (2017). pdp: An R Package for Constructing Partial
1414
Dependence Plots. The R Journal, 9(1), 421--436. URL

index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ with any graphics package.
7878
[doi:10.32614/RJ-2017-016](https://doi.org/10.32614/RJ-2017-016)
7979
(`citation("pdp")`)
8080
- For variable importance (which pairs naturally with feature effects),
81-
see [vip](https://koalaverse.github.io/vip/)
81+
see [vip](https://bgreenwell.github.io/vip/)
8282

8383
## Development
8484

llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ with any graphics package.
7878
[doi:10.32614/RJ-2017-016](https://doi.org/10.32614/RJ-2017-016)
7979
(`citation("pdp")`)
8080
- For variable importance (which pairs naturally with feature effects),
81-
see [vip](https://koalaverse.github.io/vip/)
81+
see [vip](https://bgreenwell.github.io/vip/)
8282

8383
## Development
8484

news/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)