Package: AssetAllocation Check: examples New result: ERROR Running examples in ‘AssetAllocation-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: backtest_allocation > ### Title: Backtesting of asset allocation strategies > ### Aliases: backtest_allocation > > ### ** Examples > > # Example 1: backtesting one of the asset allocations in the package > us_60_40 <- asset_allocations$static$us_60_40 > bt_us_60_40 <- backtest_allocation(us_60_40, + ETFs$Prices, + ETFs$Returns, + ETFs$risk_free) > > # show table with performance metrics > bt_us_60_40$table_performance United.States.60.40 Annualized Return 0.0729 Annualized Std Dev 0.1041 Annualized Sharpe (Rf=1.32%) 0.5642 daily downside risk 0.0047 Annualised downside risk 0.0739 Downside potential 0.0020 Omega 1.1240 Sortino ratio 0.0533 Upside potential 0.0022 Upside potential ratio 0.6257 Omega-sharpe ratio 0.1240 Semi Deviation 0.0048 Gain Deviation 0.0047 Loss Deviation 0.0054 Downside Deviation (MAR=210%) 0.0101 Downside Deviation (Rf=1.32%) 0.0047 Downside Deviation (0%) 0.0046 Maximum Drawdown 0.3260 Historical VaR (95%) -0.0098 Historical ES (95%) -0.0159 Modified VaR (95%) -0.0091 Modified ES (95%) -0.0111 > # Example 2: creating and backtesting an asset allocation from scratch > > # create a strategy that invests equally in momentum (MTUM), value (VLUE), > # low volatility (USMV) and quality (QUAL) ETFs. > > factor_strat <- list(name = "EW Factors", + tickers = c("MTUM", "VLUE", "USMV", "QUAL"), + default_weights = c(0.25, 0.25, 0.25, 0.25), + rebalance_frequency = "month", + portfolio_rule_fn = "constant_weights") > > # get data for tickers using getSymbols > factor_ETFs <- get_data_from_tickers(factor_strat$tickers, + starting_date = "2020-01-01") > # backtest the strategy > bt_factor_strat <- backtest_allocation(factor_strat, + factor_ETFs$P, + factor_ETFs$R) Error in if (length(colnames(R)) == 1 && colnames(R) == colnames(Rf)) { : missing value where TRUE/FALSE needed Calls: backtest_allocation ... SharpeRatio.annualized -> sapply -> lapply -> FUN -> Return.excess Execution halted Package: AssetAllocation Check: re-building of vignette outputs New result: ERROR Error(s) in re-building vignettes: ... --- re-building ‘AssetAllocation.Rmd’ using rmarkdown ** Processing: /home/hornik/tmp/CRAN_recheck/AssetAllocation.Rcheck/vign_test/AssetAllocation/vignettes/AssetAllocation_files/figure-html/all weather 3-1.png 672x480 pixels, 8 bits/pixel, 256 colors in palette Reducing image to 8 bits/pixel, grayscale Input IDAT size = 27009 bytes Input file size = 27903 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 25206 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 25138 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 25138 Output IDAT size = 25138 bytes (1871 bytes decrease) Output file size = 25216 bytes (2687 bytes = 9.63% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/AssetAllocation.Rcheck/vign_test/AssetAllocation/vignettes/AssetAllocation_files/figure-html/all weather 5-1.png 672x480 pixels, 3x8 bits/pixel, RGB Input IDAT size = 29555 bytes Input file size = 29669 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 26308 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 IDAT size = 26083 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 5 IDAT size = 26083 Output IDAT size = 26083 bytes (3472 bytes decrease) Output file size = 26161 bytes (3508 bytes = 11.82% decrease) Quitting from lines 154-164 [factors EW bt] (AssetAllocation.Rmd) Error: processing vignette 'AssetAllocation.Rmd' failed with diagnostics: missing value where TRUE/FALSE needed --- failed re-building ‘AssetAllocation.Rmd’ SUMMARY: processing the following file failed: ‘AssetAllocation.Rmd’ Error: Vignette re-building failed. Execution halted Package: tidyquant Check: examples New result: ERROR Running examples in ‘tidyquant-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: tq_performance > ### Title: Computes a wide variety of summary performance metrics from > ### stock or portfolio returns > ### Aliases: tq_performance tq_performance_ tq_performance_fun_options > > ### ** Examples > > # Load libraries > library(dplyr) ######################### Warning from 'xts' package ########################## # # # The dplyr lag() function breaks how base R's lag() function is supposed to # # work, which breaks lag(my_xts). Calls to lag(my_xts) that you type or # # source() into this session won't work correctly. # # # # Use stats::lag() to make sure you're not using dplyr::lag(), or you can add # # conflictRules('dplyr', exclude = 'lag') to your .Rprofile to stop # # dplyr from breaking base R's lag() function. # # # # Code in packages is not affected. It's protected by R's namespace mechanism # # Set `options(xts.warn_dplyr_breaks_lag = FALSE)` to suppress this warning. # # # ############################################################################### Attaching package: ‘dplyr’ The following objects are masked from ‘package:xts’: first, last The following objects are masked from ‘package:stats’: filter, lag The following objects are masked from ‘package:base’: intersect, setdiff, setequal, union > > # Use FANG data set > > # Get returns for individual stock components grouped by symbol > Ra <- FANG %>% + group_by(symbol) %>% + tq_transmute(adjusted, periodReturn, period = "monthly", col_rename = "Ra") > > # Get returns for SP500 as baseline > Rb <- "^GSPC" %>% + tq_get(get = "stock.prices", + from = "2010-01-01", + to = "2015-12-31") %>% + tq_transmute(adjusted, periodReturn, period = "monthly", col_rename = "Rb") > > # Merge stock returns with baseline > RaRb <- left_join(Ra, Rb, by = c("date" = "date")) > > ##### Performance Metrics ##### > > # View options > tq_performance_fun_options() $table.funs [1] "table.AnnualizedReturns" "table.Arbitrary" [3] "table.Autocorrelation" "table.CAPM" [5] "table.CaptureRatios" "table.Correlation" [7] "table.Distributions" "table.DownsideRisk" [9] "table.DownsideRiskRatio" "table.DrawdownsRatio" [11] "table.HigherMoments" "table.InformationRatio" [13] "table.RollingPeriods" "table.SFM" [15] "table.SpecificRisk" "table.Stats" [17] "table.TrailingPeriods" "table.UpDownRatios" [19] "table.Variability" $CAPM.funs [1] "CAPM.alpha" "CAPM.beta" "CAPM.beta.bear" "CAPM.beta.bull" [5] "CAPM.CML" "CAPM.CML.slope" "CAPM.dynamic" "CAPM.epsilon" [9] "CAPM.jensenAlpha" "CAPM.RiskPremium" "CAPM.SML.slope" "TimingRatio" [13] "MarketTiming" $SFM.funs [1] "SFM.alpha" "SFM.beta" "SFM.CML" "SFM.CML.slope" [5] "SFM.dynamic" "SFM.epsilon" "SFM.jensenAlpha" $descriptive.funs [1] "mean" "sd" "min" "max" [5] "cor" "mean.geometric" "mean.stderr" "mean.LCL" [9] "mean.UCL" $annualized.funs [1] "Return.annualized" "Return.annualized.excess" [3] "sd.annualized" "SharpeRatio.annualized" $VaR.funs [1] "VaR" "ES" "ETL" "CDD" "CVaR" $moment.funs [1] "var" "cov" "skewness" "kurtosis" [5] "CoVariance" "CoSkewness" "CoSkewnessMatrix" "CoKurtosis" [9] "CoKurtosisMatrix" "M3.MM" "M4.MM" "BetaCoVariance" [13] "BetaCoSkewness" "BetaCoKurtosis" $drawdown.funs [1] "AverageDrawdown" "AverageLength" "AverageRecovery" [4] "DrawdownDeviation" "DrawdownPeak" "maxDrawdown" $Bacon.risk.funs [1] "MeanAbsoluteDeviation" "Frequency" "SharpeRatio" [4] "MSquared" "MSquaredExcess" "HurstIndex" $Bacon.regression.funs [1] "CAPM.alpha" "CAPM.beta" "CAPM.epsilon" "CAPM.jensenAlpha" [5] "SystematicRisk" "SpecificRisk" "TotalRisk" "TreynorRatio" [9] "AppraisalRatio" "FamaBeta" "Selectivity" "NetSelectivity" $Bacon.relative.risk.funs [1] "ActivePremium" "ActiveReturn" "TrackingError" "InformationRatio" $Bacon.drawdown.funs [1] "PainIndex" "PainRatio" "CalmarRatio" "SterlingRatio" [5] "BurkeRatio" "MartinRatio" "UlcerIndex" $Bacon.downside.risk.funs [1] "DownsideDeviation" "DownsidePotential" "DownsideFrequency" [4] "SemiDeviation" "SemiVariance" "UpsideRisk" [7] "UpsidePotentialRatio" "UpsideFrequency" "BernardoLedoitRatio" [10] "DRatio" "Omega" "OmegaSharpeRatio" [13] "OmegaExcessReturn" "SortinoRatio" "M2Sortino" [16] "Kappa" "VolatilitySkewness" "AdjustedSharpeRatio" [19] "SkewnessKurtosisRatio" "ProspectRatio" $misc.funs [1] "KellyRatio" "Modigliani" "UpDownRatios" > > # Get performance metrics > RaRb %>% + tq_performance(Ra = Ra, performance_fun = SharpeRatio, p = 0.95) # A tibble: 4 × 5 # Groups: symbol [4] symbol `ESSharpe(Rf=0%,p=95%)` SemiSDSharpe(Rf=0%,p=9…¹ StdDevSharpe(Rf=0%,p…² 1 META 0.193 0.424 0.345 2 AMZN 0.215 0.339 0.314 3 NFLX 0.199 0.438 0.355 4 GOOG 0.213 0.354 0.296 # ℹ abbreviated names: ¹​`SemiSDSharpe(Rf=0%,p=95%)`, # ²​`StdDevSharpe(Rf=0%,p=95%)` # ℹ 1 more variable: `VaRSharpe(Rf=0%,p=95%)` > > RaRb %>% + tq_performance(Ra = Ra, Rb = Rb, performance_fun = table.CAPM) Error in `dplyr::mutate()`: ℹ In argument: `nested.col = purrr::map(...)`. ℹ In group 1: `symbol = "AMZN"`. Caused by error in `purrr::map()`: ℹ In index: 1. Caused by error in `.coefficients()`: ! "package:RobStatTM" %in% search() || requireNamespace("RobStatTM", .... is not TRUE Backtrace: ▆ 1. ├─RaRb %>% tq_performance(Ra = Ra, Rb = Rb, performance_fun = table.CAPM) 2. ├─tidyquant::tq_performance(., Ra = Ra, Rb = Rb, performance_fun = table.CAPM) 3. │ ├─tidyquant::tq_performance_(...) 4. │ └─tidyquant:::tq_performance_.grouped_df(...) 5. │ └─... %>% dplyr::group_by_at(.vars = group_names) 6. ├─dplyr::group_by_at(., .vars = group_names) 7. │ └─dplyr:::manip_at(...) 8. │ └─dplyr:::tbl_at_syms(...) 9. │ └─dplyr:::tbl_at_vars(...) 10. │ └─dplyr::tbl_vars(tbl) 11. │ ├─dplyr:::new_sel_vars(tbl_vars_dispatch(x), group_vars(x)) 12. │ │ └─base::structure(...) 13. │ └─dplyr:::tbl_vars_dispatch(x) 14. ├─tidyr::unnest(., cols = nested.col) 15. ├─dplyr::select(., -"data") 16. ├─dplyr::mutate(...) 17. ├─dplyr:::mutate.data.frame(...) 18. │ └─dplyr:::mutate_cols(.data, dplyr_quosures(...), by) 19. │ ├─base::withCallingHandlers(...) 20. │ └─dplyr:::mutate_col(dots[[i]], data, mask, new_columns) 21. │ └─mask$eval_all_mutate(quo) 22. │ └─dplyr (local) eval() 23. ├─purrr::map(...) 24. │ └─purrr:::map_("list", .x, .f, ..., .progress = .progress) 25. │ ├─purrr:::with_indexed_errors(...) 26. │ │ └─base::withCallingHandlers(...) 27. │ ├─purrr:::call_with_cleanup(...) 28. │ └─tidyquant (local) .f(.x[[i]], ...) 29. │ └─base::tryCatch(...) 30. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 31. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 32. │ └─value[[3L]](cond) 33. │ └─base::warning(e) 34. │ └─base::withRestarts(...) 35. │ └─base (local) withOneRestart(expr, restarts[[1L]]) 36. │ └─base (local) doWithOneRestart(return(expr), restart) 37. └─purrr (local) ``(``) 38. └─cli::cli_abort(...) 39. └─rlang::abort(...) Execution halted Package: tidyquant Check: re-building of vignette outputs New result: ERROR Error(s) in re-building vignettes: ... --- re-building ‘TQ00-introduction-to-tidyquant.Rmd’ using rmarkdown ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ00-introduction-to-tidyquant_files/figure-html/unnamed-chunk-2-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 140120 bytes Input file size = 140402 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 115563 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 115563 Output IDAT size = 115563 bytes (24557 bytes decrease) Output file size = 115641 bytes (24761 bytes = 17.64% decrease) --- finished re-building ‘TQ00-introduction-to-tidyquant.Rmd’ --- re-building ‘TQ01-core-functions-in-tidyquant.Rmd’ using rmarkdown --- finished re-building ‘TQ01-core-functions-in-tidyquant.Rmd’ --- re-building ‘TQ02-quant-integrations-in-tidyquant.Rmd’ using rmarkdown ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-11-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 54393 bytes Input file size = 54543 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45167 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45167 Output IDAT size = 45167 bytes (9226 bytes decrease) Output file size = 45245 bytes (9298 bytes = 17.05% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-13-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 56818 bytes Input file size = 56968 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 48967 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 48967 Output IDAT size = 48967 bytes (7851 bytes decrease) Output file size = 49045 bytes (7923 bytes = 13.91% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-15-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 92075 bytes Input file size = 92285 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 73549 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 73549 Output IDAT size = 73549 bytes (18526 bytes decrease) Output file size = 73627 bytes (18658 bytes = 20.22% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-16-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 90570 bytes Input file size = 90780 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 70247 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 70247 Output IDAT size = 70247 bytes (20323 bytes decrease) Output file size = 70325 bytes (20455 bytes = 22.53% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-20-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 87428 bytes Input file size = 87626 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 70804 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 70804 Output IDAT size = 70804 bytes (16624 bytes decrease) Output file size = 70882 bytes (16744 bytes = 19.11% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-22-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 98682 bytes Input file size = 98904 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 76587 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 76587 Output IDAT size = 76587 bytes (22095 bytes decrease) Output file size = 76665 bytes (22239 bytes = 22.49% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-25-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 91055 bytes Input file size = 91265 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 71268 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 71268 Output IDAT size = 71268 bytes (19787 bytes decrease) Output file size = 71346 bytes (19919 bytes = 21.83% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-27-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 105645 bytes Input file size = 105867 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 90296 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 90296 Output IDAT size = 90296 bytes (15349 bytes decrease) Output file size = 90374 bytes (15493 bytes = 14.63% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-31-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 61443 bytes Input file size = 61605 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 58341 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 58341 Output IDAT size = 58341 bytes (3102 bytes decrease) Output file size = 58419 bytes (3186 bytes = 5.17% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ02-quant-integrations-in-tidyquant_files/figure-html/unnamed-chunk-32-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 112602 bytes Input file size = 112836 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 108367 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 108367 Output IDAT size = 108367 bytes (4235 bytes decrease) Output file size = 108445 bytes (4391 bytes = 3.89% decrease) --- finished re-building ‘TQ02-quant-integrations-in-tidyquant.Rmd’ --- re-building ‘TQ03-scaling-and-modeling-with-tidyquant.Rmd’ using rmarkdown ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ03-scaling-and-modeling-with-tidyquant_files/figure-html/unnamed-chunk-11-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 32422 bytes Input file size = 32536 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 27125 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 27125 Output IDAT size = 27125 bytes (5297 bytes decrease) Output file size = 27203 bytes (5333 bytes = 16.39% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ03-scaling-and-modeling-with-tidyquant_files/figure-html/unnamed-chunk-15-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 50750 bytes Input file size = 50900 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45559 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45559 Output IDAT size = 45559 bytes (5191 bytes decrease) Output file size = 45637 bytes (5263 bytes = 10.34% decrease) --- finished re-building ‘TQ03-scaling-and-modeling-with-tidyquant.Rmd’ --- re-building ‘TQ04-charting-with-tidyquant.Rmd’ using rmarkdown ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-6-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 61990 bytes Input file size = 62152 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 IDAT size = 58296 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 5 IDAT size = 58296 Output IDAT size = 58296 bytes (3694 bytes decrease) Output file size = 58374 bytes (3778 bytes = 6.08% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-7-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 46906 bytes Input file size = 47044 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 42582 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 42582 Output IDAT size = 42582 bytes (4324 bytes decrease) Output file size = 42660 bytes (4384 bytes = 9.32% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-8-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 28057 bytes Input file size = 28171 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 23925 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 23925 Output IDAT size = 23925 bytes (4132 bytes decrease) Output file size = 24003 bytes (4168 bytes = 14.80% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-9-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 29257 bytes Input file size = 29371 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 24948 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 24948 Output IDAT size = 24948 bytes (4309 bytes decrease) Output file size = 25026 bytes (4345 bytes = 14.79% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-10-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 40595 bytes Input file size = 40721 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 35290 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 35290 Output IDAT size = 35290 bytes (5305 bytes decrease) Output file size = 35368 bytes (5353 bytes = 13.15% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-11-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 28111 bytes Input file size = 28225 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 23680 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 23680 Output IDAT size = 23680 bytes (4431 bytes decrease) Output file size = 23758 bytes (4467 bytes = 15.83% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-12-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 28902 bytes Input file size = 29016 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 24275 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 24275 Output IDAT size = 24275 bytes (4627 bytes decrease) Output file size = 24353 bytes (4663 bytes = 16.07% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-13-1.png 1200x750 pixels, 3x8 bits/pixel, RGB Input IDAT size = 54684 bytes Input file size = 54834 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45209 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45209 Output IDAT size = 45209 bytes (9475 bytes decrease) Output file size = 45287 bytes (9547 bytes = 17.41% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-14-1.png 1200x750 pixels, 3x8 bits/pixel, RGB Input IDAT size = 66404 bytes Input file size = 66578 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 54621 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 54621 Output IDAT size = 54621 bytes (11783 bytes decrease) Output file size = 54699 bytes (11879 bytes = 17.84% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-15-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 51625 bytes Input file size = 51775 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 44130 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 44130 Output IDAT size = 44130 bytes (7495 bytes decrease) Output file size = 44208 bytes (7567 bytes = 14.62% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-16-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 52572 bytes Input file size = 52722 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45998 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45998 Output IDAT size = 45998 bytes (6574 bytes decrease) Output file size = 46076 bytes (6646 bytes = 12.61% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-17-1.png 1200x750 pixels, 3x8 bits/pixel, RGB Input IDAT size = 77611 bytes Input file size = 77797 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 63774 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 63774 Output IDAT size = 63774 bytes (13837 bytes decrease) Output file size = 63852 bytes (13945 bytes = 17.92% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-18-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 67812 bytes Input file size = 67986 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 56056 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 56056 Output IDAT size = 56056 bytes (11756 bytes decrease) Output file size = 56134 bytes (11852 bytes = 17.43% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-19-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 73897 bytes Input file size = 74083 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 59581 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 59581 Output IDAT size = 59581 bytes (14316 bytes decrease) Output file size = 59659 bytes (14424 bytes = 19.47% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-20-1.png 1200x750 pixels, 3x8 bits/pixel, RGB Input IDAT size = 151861 bytes Input file size = 152155 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 125651 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 125651 Output IDAT size = 125651 bytes (26210 bytes decrease) Output file size = 125729 bytes (26426 bytes = 17.37% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-21-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 54225 bytes Input file size = 54375 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45889 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 45889 Output IDAT size = 45889 bytes (8336 bytes decrease) Output file size = 45967 bytes (8408 bytes = 15.46% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-22-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 62336 bytes Input file size = 62498 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 54439 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 54439 Output IDAT size = 54439 bytes (7897 bytes decrease) Output file size = 54517 bytes (7981 bytes = 12.77% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-23-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 75563 bytes Input file size = 75749 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 64179 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 64179 Output IDAT size = 64179 bytes (11384 bytes decrease) Output file size = 64257 bytes (11492 bytes = 15.17% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-24-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 63804 bytes Input file size = 63966 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 61841 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 IDAT size = 61453 zc = 9 zm = 8 zs = 1 f = 5 IDAT size = 61371 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 1 f = 5 IDAT size = 61371 Output IDAT size = 61371 bytes (2433 bytes decrease) Output file size = 61449 bytes (2517 bytes = 3.93% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-25-1.png 1200x675 pixels, 3x8 bits/pixel, RGB Input IDAT size = 41936 bytes Input file size = 42074 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 39290 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 39290 Output IDAT size = 39290 bytes (2646 bytes decrease) Output file size = 39368 bytes (2706 bytes = 6.43% decrease) ** Processing: /home/hornik/tmp/CRAN_recheck/tidyquant.Rcheck/vign_test/tidyquant/vignettes/TQ04-charting-with-tidyquant_files/figure-html/unnamed-chunk-26-1.png 1200x900 pixels, 3x8 bits/pixel, RGB Input IDAT size = 149847 bytes Input file size = 150141 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 124608 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 124608 Output IDAT size = 124608 bytes (25239 bytes decrease) Output file size = 124686 bytes (25455 bytes = 16.95% decrease) --- finished re-building ‘TQ04-charting-with-tidyquant.Rmd’ --- re-building ‘TQ05-performance-analysis-with-tidyquant.Rmd’ using rmarkdown Quitting from lines 112-117 [unnamed-chunk-6] (TQ05-performance-analysis-with-tidyquant.Rmd) Error: processing vignette 'TQ05-performance-analysis-with-tidyquant.Rmd' failed with diagnostics: ℹ In argument: `nested.col = purrr::map(...)`. ℹ In group 1: `symbol = "AAPL"`. Caused by error in `purrr::map()`: ℹ In index: 1. Caused by error in `.coefficients()`: ! "package:RobStatTM" %in% search() || requireNamespace("RobStatTM", .... is not TRUE --- failed re-building ‘TQ05-performance-analysis-with-tidyquant.Rmd’ --- re-building ‘TQ06-excel-in-r.Rmd’ using rmarkdown --- finished re-building ‘TQ06-excel-in-r.Rmd’ SUMMARY: processing the following file failed: ‘TQ05-performance-analysis-with-tidyquant.Rmd’ Error: Vignette re-building failed. Execution halted Package: tidyquant Check: tests New result: ERROR Running ‘testthat.R’ [6s/11s] Running the tests in ‘tests/testthat.R’ failed. Complete output: > # This file is part of the standard setup for testthat. > # It is recommended that you do not modify it. > # > # Where should you do additional test configuration? > # Learn more about the roles of various files in: > # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview > # * https://testthat.r-lib.org/articles/special-files.html > > library(testthat) > library(tidyquant) ── Attaching core tidyquant packages ──────────────────────── tidyquant 1.0.9 ── ✔ PerformanceAnalytics 2.0.8 ✔ quantmod 0.4.26 ✔ TTR 0.24.4 ✔ xts 0.14.1 ── Conflicts ────────────────────────────────────────── tidyquant_conflicts() ── ✖ zoo::as.Date() masks base::as.Date() ✖ zoo::as.Date.numeric() masks base::as.Date.numeric() ✖ PerformanceAnalytics::legend() masks graphics::legend() ✖ quantmod::summary() masks base::summary() ℹ Use the conflicted package () to force all conflicts to become errors > > test_check("tidyquant") [ FAIL 1 | WARN 0 | SKIP 4 | PASS 61 ] ══ Skipped tests (4) ═══════════════════════════════════════════════════════════ • On CRAN (4): 'test-index-tq_index.R:16:5', 'test-index_tq_exchange.R:18:5', 'test-tq_portfolio.R:4:1', 'test-tq_transmute.R:2:1' ══ Failed tests ════════════════════════════════════════════════════════════════ ── Error ('test-tq_performance.R:27:1'): (code run outside of `test_that()`) ─── Error in `dplyr::mutate(., nested.col = purrr::map(.x = data, .f = tq_performance_.tbl_df, Ra = Ra, Rb = Rb, performance_fun = performance_fun, ...))`: ℹ In argument: `nested.col = purrr::map(...)`. ℹ In group 1: `symbol = "AAPL"`. Caused by error in `purrr::map()`: ℹ In index: 1. Caused by error in `.coefficients()`: ! "package:RobStatTM" %in% search() || requireNamespace("RobStatTM", .... is not TRUE [ FAIL 1 | WARN 0 | SKIP 4 | PASS 61 ] Error: Test failures Execution halted