-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
[doc] Reference the R doc in sphinx document site. #11166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6399289
Build R docs with pkgdown.
trivialfis 7204c3e
remove.
trivialfis 8ce1d72
removed.
trivialfis 60de06e
just use git.
trivialfis a96d44b
get hash.
trivialfis 4992e9f
steps.
trivialfis ae6035c
Fix.
trivialfis 517f02c
os.
trivialfis 8b2dc5f
cp.
trivialfis 8d768fb
print.
trivialfis ba8a7fb
Revert.
trivialfis 6b34eaa
cleanup.
trivialfis 74e9852
cleanup.
trivialfis b114c9e
typo.
trivialfis 0f5a2f8
remove the old user form.
trivialfis 81311fd
Update doc/contrib/docs.rst
trivialfis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,3 +6,6 @@ | |
| README.md | ||
| ^doc$ | ||
| ^Meta$ | ||
| ^_pkgdown\.yml$ | ||
| ^docs$ | ||
| ^pkgdown$ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| docs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| url: https://github.com/dmlc/xgboost | ||
|
|
||
| template: | ||
| bootstrap: 5 | ||
| math-rendering: mathjax | ||
|
|
||
| reference: | ||
trivialfis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - title: High Level Interface | ||
| desc: High level XGBoost interface | ||
| contents: | ||
| - "xgboost" | ||
| - "predict.xgboost" | ||
| - "print.xgboost" | ||
| - title: Datasets | ||
| desc: Test datasets bundled with the R package. | ||
| contents: | ||
| - "agaricus.train" | ||
| - "agaricus.test" | ||
| - title: Global Configuration | ||
| desc: Global configuration for the XGBoost library. | ||
| contents: | ||
| - "xgb.config" | ||
| - "xgb.set.config" | ||
| - "xgb.get.config" | ||
| - title: DMatrix | ||
| desc: Low-level data storage. | ||
| contents: | ||
| - "xgb.DMatrix" | ||
| - "xgb.DMatrix.hasinfo" | ||
| - "xgb.DMatrix.save" | ||
| - "dim.xgb.DMatrix" | ||
| - "dimnames.xgb.DMatrix" | ||
| - "print.xgb.DMatrix" | ||
| - "xgb.DataBatch" | ||
| - "xgb.DataIter" | ||
| - "xgb.get.DMatrix.data" | ||
| - "xgb.get.DMatrix.num.non.missing" | ||
| - "xgb.ExtMemDMatrix" | ||
| - "xgb.QuantileDMatrix.from_iterator" | ||
| - "xgb.get.DMatrix.qcut" | ||
| - "xgb.slice.DMatrix" | ||
| - title: Booster | ||
| desc: The model for XGBoost. | ||
| contents: | ||
| - "a-compatibility-note-for-saveRDS-save" | ||
| - "coef.xgb.Booster" | ||
| - "getinfo.xgb.Booster" | ||
| - "predict.xgb.Booster" | ||
| - "print.xgb.Booster" | ||
| - "xgb.load" | ||
| - "xgb.load.raw" | ||
| - "xgb.save" | ||
| - "xgb.save.raw" | ||
| - "xgb.copy.Booster" | ||
| - "xgb.slice.Booster" | ||
| - "xgb.get.num.boosted.rounds" | ||
| - "xgb.is.same.Booster" | ||
| - "xgb.importance" | ||
| - "xgb.attr" | ||
| - "xgb.create.features" | ||
| - "xgb.model.dt.tree" | ||
| - "xgb.model.parameters<-" | ||
| - "xgb.ggplot.deepness" | ||
| - "xgb.dump" | ||
| - "variable.names.xgb.Booster" | ||
| - "xgb.ggplot.importance" | ||
| - "xgb.plot.multi.trees" | ||
| - "xgb.plot.shap" | ||
| - "xgb.ggplot.shap.summary" | ||
| - "xgb.plot.tree" | ||
| - "xgb.gblinear.history" | ||
| - title: Training Callbacks | ||
| desc: Callback functions used for training. | ||
| contents: | ||
| - "xgb.Callback" | ||
| - "xgb.cb.cv.predict" | ||
| - "xgb.cb.early.stop" | ||
| - "xgb.cb.evaluation.log" | ||
| - "xgb.cb.gblinear.history" | ||
| - "xgb.cb.print.evaluation" | ||
| - "xgb.cb.reset.parameters" | ||
| - "xgb.cb.save.model" | ||
| - title: Low-level Training Functions | ||
| desc: Low-level Training Functions with DMatrix and Booster | ||
| contents: | ||
| - "xgb.params" | ||
| - "xgb.train" | ||
| - "xgb.cv" | ||
| - "print.xgb.cv.synchronous" | ||
trivialfis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - title: Deprecation Settings | ||
| contents: | ||
| - "xgboost-options" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,7 +26,6 @@ pkgs <- c( | |
| "RhpcBLASctl", | ||
| ## imports | ||
| "Matrix", | ||
| "methods", | ||
| "data.table", | ||
| "jsonlite" | ||
| ) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| *~ | ||
| *.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| :orphan: | ||
|
|
||
| ============= | ||
| XGBoost R API | ||
| ============= |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.