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

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

#' @title removed functions
#' @name lgb.prepare_rules
#' @description removed functions
22
#' @param ... catch-all to match old calls
23
24
25
26
27
28
29
30
#' @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
31
#' @param ... catch-all to match old calls
32
33
34
35
#' @export
lgb.prepare_rules2 <- function(...) {
    stop("lgb.prepare_rules2() was removed in LightGBM 3.0.0. Please use lgb.convert_with_rules()")
}