You need to sign in or sign up before continuing.
build_r_site.R 325 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
library(pkgdown)

setwd("lightgbm_r")
if (!dir.exists("docs")) {
  dir.create("docs")
}

devtools::document()
clean_site()
init_site()
build_home(preview = FALSE, quiet = FALSE)
12
13
14
15
16
17
18
19
build_reference(
    lazy = FALSE
    , document = FALSE
    , examples = TRUE
    , run_dont_run = FALSE
    , seed = 42L
    , preview = FALSE
)