From 1925321a166ae67d3b517d7e3ebc54e2f00b56e0 Mon Sep 17 00:00:00 2001 From: hetong Date: Sat, 6 Sep 2014 23:14:38 -0700 Subject: [PATCH] remove incorrect link to old folders --- R-package/R/xgb.cv.R | 2 +- R-package/R/xgb.dump.R | 4 ++-- R-package/R/xgb.train.R | 2 +- R-package/R/xgboost.R | 2 +- R-package/man/xgb.cv.Rd | 2 +- R-package/man/xgb.dump.Rd | 3 ++- R-package/man/xgb.train.Rd | 2 +- R-package/man/xgboost.Rd | 2 +- R-package/vignettes/xgboost.Rnw | 2 +- 9 files changed, 11 insertions(+), 10 deletions(-) diff --git a/R-package/R/xgb.cv.R b/R-package/R/xgb.cv.R index 2ce039089..91bb4f7e2 100644 --- a/R-package/R/xgb.cv.R +++ b/R-package/R/xgb.cv.R @@ -15,7 +15,7 @@ #' } #' #' See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for -#' further details. See also inst/examples/demo.R for walkthrough example in R. +#' further details. See also demo/ for walkthrough example in R. #' @param data takes an \code{xgb.DMatrix} as the input. #' @param nrounds the max number of iterations #' @param nfold number of folds used diff --git a/R-package/R/xgb.dump.R b/R-package/R/xgb.dump.R index 9c14c92df..c11101927 100644 --- a/R-package/R/xgb.dump.R +++ b/R-package/R/xgb.dump.R @@ -7,9 +7,9 @@ #' @param fmap feature map file representing the type of feature. #' Detailed description could be found at #' \url{https://github.com/tqchen/xgboost/wiki/Binary-Classification#dump-model}. -#' Run inst/examples/demo.R for the result and inst/examples/featmap.txt +#' See demo/ for walkthrough example in R, and +#' \url{https://github.com/tqchen/xgboost/blob/master/demo/data/featmap.txt} #' for example Format. -#' #' #' @examples #' data(agaricus.train, package='xgboost') diff --git a/R-package/R/xgb.train.R b/R-package/R/xgb.train.R index dca798d53..3ad722c19 100644 --- a/R-package/R/xgb.train.R +++ b/R-package/R/xgb.train.R @@ -15,7 +15,7 @@ #' } #' #' See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for -#' further details. See also inst/examples/demo.R for walkthrough example in R. +#' further details. See also demo/ for walkthrough example in R. #' @param data takes an \code{xgb.DMatrix} as the input. #' @param nrounds the max number of iterations #' @param watchlist what information should be printed when \code{verbose=1} or diff --git a/R-package/R/xgboost.R b/R-package/R/xgboost.R index 9426c0b26..1995d964b 100644 --- a/R-package/R/xgboost.R +++ b/R-package/R/xgboost.R @@ -19,7 +19,7 @@ #' } #' #' See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for -#' further details. See also inst/examples/demo.R for walkthrough example in R. +#' further details. See also demo/ for walkthrough example in R. #' @param nrounds the max number of iterations #' @param verbose If 0, xgboost will stay silent. If 1, xgboost will print #' information of performance. If 2, xgboost will print information of both diff --git a/R-package/man/xgb.cv.Rd b/R-package/man/xgb.cv.Rd index fdfce8102..bfb172e53 100644 --- a/R-package/man/xgb.cv.Rd +++ b/R-package/man/xgb.cv.Rd @@ -20,7 +20,7 @@ xgb.cv(params = list(), data, nrounds, nfold, label = NULL, showsd = TRUE, } See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for - further details. See also inst/examples/demo.R for walkthrough example in R.} + further details. See also demo/ for walkthrough example in R.} \item{data}{takes an \code{xgb.DMatrix} as the input.} diff --git a/R-package/man/xgb.dump.Rd b/R-package/man/xgb.dump.Rd index c45657e14..9571855ff 100644 --- a/R-package/man/xgb.dump.Rd +++ b/R-package/man/xgb.dump.Rd @@ -13,7 +13,8 @@ xgb.dump(model, fname, fmap = "") \item{fmap}{feature map file representing the type of feature. Detailed description could be found at \url{https://github.com/tqchen/xgboost/wiki/Binary-Classification#dump-model}. - Run inst/examples/demo.R for the result and inst/examples/featmap.txt + See demo/ for walkthrough example in R, and + \url{https://github.com/tqchen/xgboost/blob/master/demo/data/featmap.txt} for example Format.} } \description{ diff --git a/R-package/man/xgb.train.Rd b/R-package/man/xgb.train.Rd index 1caab799f..8c248fbf6 100644 --- a/R-package/man/xgb.train.Rd +++ b/R-package/man/xgb.train.Rd @@ -20,7 +20,7 @@ xgb.train(params = list(), data, nrounds, watchlist = list(), obj = NULL, } See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for - further details. See also inst/examples/demo.R for walkthrough example in R.} + further details. See also demo/ for walkthrough example in R.} \item{data}{takes an \code{xgb.DMatrix} as the input.} diff --git a/R-package/man/xgboost.Rd b/R-package/man/xgboost.Rd index 95c3374fc..407ee3ffd 100644 --- a/R-package/man/xgboost.Rd +++ b/R-package/man/xgboost.Rd @@ -25,7 +25,7 @@ xgboost(data = NULL, label = NULL, params = list(), nrounds, } See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for - further details. See also inst/examples/demo.R for walkthrough example in R.} + further details. See also demo/ for walkthrough example in R.} \item{nrounds}{the max number of iterations} diff --git a/R-package/vignettes/xgboost.Rnw b/R-package/vignettes/xgboost.Rnw index fd639ef5d..d34a1e08c 100644 --- a/R-package/vignettes/xgboost.Rnw +++ b/R-package/vignettes/xgboost.Rnw @@ -173,7 +173,7 @@ objective function. We also have \verb@slice@ for row extraction. It is useful in cross-validation. -For a walkthrough demo, please see \verb@R-package/inst/examples/demo.R@ for further +For a walkthrough demo, please see \verb@R-package/demo/@ for further details. \section{The Higgs Boson competition}