From fb6f65c72121fc0ee492c2c46fc8d831393291ee Mon Sep 17 00:00:00 2001 From: YunyiShen Date: Wed, 11 Aug 2021 13:23:58 -0500 Subject: [PATCH] prepare for CRAN patch due to Rcpp --- DESCRIPTION | 2 +- vignettes/glasso.Rmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 9f96814..bb7934b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: CARlasso Title: Conditional Autoregressive LASSO -Version: 0.1.1 +Version: 0.1.2 Authors@R: c(person("Yunyi", "Shen", email = "yshen99@wisc.edu", role = c("aut", "cre"),comment = c(ORCID = "0000-0003-2779-6507")),person("Claudia","Solis-Lemus", role = "aut", comment = c(ORCID = "0000-0002-9789-8915"))) Maintainer: Yunyi Shen Description: Algorithms to fit Bayesian Conditional Autoregressive LASSO with automatic and adaptive shrinkage described in Shen and Solis-Lemus (2020) . diff --git a/vignettes/glasso.Rmd b/vignettes/glasso.Rmd index 0ba6109..10e2796 100644 --- a/vignettes/glasso.Rmd +++ b/vignettes/glasso.Rmd @@ -35,7 +35,7 @@ head(dt) Unlike `CARlasso`, we do not really need to have a formula (because we do not have predictors, only responses). To use the Normal version, we should set `link="identity"` which is the default. -```{r ar1example_first} +```{r ar1example_first, eval = FALSE} glassores <- bGlasso(data = dt) plot(glassores) ```