Skip to content

Commit bab00f8

Browse files
author
hbaniecki
committed
fix links #65
1 parent 58eabcc commit bab00f8

6 files changed

+12
-12
lines changed

R/modelStudio.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
#' @param eda Compute EDA plots. Default is \code{TRUE}.
2020
#' @param show_info Verbose progress on the console. Default is \code{TRUE}.
2121
#' @param parallel Speed up the computation using \code{parallelMap::parallelMap()}.
22-
#' See \href{https://modeloriented.github.io/modelStudio/articles/vignette_modelStudio.html#parallel-computation}{\bold{vignette}}.
22+
#' See \href{https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html#parallel-computation}{\bold{vignette}}.
2323
#' This might interfere with showing progress using \code{show_info}.
2424
#' @param options Customize \code{modelStudio}. See \code{\link{modelStudioOptions}} and
25-
#' \href{https://modeloriented.github.io/modelStudio/articles/vignette_modelStudio.html#plot-options}{\bold{vignette}}.
25+
#' \href{https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html#plot-options}{\bold{vignette}}.
2626
#' @param viewer Default is \code{external} to display in an external RStudio window.
2727
#' Use \code{browser} to display in an external browser or
2828
#' \code{internal} to use the RStudio internal viewer pane for output.
@@ -46,7 +46,7 @@
4646
#'
4747
#' @seealso
4848
#' Vignettes: \href{https://modeloriented.github.io/modelStudio/articles/ms-r-python-examples.html}{\bold{modelStudio - R & Python examples}}
49-
#' and \href{(https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html}{\bold{modelStudio - perks and features}}
49+
#' and \href{https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html}{\bold{modelStudio - perks and features}}
5050
#'
5151
#' @examples
5252
#' library("DALEX")

R/modelStudioOptions.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#'
5757
#' @seealso
5858
#' Vignettes: \href{https://modeloriented.github.io/modelStudio/articles/ms-r-python-examples.html}{\bold{modelStudio - R & Python examples}}
59-
#' and \href{(https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html}{\bold{modelStudio - perks and features}}
59+
#' and \href{https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html}{\bold{modelStudio - perks and features}}
6060
#'
6161
#' @examples
6262
#' library("DALEX")

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,9 @@ or with [`r2d3::save_d3_html()`](https://rstudio.github.io/r2d3/articles/publish
268268

269269
- Vignette: [modelStudio - perks and features](https://modeloriented.github.io/modelStudio/articles/ms-perks-features.html)
270270

271-
- Conference poster: [MLinPL2019](misc/MLinPL2019_modelStudio_poster.pdf)
271+
- Conference poster: [MLinPL2019](https://github.com/ModelOriented/modelStudio/blob/master/misc/MLinPL2019_modelStudio_poster.pdf)
272272

273-
- Changelog: [News](NEWS.md)
273+
- Changelog: [News](https://modeloriented.github.io/modelStudio/news/index.html)
274274

275275
<!-- - [Article about modelStudio](https://joss.theoj.org/papers/10.21105/joss.01798) -->
276276

man/modelStudio.Rd

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/modelStudioOptions.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/ms-r-python-examples.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ library(modelStudio)
216216
data <- DALEX::titanic_imputed
217217
218218
# init h2o
219-
h2o::h2o.init()
219+
h2o.init()
220220
221221
# split the data
222222
h2o_split <- h2o.splitFrame(as.h2o(data))
@@ -250,7 +250,7 @@ modelStudio(explainer,
250250
B = 5)
251251
252252
# shutdown h2o
253-
h2o::h2o.shutdown(prompt = FALSE)
253+
h2o.shutdown(prompt = FALSE)
254254
```
255255

256256

0 commit comments

Comments
 (0)