diff --git a/DESCRIPTION b/DESCRIPTION index 61e1fbc0..37452434 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -46,9 +46,9 @@ Imports: TTR, xts, rlang, + tidyverse, tidyselect Suggests: - tidyverse, tibbletime, forcats, broom, @@ -59,6 +59,6 @@ Suggests: Rblpapi, covr, janitor -RoxygenNote: 7.2.1 +RoxygenNote: 7.2.3 Roxygen: list(markdown = TRUE) VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 828a0e25..1c36ad86 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# tidyquant 1.0.6.9000 + # tidyquant 1.0.6 - Fix tq_performance test failure under PerformanceAnalytics 2.0.6 #223 diff --git a/man/geom_bbands.Rd b/man/geom_bbands.Rd index 80faf8df..ada443cf 100644 --- a/man/geom_bbands.Rd +++ b/man/geom_bbands.Rd @@ -66,8 +66,10 @@ A \code{function} will be called with a single argument, the plot data. The return value must be a \code{data.frame.}, and will be used as the layer data.} -\item{position}{Position adjustment, either as a string, or the result of -a call to a position adjustment function.} +\item{position}{Position adjustment, either as a string naming the adjustment +(e.g. \code{"jitter"} to use \code{position_jitter}), or the result of a call to a +position adjustment function. Use the latter if you need to change the +settings of the adjustment.} \item{na.rm}{If \code{TRUE}, silently removes \code{NA} values, which typically desired for moving averages.} diff --git a/man/geom_chart.Rd b/man/geom_chart.Rd index 50d008e9..26bdc333 100644 --- a/man/geom_chart.Rd +++ b/man/geom_chart.Rd @@ -56,10 +56,14 @@ the plot data. The return value must be a \code{data.frame.}, and will be used as the layer data.} \item{stat}{The statistical transformation to use on the data for this -layer, as a string.} - -\item{position}{Position adjustment, either as a string, or the result of -a call to a position adjustment function.} +layer, either as a \code{ggproto} \code{Geom} subclass or as a string naming the +stat stripped of the \code{stat_} prefix (e.g. \code{"count"} rather than +\code{"stat_count"})} + +\item{position}{Position adjustment, either as a string naming the adjustment +(e.g. \code{"jitter"} to use \code{position_jitter}), or the result of a call to a +position adjustment function. Use the latter if you need to change the +settings of the adjustment.} \item{na.rm}{If \code{TRUE}, silently removes \code{NA} values, which typically desired for moving averages.} diff --git a/man/geom_ma.Rd b/man/geom_ma.Rd index c6c5e99f..9b566446 100644 --- a/man/geom_ma.Rd +++ b/man/geom_ma.Rd @@ -56,8 +56,10 @@ A \code{function} will be called with a single argument, the plot data. The return value must be a \code{data.frame.}, and will be used as the layer data.} -\item{position}{Position adjustment, either as a string, or the result of -a call to a position adjustment function.} +\item{position}{Position adjustment, either as a string naming the adjustment +(e.g. \code{"jitter"} to use \code{position_jitter}), or the result of a call to a +position adjustment function. Use the latter if you need to change the +settings of the adjustment.} \item{na.rm}{If \code{TRUE}, silently removes \code{NA} values, which typically desired for moving averages.}