Skip to content

Commit 4bf2f04

Browse files
committed
foix urls in README
1 parent 56f8c35 commit 4bf2f04

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.Rmd

+5-1
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,13 @@ tab[, packages := link_cran(packages)]
6767
setnames(tab,
6868
old = c("key", "task_type", "feature_types", "packages"),
6969
new = c("Name", "Task Type", "Feature Types", "Package"))
70-
# manually change the task type for filter "performance"
70+
# manually change the task type for specific filters
7171
tab[Name == "performance", `Task Type` := "Universal"]
72+
tab[Name == "permutation", `Task Type` := "Universal"]
7273
tab[Name == "importance", `Task Type` := "Universal"]
74+
# manually change the package for filter "performance" and "parmutation"
75+
tab[Name == "performance", `Package` := ""]
76+
tab[Name == "permutation", `Package` := ""]
7377
knitr::kable(tab[order(Name)], escape = F, format = "markdown")
7478
```
7579

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ as.data.table(filter$calculate(task))
7777
| mim | Classif | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
7878
| mrmr | Classif | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
7979
| njmim | Classif | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
80-
| performance | Universal | Logical, Integer, Numeric, Factor, Ordered | [character(0)](https://cran.r-project.org/package=character\(0\)) |
80+
| performance | Universal | Logical, Integer, Numeric, Factor, Ordered | |
81+
| permutation | Universal | Logical, Integer, Numeric, Factor, Ordered | |
8182
| variance | Classif & Regr | Integer, Numeric | stats |
8283

8384
### Variable Importance Filters

0 commit comments

Comments
 (0)