removed.R 1.08 KB
Newer Older
1
2
3
4
5
6
#' @title removed functions
#' @name lgb.prepare
#' @description removed functions
#' @param ... catch-all too match old calls
#' @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
13
14
15
}

#' @title removed functions
#' @name lgb.prepare2
#' @description removed functions
#' @param ... catch-all too match old calls
#' @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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
}

#' @title removed functions
#' @name lgb.prepare_rules
#' @description removed functions
#' @param ... catch-all too match old calls
#' @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
#' @param ... catch-all too match old calls
#' @export
lgb.prepare_rules2 <- function(...) {
    stop("lgb.prepare_rules2() was removed in LightGBM 3.0.0. Please use lgb.convert_with_rules()")
}