Skip to content

Commit

Permalink
next try
Browse files Browse the repository at this point in the history
  • Loading branch information
schiffner committed Nov 28, 2015
1 parent 3f5e33f commit 2b4cde6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/integrated_learners.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ For *regression*, *se* means that additional to the mean response standard error
See also [&RLearner] for details.


```{r include=TRUE}
```{r include=FALSE}
library("mlr")
library("pander")
linkPkg = function(x) {
collapse(sprintf("[%1$s](http://www.rdocumentation.org/packages/%1$s/)", x), sep = "<br />")
}
getTab = function(type) {
lrns = listLearners(type, create = TRUE, warn.missing.packages = TRUE, quiet = FALSE)
lrnNames = listLearners(type)
lrns = lapply(lrnNames, makeLearner)
# lrns = listLearners(type, create = TRUE, warn.missing.packages = FALSE)
cols = c("ID / Short Name", "Name", "Packages", "Num.", "Fac.", "NAs", "Weights", "Props", "Note")
df = makeDataFrame(nrow = length(lrns), ncol = length(cols),
col.types = c("character", "character", "character", "logical", "logical", "logical", "logical", "character", "character"))
Expand Down

1 comment on commit 2b4cde6

@schiffner
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #29

Please sign in to comment.