From 4ea84b8428d4e51ad2de3fd8d3baee2090c7ff71 Mon Sep 17 00:00:00 2001 From: "Steven Paul Sanderson II, MPH" Date: Fri, 27 Jan 2023 14:41:06 -0500 Subject: [PATCH] Fixes #411 --- NEWS.md | 1 + R/ts-vva-plot.R | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index aa3080c5..cece8142 100644 --- a/NEWS.md +++ b/NEWS.md @@ -13,6 +13,7 @@ None vectorization. 2. Fix #412 - Update all brownian motion functions to have an attribute of `.motion_type` +3. Fix #411 - Drop the invisible return for `ts_vva_plot()` # healthyR.ts 0.2.6 diff --git a/R/ts-vva-plot.R b/R/ts-vva-plot.R index 59584592..cd4833ff 100644 --- a/R/ts-vva-plot.R +++ b/R/ts-vva-plot.R @@ -97,7 +97,7 @@ ts_vva_plot <- function(.data, .date_col, .value_col){ ) ) - return(invisible(output_list)) + return(output_list) }