Skip to content

Commit e2d7e9b

Browse files
authored
release: 0.8.0 (#165)
* release: 0.8.0 * chore: gitignore * fix: url
1 parent d64fa63 commit e2d7e9b

7 files changed

+128
-43
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@
1515
^\.vscode$
1616
^\.lintr$
1717
^cran-comments\.md$
18+
^CRAN-SUBMISSION$

.gitignore

+121-38
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,185 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,r,macos,linux
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,r,macos,linux
4+
5+
### Linux ###
6+
*~
7+
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
### macOS ###
21+
# General
22+
.DS_Store
23+
.AppleDouble
24+
.LSOverride
25+
26+
# Icon must end with two \r
27+
Icon
28+
29+
30+
# Thumbnails
31+
._*
32+
33+
# Files that might appear in the root of a volume
34+
.DocumentRevisions-V100
35+
.fseventsd
36+
.Spotlight-V100
37+
.TemporaryItems
38+
.Trashes
39+
.VolumeIcon.icns
40+
.com.apple.timemachine.donotpresent
41+
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
### macOS Patch ###
50+
# iCloud generated files
51+
*.icloud
152

2-
# Created by https://www.toptal.com/developers/gitignore/api/r
3-
# Edit at https://www.toptal.com/developers/gitignore?templates=r
453
### R ###
554
# History files
655
.Rhistory
756
.Rapp.history
57+
858
# Session Data files
959
.RData
60+
.RDataTmp
61+
1062
# User-specific files
1163
.Ruserdata
64+
1265
# Example code in package build process
1366
*-Ex.R
67+
1468
# Output files from R CMD build
1569
/*.tar.gz
70+
1671
# Output files from R CMD check
1772
/*.Rcheck/
73+
1874
# RStudio files
1975
.Rproj.user/
76+
2077
# produced vignettes
2178
vignettes/*.html
2279
vignettes/*.pdf
80+
2381
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
2482
.httr-oauth
83+
2584
# knitr and R markdown default cache directories
2685
*_cache/
2786
/cache/
87+
2888
# Temporary files created by R markdown
2989
*.utf8.md
3090
*.knit.md
91+
3192
# R Environment Variables
3293
.Renviron
94+
95+
# pkgdown site
96+
docs/
97+
98+
# translation temp files
99+
po/*~
100+
101+
# RStudio Connect folder
102+
rsconnect/
103+
33104
### R.Bookdown Stack ###
34105
# R package: bookdown caching files
35106
/*_files/
36-
# End of https://www.toptal.com/developers/gitignore/api/r
37-
docs/
38-
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
39-
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode
107+
40108
### VisualStudioCode ###
41109
.vscode/*
42110
!.vscode/settings.json
43111
!.vscode/tasks.json
44112
!.vscode/launch.json
45113
!.vscode/extensions.json
46-
*.code-workspace
114+
!.vscode/*.code-snippets
115+
116+
# Local History for Visual Studio Code
117+
.history/
118+
119+
# Built Visual Studio Code Extensions
120+
*.vsix
121+
47122
### VisualStudioCode Patch ###
48123
# Ignore all local history of files
49124
.history
50-
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
51-
# Created by https://www.toptal.com/developers/gitignore/api/macos
52-
# Edit at https://www.toptal.com/developers/gitignore?templates=macos
53-
### macOS ###
54-
# General
55-
.DS_Store
56-
.AppleDouble
57-
.LSOverride
58-
# Icon must end with two \r
59-
Icon
60-
# Thumbnails
61-
._*
62-
# Files that might appear in the root of a volume
63-
.DocumentRevisions-V100
64-
.fseventsd
65-
.Spotlight-V100
66-
.TemporaryItems
67-
.Trashes
68-
.VolumeIcon.icns
69-
.com.apple.timemachine.donotpresent
70-
# Directories potentially created on remote AFP share
71-
.AppleDB
72-
.AppleDesktop
73-
Network Trash Folder
74-
Temporary Items
75-
.apdisk
76-
# End of https://www.toptal.com/developers/gitignore/api/macos
77-
# Created by https://www.toptal.com/developers/gitignore/api/windows
78-
# Edit at https://www.toptal.com/developers/gitignore?templates=windows
125+
.ionide
126+
79127
### Windows ###
80128
# Windows thumbnail cache files
81129
Thumbs.db
82130
Thumbs.db:encryptable
83131
ehthumbs.db
84132
ehthumbs_vista.db
133+
85134
# Dump file
86135
*.stackdump
136+
87137
# Folder config file
88138
[Dd]esktop.ini
139+
89140
# Recycle Bin used on file shares
90141
$RECYCLE.BIN/
142+
91143
# Windows Installer files
92144
*.cab
93145
*.msi
94146
*.msix
95147
*.msm
96148
*.msp
149+
97150
# Windows shortcuts
98151
*.lnk
99-
# End of https://www.toptal.com/developers/gitignore/api/windows
100-
CRAN-RELEASE
152+
153+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,r,macos,linux
154+
155+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
156+
157+
# R
158+
.Rprofile
101159
README.html
160+
src/*.o
161+
src/*.so
162+
src/*.dll
163+
164+
# CRAN
165+
cran-comments.md
166+
CRAN-RELEASE
102167
CRAN-SUBMISSION
168+
169+
# pkgdown
170+
docs/
171+
172+
# renv
173+
renv/
174+
renv.lock
175+
176+
# vscode
177+
.vscode
178+
179+
# revdep
180+
revdep/
181+
182+
# misc
183+
Meta/
184+
attic/
185+
inst/docd

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: mlr3filters
22
Title: Filter Based Feature Selection for 'mlr3'
3-
Version: 0.7.1
3+
Version: 0.8.0
44
Authors@R: c(
55
person("Patrick", "Schratz", , "[email protected]", role = "aut",
66
comment = c(ORCID = "0000-0003-0748-6624")),

NEWS.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# mlr3filters 0.7.1-9000
1+
# mlr3filters 0.8.0
22

3+
- Added `FilterBoruta`
34
- Fixed issue with `FilterPerformance` where the arg `measure` wasn't passed on
45
- Added `FilterUnivariateCox` (thanks to @bblodfon)
56
- Parameter value `na.rm` is properly initialized to `TRUE` (thanks to @bblodfon)

R/bibentries.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bibentries = c(
2525
),
2626

2727
bommert_2021 = bibentry("article",
28-
doi = "0.1093/bib/bbab354",
28+
doi = "10.1093/bib/bbab354",
2929
year = "2021",
3030
month = "9",
3131
publisher = "Oxford University Press ({OUP})",

man/mlr_filters_boruta.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/mlr_filters_carsurvscore.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)