Skip to content

Commit 5003736

Browse files
committed
avoid [link] parsing
1 parent 2f4fa89 commit 5003736

File tree

2 files changed

+59
-56
lines changed

2 files changed

+59
-56
lines changed

R/arx_classifier.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
#' ```
3535
#'
3636
#' The key takeaway from the predictions is that there are two prediction
37-
#' classes: (-Inf, 0.25] and (0.25, Inf). This is because for our goal of
37+
#' classes: `(-Inf, 0.25]` and `(0.25, Inf)`. This is because for our goal of
3838
#' classification the classes must be discrete. The discretization of the
3939
#' real-valued outcome is controlled by the `breaks` argument, which defaults
40-
#' to 0.25. Such breaks will be automatically extended to cover the entire
41-
#' real line. For example, the default break of 0.25 is silently extended to
42-
#' breaks = c(-Inf, .25, Inf) and, therefore, results in two classes: [-Inf,
43-
#' 0.25] and (0.25, Inf). These two classes are used to discretize the
44-
#' outcome. The conversion of the outcome to such classes is handled
40+
#' to `0.25`. Such breaks will be automatically extended to cover the entire
41+
#' real line. For example, the default break of `0.25` is silently extended to
42+
#' `breaks = c(-Inf, .25, Inf)` and, therefore, results in two classes:
43+
#' `[-Inf, 0.25]` and `(0.25, Inf)`. These two classes are used to discretize
44+
#' the outcome. The conversion of the outcome to such classes is handled
4545
#' internally. So if discrete classes already exist for the outcome in the
4646
#' `epi_df`, then we recommend to code a classifier from scratch using the
4747
#' `epi_workflow` framework for more control.

man/arx_classifier.Rd

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

0 commit comments

Comments
 (0)