Skip to content

Commit

Permalink
foix urls in README
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-s committed Jul 18, 2020
1 parent 56f8c35 commit 4bf2f04
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,13 @@ tab[, packages := link_cran(packages)]
setnames(tab,
old = c("key", "task_type", "feature_types", "packages"),
new = c("Name", "Task Type", "Feature Types", "Package"))
# manually change the task type for filter "performance"
# manually change the task type for specific filters
tab[Name == "performance", `Task Type` := "Universal"]
tab[Name == "permutation", `Task Type` := "Universal"]
tab[Name == "importance", `Task Type` := "Universal"]
# manually change the package for filter "performance" and "parmutation"
tab[Name == "performance", `Package` := ""]
tab[Name == "permutation", `Package` := ""]
knitr::kable(tab[order(Name)], escape = F, format = "markdown")
```

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ as.data.table(filter$calculate(task))
| mim | Classif | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
| mrmr | Classif | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
| njmim | Classif | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
| performance | Universal | Logical, Integer, Numeric, Factor, Ordered | [character(0)](https://cran.r-project.org/package=character\(0\)) |
| performance | Universal | Logical, Integer, Numeric, Factor, Ordered | |
| permutation | Universal | Logical, Integer, Numeric, Factor, Ordered | |
| variance | Classif & Regr | Integer, Numeric | stats |

### Variable Importance Filters
Expand Down

0 comments on commit 4bf2f04

Please sign in to comment.