Skip to content

Commit 8a4a840

Browse files
committed
fix: rename outlier_tukey() and allow for turkey too #58 + cache new overwrite parameter
1 parent e38b490 commit 8a4a840

11 files changed

+40
-18
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: lares
22
Type: Package
33
Title: Analytics & Machine Learning Sidekick
4-
Version: 5.2.11.9003
4+
Version: 5.2.11.9004
55
Authors@R: c(
66
person("Bernardo", "Lares", , "laresbernardo@gmail.com", c("aut", "cre")))
77
Maintainer: Bernardo Lares <laresbernardo@gmail.com>
@@ -39,7 +39,7 @@ Suggests:
3939
rmarkdown
4040
URL: https://github.com/laresbernardo/lares, https://laresbernardo.github.io/lares/
4141
BugReports: https://github.com/laresbernardo/lares/issues
42-
RoxygenNote: 7.3.1
42+
RoxygenNote: 7.3.2
4343
License: AGPL-3
4444
Encoding: UTF-8
4545
LazyData: true

NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ export(num_abbr)
175175
export(numericalonly)
176176
export(ohe_commas)
177177
export(ohse)
178+
export(outlier_tukey)
178179
export(outlier_turkey)
179180
export(outlier_zscore)
180181
export(outlier_zscore_plot)

R/cache.R

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#' if the cache should be used to proceed or ignored; when writing, (interactive)
1919
#' ask the user if the cache should be overwritten. Note that you can only ask for
2020
#' one cache file at a time because vectors are concatenated.
21+
#' @param overwrite Boolean. Set to overwrite existing cache file. When reading,
22+
#' this parameter answers to ask prompt instead.
2123
#' @param ... Additional parameters.
2224
#' @return \code{cache_write}. No return value, called for side effects.
2325
#' @examples
@@ -32,6 +34,7 @@ cache_write <- function(data,
3234
base = "temp",
3335
cache_dir = getOption("LARES_CACHE_DIR"),
3436
ask = FALSE,
37+
overwrite = NULL,
3538
quiet = FALSE,
3639
...) {
3740
if (is.null(cache_dir)) {
@@ -51,11 +54,11 @@ cache_write <- function(data,
5154
} else {
5255
answer <- "use"
5356
}
54-
if (answer != "i") {
57+
if (answer != "i" && isTRUE(overwrite)) {
5558
saveRDS(data, file = file)
5659
if (!quiet) message("> Cache saved succesfully: ", base)
5760
} else {
58-
if (!quiet) message("> Skipped cache for: ", base)
61+
if (!quiet) message("> Skipped writing cache for: ", base)
5962
return(invisible(NULL))
6063
}
6164
} else {
@@ -69,6 +72,7 @@ cache_write <- function(data,
6972
cache_read <- function(base,
7073
cache_dir = getOption("LARES_CACHE_DIR"),
7174
ask = FALSE,
75+
overwrite = TRUE,
7276
quiet = FALSE,
7377
...) {
7478
base <- paste(base, collapse = ".")
@@ -78,13 +82,13 @@ cache_read <- function(base,
7882
if (exists) {
7983
file <- attr(exists, "filename")
8084
base <- attr(exists, "base")
81-
if (ask == TRUE) {
85+
if (ask) {
8286
message("> Cache found: ", base)
8387
answer <- readline("Press ENTER to use cache or type [i] to ignore: ")
8488
} else {
8589
answer <- "use"
8690
}
87-
if (answer != "i") {
91+
if (answer != "i" && isTRUE(overwrite)) {
8892
data <- readRDS(file)
8993
if (!quiet) message("> Cache loaded succesfully: ", base)
9094
return(data)

R/outliers.R

+4-1
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,11 @@ outlier_zscore_plot <- function(df, var, group = NULL,
172172
#' @param k Positive Numeric. K-multiplier.
173173
#' @return Boolean vector detecting outliers.
174174
#' @export
175-
outlier_turkey <- function(x, k = 1.5) {
175+
outlier_tukey <- function(x, k = 1.5) {
176176
quar <- quantile(x, probs = c(0.25, 0.75), na.rm = TRUE)
177177
iqr <- diff(quar)
178178
!((quar[1] - k * iqr <= x) & (x <= quar[2] + k * iqr))
179179
}
180+
#' @rdname outlier_tukey
181+
#' @export
182+
outlier_turkey <- outlier_tukey

R/stocks.R

+9-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#'
77
#' @family Investment
88
#' @family Credentials
9+
#' @inheritParams cache_write
910
#' @param file Character. Import an Excel file, local or from URL.
1011
#' @param creds Character. Dropbox's credentials (see \code{get_creds()})
1112
#' @param auto Boolean. Automatically use my local personal file? You might want
@@ -35,7 +36,8 @@ stocks_file <- function(file = NA,
3536
sheets = c("Portafolio", "Fondos", "Transacciones"),
3637
keep_old = TRUE,
3738
cache = TRUE,
38-
quiet = FALSE) {
39+
quiet = FALSE,
40+
...) {
3941
cache_file <- c(as.character(Sys.Date()), "stocks_file")
4042
if (cache_exists(cache_file) && cache) {
4143
results <- cache_read(cache_file, quiet = quiet)
@@ -46,12 +48,15 @@ stocks_file <- function(file = NA,
4648
as_tibble(read.xlsx(
4749
file,
4850
sheet = x,
49-
skipEmptyRows = TRUE, detectDates = TRUE
51+
skipEmptyRows = TRUE,
52+
detectDates = TRUE
5053
))
5154
})
5255
if (length(mylist) == 3) {
5356
names(mylist) <- c("port", "cash", "trans")
54-
mylist$trans$Date <- try(as.Date(mylist$trans$Date, origin = "1970-01-01"))
57+
mylist$port$StartDate <- try(as.Date(mylist$port$StartDate, origin = "1889-12-31", ...))
58+
mylist$trans$Date <- try(as.Date(mylist$trans$Date, origin = "1889-12-31", ...))
59+
mylist$cash$Date <- try(as.Date(mylist$cash$Date, origin = "1889-12-31", ...))
5560
if ("Value" %in% colnames(mylist$trans)) {
5661
mylist$trans <- rename(mylist$trans, Each = .data$Value, Invested = .data$Amount)
5762
}
@@ -96,7 +101,7 @@ stocks_file <- function(file = NA,
96101
attr(results$cash, "type") <- "stocks_file_cash"
97102
}
98103
attr(results, "type") <- "stocks_file"
99-
cache_write(results, cache_file, quiet = TRUE)
104+
cache_write(results, cache_file, quiet = TRUE, ...)
100105
return(results)
101106
}
102107

man/cache_write.Rd

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

man/outlier_turkey.Rd man/outlier_tukey.Rd

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

man/outlier_zscore.Rd

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

man/outlier_zscore_plot.Rd

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

man/stocks_report.Rd

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

man/winsorize.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)