No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
0bd9bec
... +13 ...
1460bb8
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
2 | 2 | #' |
|
3 | 3 | #' This function calculates explanations on a dataset level set that explore model response as a function of selected variables. |
|
4 | 4 | #' The explanations can be calulated as Partial Dependence Profile or Accumulated Local Dependence Profile. |
|
5 | - | #' Find information how to use this function here: \url{http://ema.drwhy.ai/partialDependenceProfiles.html}. |
|
5 | + | #' Find information how to use this function here: \url{https://ema.drwhy.ai/partialDependenceProfiles.html}. |
|
6 | 6 | #' The \code{variable_profile} function is a copy of \code{model_profile}. |
|
7 | 7 | #' |
|
8 | 8 | #' Underneath this function calls the \code{\link[ingredients]{partial_dependence}} or |
22 | 22 | #' @return An object of the class \code{model_profile}. |
|
23 | 23 | #' It's a data frame with calculated average model responses. |
|
24 | 24 | #' |
|
25 | - | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{http://ema.drwhy.ai/} |
|
25 | + | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{https://ema.drwhy.ai/} |
|
26 | 26 | #' |
|
27 | 27 | #' @name model_profile |
|
28 | 28 | #' @examples |
2 | 2 | #' |
|
3 | 3 | #' This function calculated individual profiles aka Ceteris Paribus Profiles. |
|
4 | 4 | #' From DALEX version 1.0 this function calls the \code{\link[ingredients]{ceteris_paribus}} from the \code{ingredients} package. |
|
5 | - | #' Find information how to use this function here: \url{http://ema.drwhy.ai/ceterisParibus.html}. |
|
5 | + | #' Find information how to use this function here: \url{https://ema.drwhy.ai/ceterisParibus.html}. |
|
6 | 6 | #' |
|
7 | 7 | #' @param explainer a model to be explained, preprocessed by the \code{explain} function |
|
8 | 8 | #' @param new_observation a new observation for which predictions need to be explained |
14 | 14 | #' @return An object of the class \code{ceteris_paribus_explainer}. |
|
15 | 15 | #' It's a data frame with calculated average response. |
|
16 | 16 | #' |
|
17 | - | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{http://ema.drwhy.ai/} |
|
17 | + | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{https://ema.drwhy.ai/} |
|
18 | 18 | #' @export |
|
19 | 19 | #' |
|
20 | 20 | #' @examples |
18 | 18 | #' \item \code{type} - character that specifies type of the task. |
|
19 | 19 | #' } |
|
20 | 20 | #' |
|
21 | - | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{http://ema.drwhy.ai/} |
|
21 | + | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{https://ema.drwhy.ai/} |
|
22 | 22 | #' @importFrom stats median weighted.mean |
|
23 | 23 | #' @export |
|
24 | 24 | #' @examples |
40 | 40 | #' \item \code{model_info} named list contating basic information about model, like package, version of package and type. |
|
41 | 41 | #' } |
|
42 | 42 | #' |
|
43 | - | #' @references Explanatory Model Analysis. Explore, Explain and Examine Predictive Models. \url{http://ema.drwhy.ai/} |
|
43 | + | #' @references Explanatory Model Analysis. Explore, Explain and Examine Predictive Models. \url{https://ema.drwhy.ai/} |
|
44 | 44 | #' @rdname explain |
|
45 | 45 | #' @export |
|
46 | 46 | #' @importFrom stats predict |
3 | 3 | #' This function performs local diagnostic of residuals. |
|
4 | 4 | #' For a single instance its neighbors are identified in the validation data. |
|
5 | 5 | #' Residuals are calculated for neighbors and plotted against residuals for all data. |
|
6 | - | #' Find information how to use this function here: \url{http://ema.drwhy.ai/localDiagnostics.html}. |
|
6 | + | #' Find information how to use this function here: \url{https://ema.drwhy.ai/localDiagnostics.html}. |
|
7 | 7 | #' |
|
8 | 8 | #' @param explainer a model to be explained, preprocessed by the 'explain' function |
|
9 | 9 | #' @param new_observation a new observation for which predictions need to be explained |
16 | 16 | #' @return An object of the class 'predict_diagnostics'. |
|
17 | 17 | #' It's a data frame with calculated distribution of residuals. |
|
18 | 18 | #' |
|
19 | - | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{http://ema.drwhy.ai/} |
|
19 | + | #' @references Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. \url{https://ema.drwhy.ai/} |
|
20 | 20 | #' @export |
|
21 | 21 | #' @importFrom stats ks.test |
|
22 | 22 | #' @importFrom graphics plot |
Files | Coverage |
---|---|
Project Totals (31 files) | 86.81% |
1460bb8
597ae9b
64cec12
7d53038
33091be
01c18c2
435b1f0
060342d
9923c34
b2ae6c8
77ca90d
2441c55
bdbe1af
ba2e768
0bd9bec