-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
3,083 additions
and
1,836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: tidyrules | ||
Type: Package | ||
Title: Obtain Rules from Rule Based Models as Tidy Dataframe | ||
Version: 0.2.3 | ||
Version: 0.2.4 | ||
Authors@R: c( | ||
person("Srikanth", "Komala Sheshachala", email = "[email protected]", role = c("aut", "cre")), | ||
person("Amith Kumar", "Ullur Raghavendra", email = "[email protected]", role = c("aut")) | ||
|
@@ -18,8 +18,10 @@ Imports: | |
checkmate (>= 2.3.1), | ||
tidytable (>= 0.11.0), | ||
data.table (>= 1.14.6), | ||
DescTools, | ||
MetricsWeighted | ||
DescTools (>= 0.99.54), | ||
MetricsWeighted (>= 1.0.3), | ||
cli (>= 3.6.2), | ||
glue (>= 1.7.0), | ||
Suggests: | ||
AmesHousing (>= 0.0.3), | ||
dplyr (>= 0.8), | ||
|
@@ -42,3 +44,5 @@ Encoding: UTF-8 | |
LazyData: true | ||
RoxygenNote: 7.3.1 | ||
VignetteBuilder: knitr | ||
Roxygen: list(markdown = TRUE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,40 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
S3method(as_rulelist,data.frame) | ||
S3method(augment,rulelist) | ||
S3method(predict,rulelist) | ||
S3method(predict,ruleset) | ||
S3method(print,rulelist) | ||
S3method(print,ruleset) | ||
S3method(tidy,C5.0) | ||
S3method(tidy,constparty) | ||
S3method(tidy,cubist) | ||
S3method(tidy,rpart) | ||
export(as_rulelist) | ||
export(augment) | ||
export(convert_rule_flavor) | ||
export(set_keys) | ||
export(tidy) | ||
export(to_sql_case) | ||
importFrom(data.table,":=") | ||
importFrom(generics,augment) | ||
importFrom(generics,tidy) | ||
importFrom(magrittr,"%>%") | ||
importFrom(rlang,"%||%") | ||
importFrom(stats,IQR) | ||
importFrom(stats,predict) | ||
importFrom(stats,weighted.mean) | ||
importFrom(tidytable,all_of) | ||
importFrom(tidytable,arrange) | ||
importFrom(tidytable,distinct) | ||
importFrom(tidytable,drop_na) | ||
importFrom(tidytable,inner_join) | ||
importFrom(tidytable,left_join) | ||
importFrom(tidytable,mutate) | ||
importFrom(tidytable,n) | ||
importFrom(tidytable,nest) | ||
importFrom(tidytable,relocate) | ||
importFrom(tidytable,right_join) | ||
importFrom(tidytable,row_number) | ||
importFrom(tidytable,select) | ||
importFrom(tidytable,summarise) | ||
importFrom(tidytable,unnest) | ||
importFrom(utils,data) |
Oops, something went wrong.