Skip to content

Commit

Permalink
fix: deprecated function in namespace
Browse files Browse the repository at this point in the history
Close #30
  • Loading branch information
jhk0530 committed Dec 5, 2023
1 parent 1e347ae commit 3f568aa
Show file tree
Hide file tree
Showing 108 changed files with 214 additions and 71 deletions.
7 changes: 4 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Package: stove
Title: Stove
Version: 1.1
Authors@R:
person("Yeonchan", "Seong", , "[email protected]", role = c("aut", "cre"))
Version: 1.1.1
Authors@R: c(
person("Yeonchan", "Seong", , "[email protected]", role = c("aut", "cre")),
person("Jinhwan", "Kim", , email = "[email protected]", role = "ctb"))
Description: Provides functions for ML modeling with no hyperparameter tuning using tidymodels
License: MIT + file LICENSE
Encoding: UTF-8
Expand Down
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ importFrom(dials,epochs)
importFrom(dials,hidden_units)
importFrom(dials,learn_rate)
importFrom(dials,loss_reduction)
importFrom(dials,margin)
importFrom(dials,min_n)
importFrom(dials,mixture)
importFrom(dials,mtry)
Expand All @@ -71,6 +70,7 @@ importFrom(dials,rbf_sigma)
importFrom(dials,sample_size)
importFrom(dials,scale_factor)
importFrom(dials,stop_iter)
importFrom(dials,svm_margin)
importFrom(dials,tree_depth)
importFrom(dials,trees)
importFrom(discrim,smoothness)
Expand Down
6 changes: 3 additions & 3 deletions R/algorithms.R
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ lightGbm <- function(algo = "lightGBM",
#' @param seed Seed for reproducible results.
#'
#' @importFrom magrittr %>%
#' @importFrom dials cost margin
#' @importFrom dials cost svm_margin
#' @import parsnip
#' @import kernlab
#'
Expand Down Expand Up @@ -795,7 +795,7 @@ SVMLinear <- function(algo = "SVMLinear",
#' @param seed Seed for reproducible results.
#'
#' @importFrom magrittr %>%
#' @importFrom dials cost degree scale_factor margin
#' @importFrom dials cost degree scale_factor svm_margin
#' @import parsnip
#' @import kernlab
#'
Expand Down Expand Up @@ -865,7 +865,7 @@ SVMPoly <- function(algo = "SVMPoly",
#' @param seed Seed for reproducible results.
#'
#' @importFrom magrittr %>%
#' @importFrom dials cost rbf_sigma margin
#' @importFrom dials cost rbf_sigma svm_margin
#' @import parsnip
#' @import kernlab
#'
Expand Down
6 changes: 3 additions & 3 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3f568aa

Please sign in to comment.