xgboost in R: is it possibel to cross validation (xgb.cv) get the matrix contain with prediction and...
I recently used "xgb.cv" estimate the accuracy of xgboost. I found that the element pred can get the prediction value. I also want to get the corresponding observation value(test data), or a matrix contain with prediction and observation value, however, there was not a useful element or argument to achieve. Did I miss some details? Or is there other ways?
My code:
cv <- xgb.cv(data = x_DMatrix,
max_depth = 3,
nrounds = 10,
nfold = 10,
prediction = TRUE,
metrics = "rmse",
objective ="reg:linear")
cv$evaluation_log # list of evaluation metrics
cv$pred # get the pretiction value
The argument of "xgb.cv":
feval: custimized evaluation function. Returns list(metric='metric-name', value='metric-value') with given prediction and dtrain.
The help documentation is not specified. What is the mean and usage of feval?
I am searching on net but no match answer. Please help or try to give some ideas how to achieve this. Thanks in advance.
r prediction cross-validation xgboost
add a comment |
I recently used "xgb.cv" estimate the accuracy of xgboost. I found that the element pred can get the prediction value. I also want to get the corresponding observation value(test data), or a matrix contain with prediction and observation value, however, there was not a useful element or argument to achieve. Did I miss some details? Or is there other ways?
My code:
cv <- xgb.cv(data = x_DMatrix,
max_depth = 3,
nrounds = 10,
nfold = 10,
prediction = TRUE,
metrics = "rmse",
objective ="reg:linear")
cv$evaluation_log # list of evaluation metrics
cv$pred # get the pretiction value
The argument of "xgb.cv":
feval: custimized evaluation function. Returns list(metric='metric-name', value='metric-value') with given prediction and dtrain.
The help documentation is not specified. What is the mean and usage of feval?
I am searching on net but no match answer. Please help or try to give some ideas how to achieve this. Thanks in advance.
r prediction cross-validation xgboost
stackoverflow.com/questions/40159415/… can help you.
– abhiieor
Nov 19 '18 at 10:13
add a comment |
I recently used "xgb.cv" estimate the accuracy of xgboost. I found that the element pred can get the prediction value. I also want to get the corresponding observation value(test data), or a matrix contain with prediction and observation value, however, there was not a useful element or argument to achieve. Did I miss some details? Or is there other ways?
My code:
cv <- xgb.cv(data = x_DMatrix,
max_depth = 3,
nrounds = 10,
nfold = 10,
prediction = TRUE,
metrics = "rmse",
objective ="reg:linear")
cv$evaluation_log # list of evaluation metrics
cv$pred # get the pretiction value
The argument of "xgb.cv":
feval: custimized evaluation function. Returns list(metric='metric-name', value='metric-value') with given prediction and dtrain.
The help documentation is not specified. What is the mean and usage of feval?
I am searching on net but no match answer. Please help or try to give some ideas how to achieve this. Thanks in advance.
r prediction cross-validation xgboost
I recently used "xgb.cv" estimate the accuracy of xgboost. I found that the element pred can get the prediction value. I also want to get the corresponding observation value(test data), or a matrix contain with prediction and observation value, however, there was not a useful element or argument to achieve. Did I miss some details? Or is there other ways?
My code:
cv <- xgb.cv(data = x_DMatrix,
max_depth = 3,
nrounds = 10,
nfold = 10,
prediction = TRUE,
metrics = "rmse",
objective ="reg:linear")
cv$evaluation_log # list of evaluation metrics
cv$pred # get the pretiction value
The argument of "xgb.cv":
feval: custimized evaluation function. Returns list(metric='metric-name', value='metric-value') with given prediction and dtrain.
The help documentation is not specified. What is the mean and usage of feval?
I am searching on net but no match answer. Please help or try to give some ideas how to achieve this. Thanks in advance.
r prediction cross-validation xgboost
r prediction cross-validation xgboost
asked Nov 19 '18 at 9:34
LeeLee
61
61
stackoverflow.com/questions/40159415/… can help you.
– abhiieor
Nov 19 '18 at 10:13
add a comment |
stackoverflow.com/questions/40159415/… can help you.
– abhiieor
Nov 19 '18 at 10:13
stackoverflow.com/questions/40159415/… can help you.
– abhiieor
Nov 19 '18 at 10:13
stackoverflow.com/questions/40159415/… can help you.
– abhiieor
Nov 19 '18 at 10:13
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53371759%2fxgboost-in-r-is-it-possibel-to-cross-validation-xgb-cv-get-the-matrix-contain%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53371759%2fxgboost-in-r-is-it-possibel-to-cross-validation-xgb-cv-get-the-matrix-contain%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
stackoverflow.com/questions/40159415/… can help you.
– abhiieor
Nov 19 '18 at 10:13