Skip to content

Commit

Permalink
fix typos (#4027)
Browse files Browse the repository at this point in the history
  • Loading branch information
stabacov authored and trivialfis committed Dec 27, 2018
1 parent be948df commit 15fe2f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/R-package/xgboostPresentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ print(class(rawVec))
bst3 <- xgb.load(rawVec)
pred3 <- predict(bst3, test$data)

# pred2 should be identical to pred
print(paste("sum(abs(pred3-pred))=", sum(abs(pred2-pred))))
# pred3 should be identical to pred
print(paste("sum(abs(pred3-pred))=", sum(abs(pred3-pred))))
```

```
Expand Down

0 comments on commit 15fe2f1

Please sign in to comment.