-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathproject-tree.txt
78 lines (77 loc) · 2.37 KB
/
project-tree.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
.
├── .Rbuildignore
├── .codecov.yaml
├── .coderabbit.yaml
├── .gitattributes
├── .github
│ ├── .gitignore
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE.md
│ ├── dependabot.yml
│ └── workflows
│ ├── R-CMD-check.yaml
│ ├── actionlint.yml
│ ├── aider.yml
│ ├── auto-merge-dependabot.yml
│ ├── lint.yaml
│ ├── openhands-resolver.yml
│ ├── pkgdown.yaml
│ ├── recheck.yml
│ ├── rhub.yaml
│ ├── test-coverage.yaml
│ └── tests.yaml
├── .gitignore
├── .lintr
├── .openhands_instructions
├── CRAN-SUBMISSION
├── DESCRIPTION
├── LICENSE
├── LICENSE.md
├── Makefile
├── NAMESPACE
├── NEWS.md
├── R
│ ├── caretEnsemble.R
│ ├── caretList.R
│ ├── caretPredict.R
│ ├── caretStack.R
│ ├── greedyOpt.R
│ ├── package.R
│ └── permutationImportance.R
├── README.rmd
├── _pkgdown.yml
├── caretEnsemble.Rproj
├── cran-comments.md
├── data
│ ├── X.class.rda
│ ├── X.reg.rda
│ ├── Y.class.rda
│ ├── Y.reg.rda
│ ├── models.class.rda
│ └── models.reg.rda
├── inst
│ ├── WORDLIST
│ └── data-raw
│ ├── build_backwards_compatability_data.R
│ ├── build_test_data.R
│ └── test-all_models.R
├── project-tree.txt
├── tests
│ ├── testthat
│ │ ├── data
│ │ │ └── caretlist_with_bad_earth_model.rds
│ │ ├── test-backwards-compatability.R
│ │ ├── test-caretEnsemble.R
│ │ ├── test-caretList.R
│ │ ├── test-caretPredict.R
│ │ ├── test-caretStack.R
│ │ ├── test-classSelection.R
│ │ ├── test-greedyMSE.R
│ │ ├── test-multiclass.R
│ │ └── test-permutationImportance.R
│ └── testthat.R
└── vignettes
├── .gitignore
├── Version-4.0-New-Features.Rmd
└── caretEnsemble-intro.Rmd
11 directories, 65 files