Merge pull request #859 from thirdwing/master

[Doc] documents update. close #821
This commit is contained in:
Tianqi Chen 2016-02-23 18:39:36 -08:00
commit b3a81a216d
4 changed files with 21 additions and 33 deletions

View File

@ -19,12 +19,6 @@ We are [on CRAN](https://cran.r-project.org/web/packages/xgboost/index.html) now
install.packages('xgboost') install.packages('xgboost')
``` ```
For up-to-date version, please install from github. Windows user will need to install [RTools](http://cran.r-project.org/bin/windows/Rtools/) first.
```r
devtools::install_git('git://github.com/dmlc/xgboost',subdir='R-package')
```
You can also install from our weekly updated drat repo: You can also install from our weekly updated drat repo:
```r ```r
install.packages("drat", repos="https://cran.rstudio.com") install.packages("drat", repos="https://cran.rstudio.com")
@ -32,6 +26,17 @@ drat:::addRepo("dmlc")
install.packages("xgboost", repos="http://dmlc.ml/drat/", type="source") install.packages("xgboost", repos="http://dmlc.ml/drat/", type="source")
``` ```
***Important*** Due to the usage of submodule, `install_github` is no longer support to install the
latest version of R package.
For up-to-date version, please install from github. Windows user will need to install [RTools](http://cran.r-project.org/bin/windows/Rtools/) first.
```bash
git clone --recursive https://github.com/dmlc/xgboost
cd xgboost
make Rbuild
R CMD INSTALL xgboost_0.4-3.tar.gz
```
For more detailed installation instructions, please see [here](http://xgboost.readthedocs.org/en/latest/build.html#r-package-installation). For more detailed installation instructions, please see [here](http://xgboost.readthedocs.org/en/latest/build.html#r-package-installation).
Examples Examples

View File

@ -1,16 +1,3 @@
---
title: "Understand your dataset with Xgboost"
output:
rmarkdown::html_vignette:
css: vignette.css
number_sections: yes
toc: yes
author: Tianqi Chen, Tong He, Michaël Benesty
vignette: >
%\VignetteIndexEntry{Discover your data}
%\VignetteEngine{knitr::rmarkdown}
\usepackage[utf8]{inputenc}
---
Understand your dataset with XGBoost Understand your dataset with XGBoost
==================================== ====================================

View File

@ -1,17 +1,3 @@
---
title: "Xgboost presentation"
output:
rmarkdown::html_vignette:
css: vignette.css
number_sections: yes
toc: yes
bibliography: xgboost.bib
author: Tianqi Chen, Tong He, Michaël Benesty
vignette: >
%\VignetteIndexEntry{Xgboost presentation}
%\VignetteEngine{knitr::rmarkdown}
\usepackage[utf8]{inputenc}
---
XGBoost R Tutorial XGBoost R Tutorial
================== ==================

View File

@ -180,6 +180,16 @@ First follow [Building on OSX](#building-on-osx) to get the OpenMP enabled compi
install.packages("xgboost", repos="http://dmlc.ml/drat/", type = "source") install.packages("xgboost", repos="http://dmlc.ml/drat/", type = "source")
``` ```
Due to the usage of submodule, `install_github` is no longer support to install the
latest version of R package. To install the latest version,
```bash
git clone --recursive https://github.com/dmlc/xgboost
cd xgboost
make Rbuild
R CMD INSTALL xgboost_0.4-3.tar.gz
```
## Trouble Shooting ## Trouble Shooting
1. **Compile failed after `git pull`** 1. **Compile failed after `git pull`**