removed.R 1.31 KB
Newer Older
1
2
3
#' @title removed functions
#' @name lgb.prepare
#' @description removed functions
4
#' @param ... catch-all to match old calls
5
#' @return Nothing. This function always raises an exception
6
7
#' @export
lgb.prepare <- function(...) {
8
    stop("lgb.prepare() was removed in LightGBM 3.0.0. Please use lgb.convert_with_rules()")
9
10
11
12
13
}

#' @title removed functions
#' @name lgb.prepare2
#' @description removed functions
14
#' @param ... catch-all to match old calls
15
#' @return Nothing. This function always raises an exception
16
17
#' @export
lgb.prepare2 <- function(...) {
18
    stop("lgb.prepare2() was removed in LightGBM 3.0.0. Please use lgb.convert_with_rules()")
19
20
21
22
23
}

#' @title removed functions
#' @name lgb.prepare_rules
#' @description removed functions
24
#' @param ... catch-all to match old calls
25
#' @return Nothing. This function always raises an exception
26
27
28
29
30
31
32
33
#' @export
lgb.prepare_rules <- function(...) {
    stop("lgb.prepare_rules() was removed in LightGBM 3.0.0. Please use lgb.convert_with_rules()")
}

#' @title removed functions
#' @name lgb.prepare_rules2
#' @description removed functions
34
#' @param ... catch-all to match old calls
35
#' @return Nothing. This function always raises an exception
36
37
38
39
#' @export
lgb.prepare_rules2 <- function(...) {
    stop("lgb.prepare_rules2() was removed in LightGBM 3.0.0. Please use lgb.convert_with_rules()")
}