diff --git a/NAMESPACE b/NAMESPACE
index f0b0e341d..6c158caa5 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -1,21 +1,15 @@
# Generated by roxygen2: do not edit by hand
S3method(complete,data.frame)
-S3method(complete_,data.frame)
S3method(drop_na,data.frame)
-S3method(drop_na_,data.frame)
S3method(expand,data.frame)
S3method(expand,grouped_df)
-S3method(expand_,data.frame)
S3method(extract,data.frame)
-S3method(extract_,data.frame)
S3method(fill,data.frame)
-S3method(fill_,data.frame)
S3method(full_seq,Date)
S3method(full_seq,POSIXct)
S3method(full_seq,numeric)
S3method(gather,data.frame)
-S3method(gather_,data.frame)
S3method(nest,data.frame)
S3method(nest,grouped_df)
S3method(nest,tbl_df)
@@ -26,13 +20,9 @@ S3method(pivot_wider,data.frame)
S3method(replace_na,data.frame)
S3method(replace_na,default)
S3method(separate,data.frame)
-S3method(separate_,data.frame)
S3method(separate_rows,data.frame)
-S3method(separate_rows_,data.frame)
S3method(spread,data.frame)
-S3method(spread_,data.frame)
S3method(unite,data.frame)
-S3method(unite_,data.frame)
S3method(unnest,data.frame)
S3method(unnest,rowwise_df)
S3method(unnest_legacy,data.frame)
diff --git a/NEWS.md b/NEWS.md
index c95bc4ba7..784a57e86 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,10 @@
# tidyr (development version)
+* All lazyeval functions are now defunct. They have been deprecated for awhile
+ now and will be completely removed in the next minor release of tidyr. (See
+ [lifecycle](https://lifecycle.r-lib.org/articles/lifecycle.html) for
+ details on deprecation stages).
+
* `expand()`, `crossing()`, and `nesting()` now correctly retain `NA` values of
factors (#1275).
diff --git a/R/dep-lazyeval.R b/R/dep-lazyeval.R
index 5855f402d..ecb2b3507 100644
--- a/R/dep-lazyeval.R
+++ b/R/dep-lazyeval.R
@@ -1,9 +1,9 @@
# nocov start
-#' Deprecated SE versions of main verbs
+#' Defunct SE versions of main verbs
#'
#' @description
-#' `r lifecycle::badge("deprecated")`
+#' `r lifecycle::badge("defunct")`
#'
#' tidyr used to offer twin versions of each verb suffixed with an
#' underscore. These versions had standard evaluation (SE) semantics:
@@ -29,51 +29,33 @@ NULL
#' @inheritParams complete
#' @export
complete_ <- function(data, cols, fill = list(), ...) {
- lifecycle::deprecate_warn("1.0.0", "complete_()", "complete()")
- UseMethod("complete_")
-}
-#' @export
-complete_.data.frame <- function(data, cols, fill = list(), ...) {
- cols <- compat_lazy_dots(cols, caller_env())
- complete(data, !!! cols, fill = fill)
+ lifecycle::deprecate_stop("1.2.0", "complete_()", "complete()")
}
#' @rdname deprecated-se
#' @export
drop_na_ <- function(data, vars) {
- lifecycle::deprecate_warn("1.0.0", "drop_na_()", "drop_na()")
- UseMethod("drop_na_")
-}
-#' @export
-drop_na_.data.frame <- function(data, vars) {
- drop_na(data, !!! vars)
+ lifecycle::deprecate_stop("1.2.0", "drop_na_()", "drop_na()")
}
#' @rdname deprecated-se
#' @param expand_cols Character vector of column names to be expanded.
#' @export
expand_ <- function(data, dots, ...) {
- lifecycle::deprecate_warn("1.0.0", "expand_()", "expand()")
- UseMethod("expand_")
-}
-#' @export
-expand_.data.frame <- function(data, dots, ...) {
- dots <- compat_lazy_dots(dots, caller_env())
- expand(data, !!! dots)
+ lifecycle::deprecate_stop("1.2.0", "expand_()", "expand()")
}
+
#' @rdname deprecated-se
#' @param x For `nesting_` and `crossing_` a list of variables.
#' @export
crossing_ <- function(x) {
- lifecycle::deprecate_warn("1.0.0", "crossing_()", "crossing()")
- x <- compat_lazy_dots(x, caller_env())
- crossing(!!! x)
+ lifecycle::deprecate_stop("1.2.0", "crossing_()", "crossing()")
}
+
#' @rdname deprecated-se
#' @export
nesting_ <- function(x) {
- x <- compat_lazy_dots(x, caller_env())
- nesting(!!! x)
+ lifecycle::deprecate_stop("1.2.0", "nesting_()", "nesting()")
}
#' @rdname deprecated-se
@@ -81,21 +63,7 @@ nesting_ <- function(x) {
#' @export
extract_ <- function(data, col, into, regex = "([[:alnum:]]+)", remove = TRUE,
convert = FALSE, ...) {
- lifecycle::deprecate_warn("1.0.0", "extract_()", "extract()")
- UseMethod("extract_")
-}
-#' @export
-extract_.data.frame <- function(data, col, into, regex = "([[:alnum:]]+)",
- remove = TRUE, convert = FALSE, ...) {
- col <- compat_lazy(col, caller_env())
- extract(data,
- col = !! col,
- into = into,
- regex = regex,
- remove = remove,
- convert = convert,
- ...
- )
+ lifecycle::deprecate_stop("1.2.0", "extract_()", "extract()")
}
#' @rdname deprecated-se
@@ -103,12 +71,7 @@ extract_.data.frame <- function(data, col, into, regex = "([[:alnum:]]+)",
#' @param fill_cols Character vector of column names.
#' @export
fill_ <- function(data, fill_cols, .direction = c("down", "up")) {
- UseMethod("fill_")
-}
-#' @export
-fill_.data.frame <- function(data, fill_cols, .direction = c("down", "up", "downup", "updown")) {
- vars <- syms(fill_cols)
- fill(data, !!! vars, .direction = .direction)
+ lifecycle::deprecate_stop("1.2.0", "fill_()", "fill()")
}
#' @rdname deprecated-se
@@ -121,24 +84,7 @@ fill_.data.frame <- function(data, fill_cols, .direction = c("down", "up", "down
#' @export
gather_ <- function(data, key_col, value_col, gather_cols, na.rm = FALSE,
convert = FALSE, factor_key = FALSE) {
- UseMethod("gather_")
-}
-#' @export
-gather_.data.frame <- function(data, key_col, value_col, gather_cols,
- na.rm = FALSE, convert = FALSE,
- factor_key = FALSE) {
- key_col <- sym(key_col)
- value_col <- sym(value_col)
- gather_cols <- syms(gather_cols)
-
- gather(data,
- key = !! key_col,
- value = !! value_col,
- !!! gather_cols,
- na.rm = na.rm,
- convert = convert,
- factor_key = factor_key
- )
+ lifecycle::deprecate_stop("1.2.0", "gather_()", "gather()")
}
#' @rdname deprecated-se
@@ -154,13 +100,7 @@ nest_ <- function(...) {
#' @export
separate_rows_ <- function(data, cols, sep = "[^[:alnum:].]+",
convert = FALSE) {
- UseMethod("separate_rows_")
-}
-#' @export
-separate_rows_.data.frame <- function(data, cols, sep = "[^[:alnum:].]+",
- convert = FALSE) {
- cols <- syms(cols)
- separate_rows(data, !!! cols, sep = sep, convert = convert)
+ lifecycle::deprecate_stop("1.2.0", "separate_rows_()", "separate_rows()")
}
#' @rdname deprecated-se
@@ -168,46 +108,16 @@ separate_rows_.data.frame <- function(data, cols, sep = "[^[:alnum:].]+",
#' @export
separate_ <- function(data, col, into, sep = "[^[:alnum:]]+", remove = TRUE,
convert = FALSE, extra = "warn", fill = "warn", ...) {
- UseMethod("separate_")
-}
-#' @export
-separate_.data.frame <- function(data, col, into, sep = "[^[:alnum:]]+",
- remove = TRUE, convert = FALSE,
- extra = "warn", fill = "warn", ...) {
- col <- sym(col)
- separate(data,
- col = !! col,
- into = into,
- sep = sep,
- remove = remove,
- convert = convert,
- extra = extra,
- fill = fill,
- ...
- )
+ lifecycle::deprecate_stop("1.2.0", "separate_()", "separate()")
}
+
#' @rdname deprecated-se
#' @inheritParams spread
#' @param key_col,value_col Strings giving names of key and value cols.
#' @export
spread_ <- function(data, key_col, value_col, fill = NA, convert = FALSE,
drop = TRUE, sep = NULL) {
- UseMethod("spread_")
-}
-#' @export
-spread_.data.frame <- function(data, key_col, value_col, fill = NA,
- convert = FALSE, drop = TRUE, sep = NULL) {
- key_col <- sym(key_col)
- value_col <- sym(value_col)
-
- spread(data,
- key = !! key_col,
- value = !! value_col,
- fill = fill,
- convert = convert,
- drop = drop,
- sep = sep
- )
+ lifecycle::deprecate_stop("1.2.0", "spread_()", "spread()")
}
#' @rdname deprecated-se
@@ -215,13 +125,7 @@ spread_.data.frame <- function(data, key_col, value_col, fill = NA,
#' @param from Names of existing columns as character vector
#' @export
unite_ <- function(data, col, from, sep = "_", remove = TRUE) {
- UseMethod("unite_")
-}
-#' @export
-unite_.data.frame <- function(data, col, from, sep = "_", remove = TRUE) {
- col <- quo_get_expr(compat_lazy(col, caller_env()))
- from <- syms(from)
- unite(data, !! col, !!! from, sep = sep, remove = remove)
+ lifecycle::deprecate_stop("1.2.0", "unite_()", "unite()")
}
#' @rdname deprecated-se
diff --git a/man/deprecated-se.Rd b/man/deprecated-se.Rd
index 211f48d12..ad87dc74c 100644
--- a/man/deprecated-se.Rd
+++ b/man/deprecated-se.Rd
@@ -16,7 +16,7 @@
\alias{spread_}
\alias{unite_}
\alias{unnest_}
-\title{Deprecated SE versions of main verbs}
+\title{Defunct SE versions of main verbs}
\usage{
complete_(data, cols, fill = list(), ...)
@@ -165,7 +165,7 @@ unnesting.}
\item{expand_cols}{Character vector of column names to be expanded.}
}
\description{
-\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#deprecated}{\figure{lifecycle-deprecated.svg}{options: alt='[Deprecated]'}}}{\strong{[Deprecated]}}
+\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#defunct}{\figure{lifecycle-defunct.svg}{options: alt='[Defunct]'}}}{\strong{[Defunct]}}
tidyr used to offer twin versions of each verb suffixed with an
underscore. These versions had standard evaluation (SE) semantics:
diff --git a/revdep/README.md b/revdep/README.md
index 42947644a..b6b3485fd 100644
--- a/revdep/README.md
+++ b/revdep/README.md
@@ -1,46 +1,370 @@
# Revdeps
-## Failed to check (39)
+## Failed to check (354)
-|package |version |error |warning |note |
-|:------------|:-------|:-----|:-------|:----|
-|airt |? | | | |
-|andurinha |? | | | |
-|biscale |? | | | |
-|cat2cat |? | | | |
-|CB2 |? | | | |
-|comperes |? | | | |
-|coxed |? | | | |
-|cpr |? | | | |
-|datawizard |? | | | |
-|dexterMST |? | | | |
-|dimRed |? | | | |
-|diseq |? | | | |
-|eechidna |? | | | |
-|eurostat |? | | | |
-|explor |? | | | |
-|fitzRoy |? | | | |
-|fixerapi |? | | | |
-|fmriqa |? | | | |
-|ftExtra |? | | | |
-|geofi |? | | | |
-|metagam |? | | | |
-|OncoBayes2 |? | | | |
-|PupilPre |? | | | |
-|rabhit |? | | | |
-|Radviz |? | | | |
-|RavenR |? | | | |
-|raw |? | | | |
-|Rilostat |? | | | |
-|RKorAPClient |? | | | |
-|rmdcev |1.2.4 |1 | | |
-|RtutoR |? | | | |
-|scoper |? | | | |
-|SCORPIUS |? | | | |
-|SimBIID |? | | | |
-|tigger |? | | | |
-|tinyarray |? | | | |
-|vivid |? | | | |
-|wrswoR |? | | | |
-|XPolaris |? | | | |
+|package |version |error |warning |note |
+|:-------------------------|:-------|:-----|:-------|:----|
+|aba |? | | | |
+|abstr |? | | | |
+|adheRenceRX |? | | | |
+|adventr |? | | | |
+|afex |? | | | |
+|AirSensor |? | | | |
+|airt |? | | | |
+|alakazam |? | | | |
+|alphavantager |? | | | |
+|amt |? | | | |
+|anipaths |? | | | |
+|anomalize |? | | | |
+|ARTool |? | | | |
+|arulesViz |? | | | |
+|auk |? | | | |
+|autoTS |? | | | |
+|banter |? | | | |
+|baseballDBR |? | | | |
+|basket |? | | | |
+|batchtma |? | | | |
+|BayesPostEst |? | | | |
+|bayestestR |? | | | |
+|bdl |? | | | |
+|beadplexr |? | | | |
+|beezdemand |? | | | |
+|bggum |? | | | |
+|BifactorIndicesCalculator |? | | | |
+|bigtime |? | | | |
+|biomod2 |? | | | |
+|bioOED |? | | | |
+|bisect |? | | | |
+|BMisc |? | | | |
+|BMTME |? | | | |
+|bnmonitor |? | | | |
+|NA |? | | | |
+|broom |? | | | |
+|bruceR |? | | | |
+|bssm |? | | | |
+|NA |? | | | |
+|bwsTools |? | | | |
+|catlearn |? | | | |
+|CausalGPS |? | | | |
+|CB2 |? | | | |
+|NA |? | | | |
+|circumplex |? | | | |
+|CKMRpop |? | | | |
+|clusterPower |? | | | |
+|ClustImpute |? | | | |
+|CNVScope |? | | | |
+|cocktailApp |? | | | |
+|CohortPlat |? | | | |
+|NA |? | | | |
+|composits |? | | | |
+|concordance |2.0.0 |1 | | |
+|CoNI |? | | | |
+|contrast |? | | | |
+|convergEU |? | | | |
+|coveffectsplot |? | | | |
+|coxed |? | | | |
+|cpr |? | | | |
+|cpss |? | | | |
+|crawl |? | | | |
+|NA |? | | | |
+|DAMisc |? | | | |
+|datafsm |? | | | |
+|depigner |? | | | |
+|NA |? | | | |
+|dexter |? | | | |
+|dfoliatR |? | | | |
+|did |? | | | |
+|did2s |? | | | |
+|diffudist |? | | | |
+|digitalDLSorteR |? | | | |
+|diseq |? | | | |
+|disto |? | | | |
+|dlookr |? | | | |
+|dlstats |? | | | |
+|dowser |? | | | |
+|dscore |? | | | |
+|DSSAT |? | | | |
+|dumbbell |? | | | |
+|dynfeature |? | | | |
+|NA |? | | | |
+|dyngen |? | | | |
+|dynparam |? | | | |
+|eatRep |? | | | |
+|ebirdst |? | | | |
+|ecoCopula |? | | | |
+|EFAtools |? | | | |
+|eiCompare |? | | | |
+|ENMeval |? | | | |
+|epidemia |? | | | |
+|EpiNow2 |? | | | |
+|epocakir |? | | | |
+|ERSA |? | | | |
+|NA |? | | | |
+|EventStudy |? | | | |
+|explor |? | | | |
+|NA |? | | | |
+|fable |? | | | |
+|factoextra |? | | | |
+|fastR2 |? | | | |
+|file2meco |? | | | |
+|finalfit |? | | | |
+|fitbitr |? | | | |
+|fivethirtyeight |? | | | |
+|flexsurv |? | | | |
+|foieGras |? | | | |
+|foodingraph |? | | | |
+|forestecology |? | | | |
+|forestmangr |? | | | |
+|FORTLS |? | | | |
+|forwards |? | | | |
+|fourierin |? | | | |
+|FSinR |? | | | |
+|garchmodels |? | | | |
+|geneticae |? | | | |
+|geofi |? | | | |
+|geomander |? | | | |
+|GeoTcgaData |? | | | |
+|ggfortify |? | | | |
+|ggheatmap |? | | | |
+|ggprism |? | | | |
+|ggpubr |? | | | |
+|ggseg |? | | | |
+|ggspectra |? | | | |
+|ggstatsplot |? | | | |
+|ggVennDiagram |? | | | |
+|GillespieSSA2 |? | | | |
+|graph4lg |? | | | |
+|greed |? | | | |
+|gtsummary |? | | | |
+|gwasrapidd |? | | | |
+|hacksig |? | | | |
+|harmony |? | | | |
+|hdme |? | | | |
+|healthyR.ai |? | | | |
+|heatwaveR |? | | | |
+|HTSSIP |? | | | |
+|huito |? | | | |
+|IBMPopSim |? | | | |
+|idiogramFISH |? | | | |
+|iglu |? | | | |
+|imputeTestbench |? | | | |
+|insane |? | | | |
+|inti |? | | | |
+|iNZightPlots |? | | | |
+|isotracer |? | | | |
+|jackstrap |? | | | |
+|jrt |? | | | |
+|kibior |? | | | |
+|KMunicate |? | | | |
+|lares |? | | | |
+|lcsm |? | | | |
+|LDAShiny |? | | | |
+|lddmm |? | | | |
+|linkspotter |? | | | |
+|localIV |? | | | |
+|loon.ggplot |? | | | |
+|NA |? | | | |
+|mapbayr |? | | | |
+|MARSS |? | | | |
+|matman |? | | | |
+|meltt |? | | | |
+|meshed |? | | | |
+|MetabolicSurv |? | | | |
+|metajam |? | | | |
+|metamicrobiomeR |? | | | |
+|mFD |? | | | |
+|mice |? | | | |
+|miceafter |? | | | |
+|microbial |? | | | |
+|MicroSEC |? | | | |
+|migraph |? | | | |
+|missCompare |? | | | |
+|miWQS |? | | | |
+|mixpoissonreg |? | | | |
+|mixtur |? | | | |
+|modeltime |? | | | |
+|modeltime.gluonts |? | | | |
+|modeltime.h2o |? | | | |
+|molnet |? | | | |
+|MortalityLaws |? | | | |
+|MPTmultiverse |? | | | |
+|mrf2d |? | | | |
+|mrgsim.sa |? | | | |
+|MSEtool |? | | | |
+|mudata2 |? | | | |
+|multifear |? | | | |
+|multinma |? | | | |
+|naniar |? | | | |
+|nCov2019 |? | | | |
+|NetFACS |? | | | |
+|nevada |? | | | |
+|NFP |? | | | |
+|NIMAA |? | | | |
+|nlmeVPC |? | | | |
+|nlrx |? | | | |
+|nmm |? | | | |
+|nodeSub |? | | | |
+|obliqueRSF |? | | | |
+|omicwas |? | | | |
+|omu |? | | | |
+|onemap |? | | | |
+|OOS |? | | | |
+|openair |? | | | |
+|oppr |? | | | |
+|OutliersO3 |? | | | |
+|outreg |? | | | |
+|packDAMipd |? | | | |
+|pammtools |? | | | |
+|panelr |? | | | |
+|pbixr |? | | | |
+|pguIMP |? | | | |
+|PLNmodels |? | | | |
+|plot3logit |? | | | |
+|plsmod |? | | | |
+|pollster |? | | | |
+|portalr |? | | | |
+|posterior |? | | | |
+|powdR |? | | | |
+|PPforest |? | | | |
+|prettyglm |? | | | |
+|prioriactions |? | | | |
+|processR |? | | | |
+|protti |? | | | |
+|psfmi |? | | | |
+|psycModel |? | | | |
+|psyntur |? | | | |
+|queuecomputer |? | | | |
+|quid |? | | | |
+|quokar |? | | | |
+|rabhit |? | | | |
+|rADA |? | | | |
+|radiant.basics |? | | | |
+|radiant.model |? | | | |
+|Radviz |? | | | |
+|rattle |? | | | |
+|RavenR |? | | | |
+|raw |? | | | |
+|refund.shiny |? | | | |
+|registr |? | | | |
+|reporter |? | | | |
+|RFishBC |? | | | |
+|rfPermute |? | | | |
+|RNeXML |? | | | |
+|robber |? | | | |
+|rPACI |? | | | |
+|rprev |? | | | |
+|rsetse |? | | | |
+|RSSL |? | | | |
+|rticulate |? | | | |
+|RTL |? | | | |
+|rtsVis |? | | | |
+|RVA |? | | | |
+|RxODE |? | | | |
+|saotd |? | | | |
+|sbo |? | | | |
+|scoper |? | | | |
+|SCORPIUS |? | | | |
+|secuTrialR |? | | | |
+|see |? | | | |
+|SEERaBomb |? | | | |
+|sejmRP |? | | | |
+|SenTinMixt |? | | | |
+|shazam |? | | | |
+|ShellChron |? | | | |
+|ShinyItemAnalysis |? | | | |
+|ShortForm |? | | | |
+|SIBER |? | | | |
+|Signac |? | | | |
+|SimplyAgree |? | | | |
+|simts |? | | | |
+|sismonr |? | | | |
+|sjPlot |? | | | |
+|sjstats |? | | | |
+|sknifedatar |? | | | |
+|SLOPE |? | | | |
+|smog |? | | | |
+|SNPassoc |? | | | |
+|soc.ca |? | | | |
+|SPARTAAS |? | | | |
+|spatialRF |? | | | |
+|spatialTIME |? | | | |
+|specr |? | | | |
+|stacks |? | | | |
+|staRdom |? | | | |
+|stars |? | | | |
+|starvz |? | | | |
+|stats19 |? | | | |
+|statsearchanalyticsr |? | | | |
+|statsExpressions |? | | | |
+|STRMPS |? | | | |
+|suddengains |? | | | |
+|supernova |? | | | |
+|Superpower |? | | | |
+|survivalAnalysis |? | | | |
+|survminer |? | | | |
+|survParamSim |? | | | |
+|sweep |? | | | |
+|swfscAirDAS |? | | | |
+|swfscDAS |? | | | |
+|swfscMisc |? | | | |
+|SWMPr |? | | | |
+|symphony |? | | | |
+|TCIU |? | | | |
+|TestDimorph |? | | | |
+|TestGardener |? | | | |
+|tetraclasse |? | | | |
+|text2sdg |? | | | |
+|textmineR |? | | | |
+|TextMiningGUI |? | | | |
+|textrecipes |? | | | |
+|tfestimators |? | | | |
+|tidybayes |? | | | |
+|tidylda |? | | | |
+|tidylog |? | | | |
+|tidyMicro |? | | | |
+|tidyquant |? | | | |
+|tidyqwi |? | | | |
+|tidyseurat |? | | | |
+|tidytext |? | | | |
+|tigger |? | | | |
+|timetk |? | | | |
+|tinyarray |? | | | |
+|tosr |? | | | |
+|truthiness |? | | | |
+|TSstudio |? | | | |
+|UCSCXenaShiny |? | | | |
+|umiAnalyzer |? | | | |
+|utr.annotation |? | | | |
+|valr |? | | | |
+|varsExplore |? | | | |
+|vcfR |? | | | |
+|viewpoly |? | | | |
+|vinereg |? | | | |
+|visae |? | | | |
+|vlad |? | | | |
+|vmeasur |? | | | |
+|WASP |? | | | |
+|waves |? | | | |
+|webr |? | | | |
+|weibulltools |? | | | |
+|WeMix |? | | | |
+|whomds |? | | | |
+|widyr |? | | | |
+|wordbankr |? | | | |
+|wpa |? | | | |
+|wrswoR |? | | | |
+|WRTDStidal |? | | | |
+|wyz.code.testthat |? | | | |
+|xmrr |? | | | |
+|xpose.nlmixr |? | | | |
+|xspliner |? | | | |
+
+## New problems (4)
+
+|package |version |error |warning |note |
+|:------------------------------------------------------|:-------|:------|:-------|:------|
+|[cogmapr](problems.md#cogmapr) |0.9.2 |__+2__ | | |
+|[dartR](problems.md#dartr) |1.9.9.1 |__+1__ | | |
+|[InjurySeverityScore](problems.md#injuryseverityscore) |0.0.0.2 |-1 | |__+1__ |
+|[modeltime.resample](problems.md#modeltimeresample) |0.2.0 |__+1__ | |1 |
diff --git a/revdep/cran.md b/revdep/cran.md
index ad4ffead8..de82ddef5 100644
--- a/revdep/cran.md
+++ b/revdep/cran.md
@@ -1,50 +1,371 @@
## revdepcheck results
-We checked 1210 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
+We checked 1437 reverse dependencies (1427 from CRAN + 10 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.
- * We saw 0 new problems
- * We failed to check 39 packages
+ * We saw 4 new problems
+ * We failed to check 344 packages
Issues with CRAN packages are summarised below.
+### New problems
+(This reports the first line of each new failure)
+
+* cogmapr
+ checking examples ... ERROR
+ checking tests ... ERROR
+
+* dartR
+ checking examples ... ERROR
+
+* InjurySeverityScore
+ checking LazyData ... NOTE
+
+* modeltime.resample
+ checking tests ... ERROR
+
### Failed to check
-* airt (NA)
-* andurinha (NA)
-* biscale (NA)
-* cat2cat (NA)
-* CB2 (NA)
-* comperes (NA)
-* coxed (NA)
-* cpr (NA)
-* datawizard (NA)
-* dexterMST (NA)
-* dimRed (NA)
-* diseq (NA)
-* eechidna (NA)
-* eurostat (NA)
-* explor (NA)
-* fitzRoy (NA)
-* fixerapi (NA)
-* fmriqa (NA)
-* ftExtra (NA)
-* geofi (NA)
-* metagam (NA)
-* OncoBayes2 (NA)
-* PupilPre (NA)
-* rabhit (NA)
-* Radviz (NA)
-* RavenR (NA)
-* raw (NA)
-* Rilostat (NA)
-* RKorAPClient (NA)
-* rmdcev (NA)
-* RtutoR (NA)
-* scoper (NA)
-* SCORPIUS (NA)
-* SimBIID (NA)
-* tigger (NA)
-* tinyarray (NA)
-* vivid (NA)
-* wrswoR (NA)
-* XPolaris (NA)
+* aba (NA)
+* abstr (NA)
+* adheRenceRX (NA)
+* adventr (NA)
+* afex (NA)
+* AirSensor (NA)
+* airt (NA)
+* alakazam (NA)
+* alphavantager (NA)
+* amt (NA)
+* anipaths (NA)
+* anomalize (NA)
+* ARTool (NA)
+* arulesViz (NA)
+* auk (NA)
+* autoTS (NA)
+* banter (NA)
+* baseballDBR (NA)
+* basket (NA)
+* batchtma (NA)
+* BayesPostEst (NA)
+* bayestestR (NA)
+* bdl (NA)
+* beadplexr (NA)
+* beezdemand (NA)
+* bggum (NA)
+* BifactorIndicesCalculator (NA)
+* bigtime (NA)
+* biomod2 (NA)
+* bioOED (NA)
+* bisect (NA)
+* BMisc (NA)
+* BMTME (NA)
+* bnmonitor (NA)
+* broom (NA)
+* bruceR (NA)
+* bssm (NA)
+* bwsTools (NA)
+* catlearn (NA)
+* CausalGPS (NA)
+* CB2 (NA)
+* circumplex (NA)
+* CKMRpop (NA)
+* clusterPower (NA)
+* ClustImpute (NA)
+* CNVScope (NA)
+* cocktailApp (NA)
+* CohortPlat (NA)
+* composits (NA)
+* concordance (NA)
+* CoNI (NA)
+* contrast (NA)
+* convergEU (NA)
+* coveffectsplot (NA)
+* coxed (NA)
+* cpr (NA)
+* cpss (NA)
+* crawl (NA)
+* DAMisc (NA)
+* datafsm (NA)
+* depigner (NA)
+* dexter (NA)
+* dfoliatR (NA)
+* did (NA)
+* did2s (NA)
+* diffudist (NA)
+* digitalDLSorteR (NA)
+* diseq (NA)
+* disto (NA)
+* dlookr (NA)
+* dlstats (NA)
+* dowser (NA)
+* dscore (NA)
+* DSSAT (NA)
+* dumbbell (NA)
+* dynfeature (NA)
+* dyngen (NA)
+* dynparam (NA)
+* eatRep (NA)
+* ebirdst (NA)
+* ecoCopula (NA)
+* EFAtools (NA)
+* eiCompare (NA)
+* ENMeval (NA)
+* epidemia (NA)
+* EpiNow2 (NA)
+* epocakir (NA)
+* ERSA (NA)
+* EventStudy (NA)
+* explor (NA)
+* fable (NA)
+* factoextra (NA)
+* fastR2 (NA)
+* file2meco (NA)
+* finalfit (NA)
+* fitbitr (NA)
+* fivethirtyeight (NA)
+* flexsurv (NA)
+* foieGras (NA)
+* foodingraph (NA)
+* forestecology (NA)
+* forestmangr (NA)
+* FORTLS (NA)
+* forwards (NA)
+* fourierin (NA)
+* FSinR (NA)
+* garchmodels (NA)
+* geneticae (NA)
+* geofi (NA)
+* geomander (NA)
+* GeoTcgaData (NA)
+* ggfortify (NA)
+* ggheatmap (NA)
+* ggprism (NA)
+* ggpubr (NA)
+* ggseg (NA)
+* ggspectra (NA)
+* ggstatsplot (NA)
+* ggVennDiagram (NA)
+* GillespieSSA2 (NA)
+* graph4lg (NA)
+* greed (NA)
+* gtsummary (NA)
+* gwasrapidd (NA)
+* hacksig (NA)
+* harmony (NA)
+* hdme (NA)
+* healthyR.ai (NA)
+* heatwaveR (NA)
+* HTSSIP (NA)
+* huito (NA)
+* IBMPopSim (NA)
+* idiogramFISH (NA)
+* iglu (NA)
+* imputeTestbench (NA)
+* insane (NA)
+* inti (NA)
+* iNZightPlots (NA)
+* isotracer (NA)
+* jackstrap (NA)
+* jrt (NA)
+* kibior (NA)
+* KMunicate (NA)
+* lares (NA)
+* lcsm (NA)
+* LDAShiny (NA)
+* lddmm (NA)
+* linkspotter (NA)
+* localIV (NA)
+* loon.ggplot (NA)
+* mapbayr (NA)
+* MARSS (NA)
+* matman (NA)
+* meltt (NA)
+* meshed (NA)
+* MetabolicSurv (NA)
+* metajam (NA)
+* metamicrobiomeR (NA)
+* mFD (NA)
+* mice (NA)
+* miceafter (NA)
+* microbial (NA)
+* MicroSEC (NA)
+* migraph (NA)
+* missCompare (NA)
+* miWQS (NA)
+* mixpoissonreg (NA)
+* mixtur (NA)
+* modeltime (NA)
+* modeltime.gluonts (NA)
+* modeltime.h2o (NA)
+* molnet (NA)
+* MortalityLaws (NA)
+* MPTmultiverse (NA)
+* mrf2d (NA)
+* mrgsim.sa (NA)
+* MSEtool (NA)
+* mudata2 (NA)
+* multifear (NA)
+* multinma (NA)
+* naniar (NA)
+* nCov2019 (NA)
+* NetFACS (NA)
+* nevada (NA)
+* NFP (NA)
+* NIMAA (NA)
+* nlmeVPC (NA)
+* nlrx (NA)
+* nmm (NA)
+* nodeSub (NA)
+* obliqueRSF (NA)
+* omicwas (NA)
+* omu (NA)
+* onemap (NA)
+* OOS (NA)
+* openair (NA)
+* oppr (NA)
+* OutliersO3 (NA)
+* outreg (NA)
+* packDAMipd (NA)
+* pammtools (NA)
+* panelr (NA)
+* pbixr (NA)
+* pguIMP (NA)
+* PLNmodels (NA)
+* plot3logit (NA)
+* plsmod (NA)
+* pollster (NA)
+* portalr (NA)
+* posterior (NA)
+* powdR (NA)
+* PPforest (NA)
+* prettyglm (NA)
+* prioriactions (NA)
+* processR (NA)
+* protti (NA)
+* psfmi (NA)
+* psycModel (NA)
+* psyntur (NA)
+* queuecomputer (NA)
+* quid (NA)
+* quokar (NA)
+* rabhit (NA)
+* rADA (NA)
+* radiant.basics (NA)
+* radiant.model (NA)
+* Radviz (NA)
+* rattle (NA)
+* RavenR (NA)
+* raw (NA)
+* refund.shiny (NA)
+* registr (NA)
+* reporter (NA)
+* RFishBC (NA)
+* rfPermute (NA)
+* RNeXML (NA)
+* robber (NA)
+* rPACI (NA)
+* rprev (NA)
+* rsetse (NA)
+* RSSL (NA)
+* rticulate (NA)
+* RTL (NA)
+* rtsVis (NA)
+* RVA (NA)
+* RxODE (NA)
+* saotd (NA)
+* sbo (NA)
+* scoper (NA)
+* SCORPIUS (NA)
+* secuTrialR (NA)
+* see (NA)
+* SEERaBomb (NA)
+* sejmRP (NA)
+* SenTinMixt (NA)
+* shazam (NA)
+* ShellChron (NA)
+* ShinyItemAnalysis (NA)
+* ShortForm (NA)
+* SIBER (NA)
+* Signac (NA)
+* SimplyAgree (NA)
+* simts (NA)
+* sismonr (NA)
+* sjPlot (NA)
+* sjstats (NA)
+* sknifedatar (NA)
+* SLOPE (NA)
+* smog (NA)
+* SNPassoc (NA)
+* soc.ca (NA)
+* SPARTAAS (NA)
+* spatialRF (NA)
+* spatialTIME (NA)
+* specr (NA)
+* stacks (NA)
+* staRdom (NA)
+* stars (NA)
+* starvz (NA)
+* stats19 (NA)
+* statsearchanalyticsr (NA)
+* statsExpressions (NA)
+* STRMPS (NA)
+* suddengains (NA)
+* supernova (NA)
+* Superpower (NA)
+* survivalAnalysis (NA)
+* survminer (NA)
+* survParamSim (NA)
+* sweep (NA)
+* swfscAirDAS (NA)
+* swfscDAS (NA)
+* swfscMisc (NA)
+* SWMPr (NA)
+* symphony (NA)
+* TCIU (NA)
+* TestDimorph (NA)
+* TestGardener (NA)
+* tetraclasse (NA)
+* text2sdg (NA)
+* textmineR (NA)
+* TextMiningGUI (NA)
+* textrecipes (NA)
+* tfestimators (NA)
+* tidybayes (NA)
+* tidylda (NA)
+* tidylog (NA)
+* tidyMicro (NA)
+* tidyquant (NA)
+* tidyqwi (NA)
+* tidyseurat (NA)
+* tidytext (NA)
+* tigger (NA)
+* timetk (NA)
+* tinyarray (NA)
+* tosr (NA)
+* truthiness (NA)
+* TSstudio (NA)
+* UCSCXenaShiny (NA)
+* umiAnalyzer (NA)
+* utr.annotation (NA)
+* valr (NA)
+* varsExplore (NA)
+* vcfR (NA)
+* viewpoly (NA)
+* vinereg (NA)
+* visae (NA)
+* vlad (NA)
+* vmeasur (NA)
+* WASP (NA)
+* waves (NA)
+* webr (NA)
+* weibulltools (NA)
+* WeMix (NA)
+* whomds (NA)
+* widyr (NA)
+* wordbankr (NA)
+* wpa (NA)
+* wrswoR (NA)
+* WRTDStidal (NA)
+* wyz.code.testthat (NA)
+* xmrr (NA)
+* xpose.nlmixr (NA)
+* xspliner (NA)
diff --git a/revdep/failures.md b/revdep/failures.md
index 9958c21f1..13a1cf353 100644
--- a/revdep/failures.md
+++ b/revdep/failures.md
@@ -1,14 +1,14 @@
-# airt
+# aba
-* Version: 0.2.0
-* GitHub: NA
-* Source code: https://github.com/cran/airt
-* Date/Publication: 2020-11-23 10:50:22 UTC
-* Number of recursive dependencies: 79
+* Version: 0.0.9
+* GitHub: https://github.com/ncullen93/abaR
+* Source code: https://github.com/cran/aba
+* Date/Publication: 2021-12-16 20:50:05 UTC
+* Number of recursive dependencies: 182
-Run `cloud_details(, "airt")` for more info
+Run `cloud_details(, "aba")` for more info
@@ -17,20 +17,22 @@ Run `cloud_details(, "airt")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/airt/new/airt.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/aba/new/aba.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘airt/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘airt’ version ‘0.2.0’
+* using option ‘--no-manual’
+* checking for file ‘aba/DESCRIPTION’ ... OK
+* this is package ‘aba’ version ‘0.0.9’
* package encoding: UTF-8
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Package required but not available: ‘EstCRM’
+...
+ 'pins', 'MuMIn', 'broom.mixed', 'emmeans', 'ggpubr', 'pROC',
+ 'progress', 'OptimalCutpoints', 'tableone', 'longpower', 'reactable',
+ 'psychometric', 'readr', 'writexl'
-Package suggested but not available for checking: ‘ggplot2’
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -45,20 +47,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/airt/old/airt.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/aba/old/aba.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘airt/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘airt’ version ‘0.2.0’
+* using option ‘--no-manual’
+* checking for file ‘aba/DESCRIPTION’ ... OK
+* this is package ‘aba’ version ‘0.0.9’
* package encoding: UTF-8
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Package required but not available: ‘EstCRM’
+...
+ 'pins', 'MuMIn', 'broom.mixed', 'emmeans', 'ggpubr', 'pROC',
+ 'progress', 'OptimalCutpoints', 'tableone', 'longpower', 'reactable',
+ 'psychometric', 'readr', 'writexl'
-Package suggested but not available for checking: ‘ggplot2’
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -70,17 +74,17 @@ Status: 1 ERROR
```
-# andurinha
+# abstr
-* Version: 0.0.2
-* GitHub: https://github.com/noemiallefs/andurinha
-* Source code: https://github.com/cran/andurinha
-* Date/Publication: 2020-08-13 08:40:02 UTC
-* Number of recursive dependencies: 71
+* Version: 0.4.1
+* GitHub: https://github.com/a-b-street/abstr
+* Source code: https://github.com/cran/abstr
+* Date/Publication: 2021-11-30 08:10:05 UTC
+* Number of recursive dependencies: 118
-Run `cloud_details(, "andurinha")` for more info
+Run `cloud_details(, "abstr")` for more info
@@ -89,20 +93,22 @@ Run `cloud_details(, "andurinha")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/andurinha/new/andurinha.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/abstr/new/abstr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘andurinha/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘abstr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘andurinha’ version ‘0.0.2’
+* this is package ‘abstr’ version ‘0.4.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'ggplot2', 'cowplot'
+...
-Package suggested but not available for checking: ‘testthat’
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tmap', 'pct'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -117,20 +123,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/andurinha/old/andurinha.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/abstr/old/abstr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘andurinha/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘abstr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘andurinha’ version ‘0.0.2’
+* this is package ‘abstr’ version ‘0.4.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'ggplot2', 'cowplot'
+...
-Package suggested but not available for checking: ‘testthat’
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tmap', 'pct'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -142,17 +150,17 @@ Status: 1 ERROR
```
-# biscale
+# adheRenceRX
-* Version: 0.2.0
-* GitHub: https://github.com/slu-openGIS/biscale
-* Source code: https://github.com/cran/biscale
-* Date/Publication: 2020-05-06 05:20:03 UTC
-* Number of recursive dependencies: 84
+* Version: 1.0.0
+* GitHub: https://github.com/btbeal/adheRenceRX
+* Source code: https://github.com/cran/adheRenceRX
+* Date/Publication: 2020-11-20 10:40:10 UTC
+* Number of recursive dependencies: 51
-Run `cloud_details(, "biscale")` for more info
+Run `cloud_details(, "adheRenceRX")` for more info
@@ -161,27 +169,24 @@ Run `cloud_details(, "biscale")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/biscale/new/biscale.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/adheRenceRX/new/adheRenceRX.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘biscale/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘adheRenceRX/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘biscale’ version ‘0.2.0’
-* package encoding: UTF-8
+* this is package ‘adheRenceRX’ version ‘1.0.0’
* checking package namespace information ... OK
-...
-* checking data for non-ASCII characters ... OK
-* checking data for ASCII and uncompressed saves ... OK
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
+* checking package dependencies ... ERROR
+Packages required but not available: 'Rcpp', 'anytime', 'lubridate'
+
+Packages suggested but not available for checking: 'testthat', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 WARNING
+Status: 1 ERROR
@@ -191,44 +196,41 @@ Status: 1 WARNING
### CRAN
```
-* using log directory ‘/tmp/workdir/biscale/old/biscale.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/adheRenceRX/old/adheRenceRX.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘biscale/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘adheRenceRX/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘biscale’ version ‘0.2.0’
-* package encoding: UTF-8
+* this is package ‘adheRenceRX’ version ‘1.0.0’
* checking package namespace information ... OK
-...
-* checking data for non-ASCII characters ... OK
-* checking data for ASCII and uncompressed saves ... OK
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
+* checking package dependencies ... ERROR
+Packages required but not available: 'Rcpp', 'anytime', 'lubridate'
+
+Packages suggested but not available for checking: 'testthat', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 WARNING
+Status: 1 ERROR
```
-# cat2cat
+# adventr
-* Version: 0.2.1
-* GitHub: https://github.com/Polkas/cat2cat
-* Source code: https://github.com/cran/cat2cat
-* Date/Publication: 2021-03-27 02:50:02 UTC
-* Number of recursive dependencies: 102
+* Version: 0.1.8
+* GitHub: NA
+* Source code: https://github.com/cran/adventr
+* Date/Publication: 2020-05-05 16:50:06 UTC
+* Number of recursive dependencies: 182
-Run `cloud_details(, "cat2cat")` for more info
+Run `cloud_details(, "adventr")` for more info
@@ -237,19 +239,22 @@ Run `cloud_details(, "cat2cat")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/cat2cat/new/cat2cat.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/adventr/new/adventr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘cat2cat/DESCRIPTION’ ... OK
-* this is package ‘cat2cat’ version ‘0.2.1’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘adventr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘adventr’ version ‘0.1.8’
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Package required but not available: ‘caret’
+...
+ 'sandwich', 'sjstats', 'WRS2'
-Package suggested but not available for checking: ‘testthat’
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -264,19 +269,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/cat2cat/old/cat2cat.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/adventr/old/adventr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘cat2cat/DESCRIPTION’ ... OK
-* this is package ‘cat2cat’ version ‘0.2.1’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘adventr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘adventr’ version ‘0.1.8’
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Package required but not available: ‘caret’
+...
+ 'sandwich', 'sjstats', 'WRS2'
-Package suggested but not available for checking: ‘testthat’
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -288,17 +296,17 @@ Status: 1 ERROR
```
-# CB2
+# afex
-* Version: 1.3.4
-* GitHub: NA
-* Source code: https://github.com/cran/CB2
-* Date/Publication: 2020-07-24 09:42:24 UTC
-* Number of recursive dependencies: 105
+* Version: 1.0-1
+* GitHub: https://github.com/singmann/afex
+* Source code: https://github.com/cran/afex
+* Date/Publication: 2021-07-22 04:40:18 UTC
+* Number of recursive dependencies: 236
-Run `cloud_details(, "CB2")` for more info
+Run `cloud_details(, "afex")` for more info
@@ -307,18 +315,22 @@ Run `cloud_details(, "CB2")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/CB2/new/CB2.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/afex/new/afex.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘CB2/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘afex/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘CB2’ version ‘1.3.4’
+* this is package ‘afex’ version ‘1.0-1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘metap’
+...
+ 'glmmTMB', 'brms', 'rstanarm', 'statmod', 'performance', 'see', 'ez',
+ 'ggResidpanel'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'R.rsp'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -333,18 +345,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/CB2/old/CB2.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/afex/old/afex.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘CB2/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘afex/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘CB2’ version ‘1.3.4’
+* this is package ‘afex’ version ‘1.0-1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘metap’
+...
+ 'glmmTMB', 'brms', 'rstanarm', 'statmod', 'performance', 'see', 'ez',
+ 'ggResidpanel'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'R.rsp'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -356,17 +372,17 @@ Status: 1 ERROR
```
-# comperes
+# AirSensor
-* Version: 0.2.5
-* GitHub: https://github.com/echasnovski/comperes
-* Source code: https://github.com/cran/comperes
-* Date/Publication: 2020-11-23 21:20:02 UTC
-* Number of recursive dependencies: 58
+* Version: 1.0.8
+* GitHub: https://github.com/MazamaScience/AirSensor
+* Source code: https://github.com/cran/AirSensor
+* Date/Publication: 2021-03-12 21:40:09 UTC
+* Number of recursive dependencies: 188
-Run `cloud_details(, "comperes")` for more info
+Run `cloud_details(, "AirSensor")` for more info
@@ -375,27 +391,27 @@ Run `cloud_details(, "comperes")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/comperes/new/comperes.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/AirSensor/new/AirSensor.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘comperes/DESCRIPTION’ ... OK
-* this is package ‘comperes’ version ‘0.2.5’
+* using option ‘--no-manual’
+* checking for file ‘AirSensor/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘AirSensor’ version ‘1.0.8’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘formats.Rmd’ using ‘UTF-8’... OK
- ‘manipulation.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'markdown', 'testthat', 'rmarkdown', 'roxygen2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
@@ -405,44 +421,44 @@ Status: 1 ERROR, 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/comperes/old/comperes.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/AirSensor/old/AirSensor.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘comperes/DESCRIPTION’ ... OK
-* this is package ‘comperes’ version ‘0.2.5’
+* using option ‘--no-manual’
+* checking for file ‘AirSensor/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘AirSensor’ version ‘1.0.8’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘formats.Rmd’ using ‘UTF-8’... OK
- ‘manipulation.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'markdown', 'testthat', 'rmarkdown', 'roxygen2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
```
-# coxed
+# airt
-* Version: 0.3.3
-* GitHub: https://github.com/jkropko/coxed
-* Source code: https://github.com/cran/coxed
-* Date/Publication: 2020-08-02 01:20:07 UTC
-* Number of recursive dependencies: 95
+* Version: 0.2.1
+* GitHub: NA
+* Source code: https://github.com/cran/airt
+* Date/Publication: 2021-12-17 05:10:02 UTC
+* Number of recursive dependencies: 79
-Run `cloud_details(, "coxed")` for more info
+Run `cloud_details(, "airt")` for more info
@@ -451,18 +467,22 @@ Run `cloud_details(, "coxed")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/coxed/new/coxed.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/airt/new/airt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘coxed/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘airt/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘coxed’ version ‘0.3.3’
+* this is package ‘airt’ version ‘0.2.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘mediation’
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'gridExtra', 'scales'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -477,18 +497,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/coxed/old/coxed.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/airt/old/airt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘coxed/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘airt/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘coxed’ version ‘0.3.3’
+* this is package ‘airt’ version ‘0.2.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘mediation’
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'gridExtra', 'scales'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -500,17 +524,17 @@ Status: 1 ERROR
```
-# cpr
+# alakazam
-* Version: 0.2.3
-* GitHub: https://github.com/dewittpe/cpr
-* Source code: https://github.com/cran/cpr
-* Date/Publication: 2017-03-07 13:41:34
-* Number of recursive dependencies: 88
+* Version: 1.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/alakazam
+* Date/Publication: 2021-11-01 16:10:16 UTC
+* Number of recursive dependencies: 108
-Run `cloud_details(, "cpr")` for more info
+Run `cloud_details(, "alakazam")` for more info
@@ -519,27 +543,27 @@ Run `cloud_details(, "cpr")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/cpr/new/cpr.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/alakazam/new/alakazam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘cpr/DESCRIPTION’ ... OK
-* this is package ‘cpr’ version ‘0.2.3’
+* using option ‘--no-manual’
+* checking for file ‘alakazam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘alakazam’ version ‘1.2.0’
+* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
-Package suggested but not available for checking: ‘rmarkdown’
...
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘cpr-pkg.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 2 NOTEs
+Status: 1 ERROR
@@ -549,44 +573,44 @@ Status: 2 NOTEs
### CRAN
```
-* using log directory ‘/tmp/workdir/cpr/old/cpr.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/alakazam/old/alakazam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘cpr/DESCRIPTION’ ... OK
-* this is package ‘cpr’ version ‘0.2.3’
+* using option ‘--no-manual’
+* checking for file ‘alakazam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘alakazam’ version ‘1.2.0’
+* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
-Package suggested but not available for checking: ‘rmarkdown’
...
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘cpr-pkg.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 2 NOTEs
+Status: 1 ERROR
```
-# datawizard
+# alphavantager
-* Version: 0.2.0.1
-* GitHub: https://github.com/easystats/datawizard
-* Source code: https://github.com/cran/datawizard
-* Date/Publication: 2021-09-02 21:10:21 UTC
-* Number of recursive dependencies: 143
+* Version: 0.1.2
+* GitHub: https://github.com/business-science/alphavantager
+* Source code: https://github.com/cran/alphavantager
+* Date/Publication: 2020-03-01 05:20:02 UTC
+* Number of recursive dependencies: 132
-Run `cloud_details(, "datawizard")` for more info
+Run `cloud_details(, "alphavantager")` for more info
@@ -595,27 +619,27 @@ Run `cloud_details(, "datawizard")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/datawizard/new/datawizard.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/alphavantager/new/alphavantager.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘datawizard/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘datawizard’ version ‘0.2.0.1’
+* using option ‘--no-manual’
+* checking for file ‘alphavantager/DESCRIPTION’ ... OK
+* this is package ‘alphavantager’ version ‘0.1.2’
* package encoding: UTF-8
* checking package namespace information ... OK
+* checking package dependencies ... ERROR
...
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘demean.Rmd’ using ‘UTF-8’... OK
- ‘standardize_data.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages required but not available:
+ 'httr', 'jsonlite', 'readr', 'stringr', 'timetk'
+
+Packages suggested but not available for checking:
+ 'tidyquant', 'testthat', 'knitr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
@@ -625,44 +649,44 @@ Status: 1 ERROR, 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/datawizard/old/datawizard.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/alphavantager/old/alphavantager.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘datawizard/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘datawizard’ version ‘0.2.0.1’
+* using option ‘--no-manual’
+* checking for file ‘alphavantager/DESCRIPTION’ ... OK
+* this is package ‘alphavantager’ version ‘0.1.2’
* package encoding: UTF-8
* checking package namespace information ... OK
+* checking package dependencies ... ERROR
...
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘demean.Rmd’ using ‘UTF-8’... OK
- ‘standardize_data.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages required but not available:
+ 'httr', 'jsonlite', 'readr', 'stringr', 'timetk'
+
+Packages suggested but not available for checking:
+ 'tidyquant', 'testthat', 'knitr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
```
-# dexterMST
+# amt
-* Version: 0.9.2
-* GitHub: https://github.com/jessekps/dexter
-* Source code: https://github.com/cran/dexterMST
-* Date/Publication: 2021-01-07 04:20:02 UTC
-* Number of recursive dependencies: 84
+* Version: 0.1.5
+* GitHub: https://github.com/jmsigner/amt
+* Source code: https://github.com/cran/amt
+* Date/Publication: 2021-12-03 18:00:02 UTC
+* Number of recursive dependencies: 149
-Run `cloud_details(, "dexterMST")` for more info
+Run `cloud_details(, "amt")` for more info
@@ -671,20 +695,20 @@ Run `cloud_details(, "dexterMST")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/dexterMST/new/dexterMST.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/amt/new/amt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘dexterMST/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘amt/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘dexterMST’ version ‘0.9.2’
+* this is package ‘amt’ version ‘0.1.5’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-
-Packages suggested but not available for checking:
- 'knitr', 'rmarkdown', 'testthat', 'ggplot2'
+ 'geosphere', 'FNN', 'leaflet', 'moveHMM', 'move', 'sessioninfo',
+ 'spacetime', 'trajectories', 'knitr', 'rmarkdown', 'tinytest',
+ 'tidygraph', 'maptools'
VignetteBuilder package required for checking but not installed: ‘knitr’
@@ -701,20 +725,20 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/dexterMST/old/dexterMST.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/amt/old/amt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘dexterMST/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘amt/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘dexterMST’ version ‘0.9.2’
+* this is package ‘amt’ version ‘0.1.5’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-
-Packages suggested but not available for checking:
- 'knitr', 'rmarkdown', 'testthat', 'ggplot2'
+ 'geosphere', 'FNN', 'leaflet', 'moveHMM', 'move', 'sessioninfo',
+ 'spacetime', 'trajectories', 'knitr', 'rmarkdown', 'tinytest',
+ 'tidygraph', 'maptools'
VignetteBuilder package required for checking but not installed: ‘knitr’
@@ -728,17 +752,17 @@ Status: 1 ERROR
```
-# dimRed
+# anipaths
-* Version: 0.2.3
-* GitHub: https://github.com/gdkrmr/dimRed
-* Source code: https://github.com/cran/dimRed
-* Date/Publication: 2019-05-08 08:10:07 UTC
-* Number of recursive dependencies: 130
+* Version: 0.10.1
+* GitHub: NA
+* Source code: https://github.com/cran/anipaths
+* Date/Publication: 2021-05-17 16:40:16 UTC
+* Number of recursive dependencies: 144
-Run `cloud_details(, "dimRed")` for more info
+Run `cloud_details(, "anipaths")` for more info
@@ -747,27 +771,27 @@ Run `cloud_details(, "dimRed")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/dimRed/new/dimRed.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/anipaths/new/anipaths.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘dimRed/DESCRIPTION’ ... OK
-* this is package ‘dimRed’ version ‘0.2.3’
+* using option ‘--no-manual’
+* checking for file ‘anipaths/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘anipaths’ version ‘0.10.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
-
- Error: Test failures
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘dimensionality-reduction.Rnw’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rgdal', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 2 ERRORs, 2 NOTEs
+Status: 1 ERROR
@@ -777,44 +801,44 @@ Status: 2 ERRORs, 2 NOTEs
### CRAN
```
-* using log directory ‘/tmp/workdir/dimRed/old/dimRed.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/anipaths/old/anipaths.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘dimRed/DESCRIPTION’ ... OK
-* this is package ‘dimRed’ version ‘0.2.3’
+* using option ‘--no-manual’
+* checking for file ‘anipaths/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘anipaths’ version ‘0.10.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
-
- Error: Test failures
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘dimensionality-reduction.Rnw’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rgdal', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 2 ERRORs, 2 NOTEs
+Status: 1 ERROR
```
-# diseq
+# anomalize
-* Version: 0.3.1
-* GitHub: https://github.com/pi-kappa-devel/diseq
-* Source code: https://github.com/cran/diseq
-* Date/Publication: 2021-05-12 00:52:27 UTC
-* Number of recursive dependencies: 116
+* Version: 0.2.2
+* GitHub: https://github.com/business-science/anomalize
+* Source code: https://github.com/cran/anomalize
+* Date/Publication: 2020-10-20 18:50:03 UTC
+* Number of recursive dependencies: 183
-Run `cloud_details(, "diseq")` for more info
+Run `cloud_details(, "anomalize")` for more info
@@ -823,19 +847,22 @@ Run `cloud_details(, "diseq")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/diseq/new/diseq.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/anomalize/new/anomalize.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘diseq/DESCRIPTION’ ... OK
-* this is package ‘diseq’ version ‘0.3.1’
+* using option ‘--no-manual’
+* checking for file ‘anomalize/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘anomalize’ version ‘0.2.2’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘systemfit’
+...
+Packages suggested but not available for checking:
+ 'tidyverse', 'tidyquant', 'stringr', 'testthat', 'covr', 'knitr',
+ 'rmarkdown', 'devtools', 'roxygen2'
-Packages suggested but not available for checking: 'ggplot2', 'testthat'
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -850,19 +877,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/diseq/old/diseq.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/anomalize/old/anomalize.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘diseq/DESCRIPTION’ ... OK
-* this is package ‘diseq’ version ‘0.3.1’
+* using option ‘--no-manual’
+* checking for file ‘anomalize/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘anomalize’ version ‘0.2.2’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘systemfit’
+...
+Packages suggested but not available for checking:
+ 'tidyverse', 'tidyquant', 'stringr', 'testthat', 'covr', 'knitr',
+ 'rmarkdown', 'devtools', 'roxygen2'
-Packages suggested but not available for checking: 'ggplot2', 'testthat'
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -874,17 +904,17 @@ Status: 1 ERROR
```
-# eechidna
+# ARTool
-* Version: 1.4.1
-* GitHub: https://github.com/jforbes14/eechidna
-* Source code: https://github.com/cran/eechidna
-* Date/Publication: 2021-02-25 12:20:02 UTC
-* Number of recursive dependencies: 146
+* Version: 0.11.1
+* GitHub: https://github.com/mjskay/ARTool
+* Source code: https://github.com/cran/ARTool
+* Date/Publication: 2021-10-13 11:30:08 UTC
+* Number of recursive dependencies: 143
-Run `cloud_details(, "eechidna")` for more info
+Run `cloud_details(, "ARTool")` for more info
@@ -893,27 +923,27 @@ Run `cloud_details(, "eechidna")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/eechidna/new/eechidna.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/ARTool/new/ARTool.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘eechidna/DESCRIPTION’ ... OK
-* this is package ‘eechidna’ version ‘1.4.1’
+* using option ‘--no-manual’
+* checking for file ‘ARTool/DESCRIPTION’ ... OK
+* this is package ‘ARTool’ version ‘0.11.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
- > library(testthat)
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘eechidna-intro.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'ggplot2', 'pander', 'lmerTest',
+ 'phia', 'psych', 'stringi', 'DescTools', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
@@ -923,44 +953,44 @@ Status: 1 ERROR, 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/eechidna/old/eechidna.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/ARTool/old/ARTool.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘eechidna/DESCRIPTION’ ... OK
-* this is package ‘eechidna’ version ‘1.4.1’
+* using option ‘--no-manual’
+* checking for file ‘ARTool/DESCRIPTION’ ... OK
+* this is package ‘ARTool’ version ‘0.11.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
- > library(testthat)
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘eechidna-intro.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'ggplot2', 'pander', 'lmerTest',
+ 'phia', 'psych', 'stringi', 'DescTools', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
```
-# eurostat
+# arulesViz
-* Version: 3.7.5
-* GitHub: https://github.com/ropengov/eurostat
-* Source code: https://github.com/cran/eurostat
-* Date/Publication: 2021-05-14 15:50:02 UTC
-* Number of recursive dependencies: 141
+* Version: 1.5-1
+* GitHub: https://github.com/mhahsler/arulesViz
+* Source code: https://github.com/cran/arulesViz
+* Date/Publication: 2021-11-19 17:40:07 UTC
+* Number of recursive dependencies: 100
-Run `cloud_details(, "eurostat")` for more info
+Run `cloud_details(, "arulesViz")` for more info
@@ -969,22 +999,22 @@ Run `cloud_details(, "eurostat")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/eurostat/new/eurostat.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/arulesViz/new/arulesViz.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘eurostat/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘eurostat’ version ‘3.7.5’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘arulesViz/DESCRIPTION’ ... OK
+* this is package ‘arulesViz’ version ‘1.5-1’
* checking package namespace information ... OK
-...
* checking package dependencies ... ERROR
-Packages required but not available: 'broom', 'readr'
+Packages required but not available:
+...
+ 'arules', 'seriation', 'vcd', 'igraph', 'scatterplot3d', 'ggplot2',
+ 'ggraph', 'DT', 'plotly', 'visNetwork'
Packages suggested but not available for checking:
- 'covr', 'ggplot2', 'roxygen2', 'rvest', 'testthat', 'tmap', 'usethis'
+ 'tidygraph', 'shiny', 'shinythemes', 'htmlwidgets'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -999,22 +1029,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/eurostat/old/eurostat.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/arulesViz/old/arulesViz.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘eurostat/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘eurostat’ version ‘3.7.5’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘arulesViz/DESCRIPTION’ ... OK
+* this is package ‘arulesViz’ version ‘1.5-1’
* checking package namespace information ... OK
-...
* checking package dependencies ... ERROR
-Packages required but not available: 'broom', 'readr'
+Packages required but not available:
+...
+ 'arules', 'seriation', 'vcd', 'igraph', 'scatterplot3d', 'ggplot2',
+ 'ggraph', 'DT', 'plotly', 'visNetwork'
Packages suggested but not available for checking:
- 'covr', 'ggplot2', 'roxygen2', 'rvest', 'testthat', 'tmap', 'usethis'
+ 'tidygraph', 'shiny', 'shinythemes', 'htmlwidgets'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1026,17 +1056,17 @@ Status: 1 ERROR
```
-# explor
+# auk
-* Version: 0.3.9
-* GitHub: https://github.com/juba/explor
-* Source code: https://github.com/cran/explor
-* Date/Publication: 2021-06-01 09:50:15 UTC
-* Number of recursive dependencies: 157
+* Version: 0.5.1
+* GitHub: https://github.com/CornellLabofOrnithology/auk
+* Source code: https://github.com/cran/auk
+* Date/Publication: 2021-10-27 18:00:02 UTC
+* Number of recursive dependencies: 96
-Run `cloud_details(, "explor")` for more info
+Run `cloud_details(, "auk")` for more info
@@ -1045,22 +1075,22 @@ Run `cloud_details(, "explor")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/explor/new/explor.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/auk/new/auk.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘explor/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘explor’ version ‘0.3.9’
+* using option ‘--no-manual’
+* checking for file ‘auk/DESCRIPTION’ ... OK
+* this is package ‘auk’ version ‘0.5.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-...
* checking package dependencies ... ERROR
-Packages required but not available: 'shiny', 'ggplot2'
+...
Packages suggested but not available for checking:
- 'FactoMineR', 'GDAtools', 'testthat'
+ 'covr', 'knitr', 'rmarkdown', 'sf', 'testthat', 'unmarked'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1075,22 +1105,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/explor/old/explor.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/auk/old/auk.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘explor/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘explor’ version ‘0.3.9’
+* using option ‘--no-manual’
+* checking for file ‘auk/DESCRIPTION’ ... OK
+* this is package ‘auk’ version ‘0.5.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-...
* checking package dependencies ... ERROR
-Packages required but not available: 'shiny', 'ggplot2'
+...
Packages suggested but not available for checking:
- 'FactoMineR', 'GDAtools', 'testthat'
+ 'covr', 'knitr', 'rmarkdown', 'sf', 'testthat', 'unmarked'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1102,17 +1132,17 @@ Status: 1 ERROR
```
-# fitzRoy
+# autoTS
-* Version: 1.0.0
-* GitHub: https://github.com/jimmyday12/fitzRoy
-* Source code: https://github.com/cran/fitzRoy
-* Date/Publication: 2021-03-16 05:30:03 UTC
-* Number of recursive dependencies: 95
+* Version: 0.9.11
+* GitHub: https://github.com/vivienroussez/autots
+* Source code: https://github.com/cran/autoTS
+* Date/Publication: 2020-06-05 12:20:06 UTC
+* Number of recursive dependencies: 115
-Run `cloud_details(, "fitzRoy")` for more info
+Run `cloud_details(, "autoTS")` for more info
@@ -1121,27 +1151,27 @@ Run `cloud_details(, "fitzRoy")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/fitzRoy/new/fitzRoy.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/autoTS/new/autoTS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘fitzRoy/DESCRIPTION’ ... OK
-* this is package ‘fitzRoy’ version ‘1.0.0’
+* using option ‘--no-manual’
+* checking for file ‘autoTS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘autoTS’ version ‘0.9.11’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
- ‘docker-support.Rmd’ using ‘UTF-8’... OK
- ‘elo-ratings-example.Rmd’ using ‘UTF-8’... OK
- ‘fitzRoy.Rmd’ using ‘UTF-8’... OK
- ‘main-fetch-functions.Rmd’ using ‘UTF-8’... OK
- ‘using-fryzigg-stats.Rmd’ using ‘UTF-8’... OK
- ‘using-squiggle-api.Rmd’ using ‘UTF-8’... OK
- ‘womens-stats.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'stringr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
@@ -1151,44 +1181,44 @@ Status: 1 ERROR, 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/fitzRoy/old/fitzRoy.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/autoTS/old/autoTS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘fitzRoy/DESCRIPTION’ ... OK
-* this is package ‘fitzRoy’ version ‘1.0.0’
+* using option ‘--no-manual’
+* checking for file ‘autoTS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘autoTS’ version ‘0.9.11’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
- ‘docker-support.Rmd’ using ‘UTF-8’... OK
- ‘elo-ratings-example.Rmd’ using ‘UTF-8’... OK
- ‘fitzRoy.Rmd’ using ‘UTF-8’... OK
- ‘main-fetch-functions.Rmd’ using ‘UTF-8’... OK
- ‘using-fryzigg-stats.Rmd’ using ‘UTF-8’... OK
- ‘using-squiggle-api.Rmd’ using ‘UTF-8’... OK
- ‘womens-stats.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'stringr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
```
-# fixerapi
+# banter
-* Version: 0.1.6
-* GitHub: https://github.com/evanodell/fixerapi
-* Source code: https://github.com/cran/fixerapi
-* Date/Publication: 2018-08-23 10:14:25 UTC
-* Number of recursive dependencies: 58
+* Version: 0.9.4
+* GitHub: NA
+* Source code: https://github.com/cran/banter
+* Date/Publication: 2021-10-01 21:10:02 UTC
+* Number of recursive dependencies: 79
-Run `cloud_details(, "fixerapi")` for more info
+Run `cloud_details(, "banter")` for more info
@@ -1197,27 +1227,27 @@ Run `cloud_details(, "fixerapi")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/fixerapi/new/fixerapi.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/banter/new/banter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘fixerapi/DESCRIPTION’ ... OK
-* this is package ‘fixerapi’ version ‘0.1.6’
+* using option ‘--no-manual’
+* checking for file ‘banter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘banter’ version ‘0.9.4’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘introduction.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'gridExtra', 'randomForest', 'rfPermute', 'swfscMisc'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
@@ -1227,44 +1257,44 @@ Status: 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/fixerapi/old/fixerapi.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/banter/old/banter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘fixerapi/DESCRIPTION’ ... OK
-* this is package ‘fixerapi’ version ‘0.1.6’
+* using option ‘--no-manual’
+* checking for file ‘banter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘banter’ version ‘0.9.4’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
...
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘introduction.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'gridExtra', 'randomForest', 'rfPermute', 'swfscMisc'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
```
-# fmriqa
+# baseballDBR
-* Version: 0.3.0
-* GitHub: https://github.com/martin3141/fmriqa
-* Source code: https://github.com/cran/fmriqa
-* Date/Publication: 2018-02-19 15:59:01 UTC
-* Number of recursive dependencies: 90
+* Version: 0.1.2
+* GitHub: https://github.com/keberwein/moneyball
+* Source code: https://github.com/cran/baseballDBR
+* Date/Publication: 2017-06-15 15:19:17 UTC
+* Number of recursive dependencies: 59
-Run `cloud_details(, "fmriqa")` for more info
+Run `cloud_details(, "baseballDBR")` for more info
@@ -1273,27 +1303,27 @@ Run `cloud_details(, "fmriqa")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/fmriqa/new/fmriqa.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/baseballDBR/new/baseballDBR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘fmriqa/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘baseballDBR/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘fmriqa’ version ‘0.3.0’
-* package encoding: UTF-8
+* this is package ‘baseballDBR’ version ‘0.1.2’
* checking package namespace information ... OK
+* checking package dependencies ... ERROR
...
-* checking Rd contents ... OK
-* checking for unstated dependencies in examples ... OK
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
+
+Packages suggested but not available for checking:
+ 'testthat', 'rmarkdown', 'knitr', 'Lahman'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 WARNING
+Status: 1 ERROR
@@ -1303,44 +1333,44 @@ Status: 1 WARNING
### CRAN
```
-* using log directory ‘/tmp/workdir/fmriqa/old/fmriqa.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/baseballDBR/old/baseballDBR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘fmriqa/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘baseballDBR/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘fmriqa’ version ‘0.3.0’
-* package encoding: UTF-8
+* this is package ‘baseballDBR’ version ‘0.1.2’
* checking package namespace information ... OK
+* checking package dependencies ... ERROR
...
-* checking Rd contents ... OK
-* checking for unstated dependencies in examples ... OK
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
+
+Packages suggested but not available for checking:
+ 'testthat', 'rmarkdown', 'knitr', 'Lahman'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 WARNING
+Status: 1 ERROR
```
-# ftExtra
+# basket
-* Version: 0.2.0
-* GitHub: https://github.com/atusy/ftExtra
-* Source code: https://github.com/cran/ftExtra
-* Date/Publication: 2021-03-28 12:40:02 UTC
-* Number of recursive dependencies: 62
+* Version: 0.10.11
+* GitHub: https://github.com/kaneplusplus/basket
+* Source code: https://github.com/cran/basket
+* Date/Publication: 2021-10-16 23:30:22 UTC
+* Number of recursive dependencies: 83
-Run `cloud_details(, "ftExtra")` for more info
+Run `cloud_details(, "basket")` for more info
@@ -1349,27 +1379,27 @@ Run `cloud_details(, "ftExtra")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/ftExtra/new/ftExtra.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/basket/new/basket.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘ftExtra/DESCRIPTION’ ... OK
-* this is package ‘ftExtra’ version ‘0.2.0’
+* using option ‘--no-manual’
+* checking for file ‘basket/DESCRIPTION’ ... OK
+* this is package ‘basket’ version ‘0.10.11’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘format_columns.Rmd’ using ‘UTF-8’... OK
- ‘group-rows.Rmd’ using ‘UTF-8’... OK
- ‘transform-headers.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'doParallel'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
@@ -1379,44 +1409,44 @@ Status: 1 ERROR, 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/ftExtra/old/ftExtra.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/basket/old/basket.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘ftExtra/DESCRIPTION’ ... OK
-* this is package ‘ftExtra’ version ‘0.2.0’
+* using option ‘--no-manual’
+* checking for file ‘basket/DESCRIPTION’ ... OK
+* this is package ‘basket’ version ‘0.10.11’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘format_columns.Rmd’ using ‘UTF-8’... OK
- ‘group-rows.Rmd’ using ‘UTF-8’... OK
- ‘transform-headers.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'doParallel'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
```
-# geofi
+# batchtma
-* Version: 1.0.4
-* GitHub: NA
-* Source code: https://github.com/cran/geofi
-* Date/Publication: 2021-08-18 21:50:15 UTC
-* Number of recursive dependencies: 121
+* Version: 0.1.6
+* GitHub: https://github.com/stopsack/batchtma
+* Source code: https://github.com/cran/batchtma
+* Date/Publication: 2021-12-06 08:10:02 UTC
+* Number of recursive dependencies: 136
-Run `cloud_details(, "geofi")` for more info
+Run `cloud_details(, "batchtma")` for more info
@@ -1425,27 +1455,27 @@ Run `cloud_details(, "geofi")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/geofi/new/geofi.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/batchtma/new/batchtma.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘geofi/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘geofi’ version ‘1.0.4’
+* using option ‘--no-manual’
+* checking for file ‘batchtma/DESCRIPTION’ ... OK
+* this is package ‘batchtma’ version ‘0.1.6’
* package encoding: UTF-8
* checking package namespace information ... OK
+* checking package dependencies ... ERROR
...
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘geofi_datasets.Rmd’ using ‘UTF-8’... OK
- ‘geofi_joining_attribute_data.Rmd’ using ‘UTF-8’... OK
- ‘geofi_making_maps.Rmd’ using ‘UTF-8’... OK
- ‘geofi_spatial_analysis.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 2 NOTEs
+Status: 1 ERROR
@@ -1455,44 +1485,44 @@ Status: 1 ERROR, 2 NOTEs
### CRAN
```
-* using log directory ‘/tmp/workdir/geofi/old/geofi.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/batchtma/old/batchtma.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘geofi/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘geofi’ version ‘1.0.4’
+* using option ‘--no-manual’
+* checking for file ‘batchtma/DESCRIPTION’ ... OK
+* this is package ‘batchtma’ version ‘0.1.6’
* package encoding: UTF-8
* checking package namespace information ... OK
+* checking package dependencies ... ERROR
...
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘geofi_datasets.Rmd’ using ‘UTF-8’... OK
- ‘geofi_joining_attribute_data.Rmd’ using ‘UTF-8’... OK
- ‘geofi_making_maps.Rmd’ using ‘UTF-8’... OK
- ‘geofi_spatial_analysis.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 2 NOTEs
+Status: 1 ERROR
```
-# metagam
+# BayesPostEst
-* Version: 0.2.0
-* GitHub: https://github.com/Lifebrain/metagam
-* Source code: https://github.com/cran/metagam
-* Date/Publication: 2020-11-12 08:10:02 UTC
-* Number of recursive dependencies: 145
+* Version: 0.3.2
+* GitHub: https://github.com/ShanaScogin/BayesPostEst
+* Source code: https://github.com/cran/BayesPostEst
+* Date/Publication: 2021-11-11 08:10:05 UTC
+* Number of recursive dependencies: 185
-Run `cloud_details(, "metagam")` for more info
+Run `cloud_details(, "BayesPostEst")` for more info
@@ -1501,20 +1531,22 @@ Run `cloud_details(, "metagam")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/metagam/new/metagam.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/BayesPostEst/new/BayesPostEst.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘metagam/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘BayesPostEst/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘metagam’ version ‘0.2.0’
+* this is package ‘BayesPostEst’ version ‘0.3.2’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘metap’
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'rstan', 'testthat', 'covr'
-Package suggested but not available for checking: ‘multtest’
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1529,20 +1561,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/metagam/old/metagam.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/BayesPostEst/old/BayesPostEst.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘metagam/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘BayesPostEst/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘metagam’ version ‘0.2.0’
+* this is package ‘BayesPostEst’ version ‘0.3.2’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘metap’
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'rstan', 'testthat', 'covr'
-Package suggested but not available for checking: ‘multtest’
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1554,17 +1588,17 @@ Status: 1 ERROR
```
-# OncoBayes2
+# bayestestR
-* Version: 0.8-2
-* GitHub: NA
-* Source code: https://github.com/cran/OncoBayes2
-* Date/Publication: 2021-09-14 10:10:02 UTC
-* Number of recursive dependencies: 91
+* Version: 0.11.5
+* GitHub: https://github.com/easystats/bayestestR
+* Source code: https://github.com/cran/bayestestR
+* Date/Publication: 2021-10-30 14:00:02 UTC
+* Number of recursive dependencies: 220
-Run `cloud_details(, "OncoBayes2")` for more info
+Run `cloud_details(, "bayestestR")` for more info
@@ -1573,27 +1607,27 @@ Run `cloud_details(, "OncoBayes2")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/OncoBayes2/new/OncoBayes2.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/bayestestR/new/bayestestR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘OncoBayes2/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘bayestestR/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘OncoBayes2’ version ‘0.8-2’
+* this is package ‘bayestestR’ version ‘0.11.5’
* package encoding: UTF-8
* checking package namespace information ... OK
...
- > library(testthat)
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘introduction.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+ 'mediation', 'modelbased', 'parameters', 'performance', 'rmarkdown',
+ 'rstan', 'rstanarm', 'see', 'spelling', 'stringr', 'testthat',
+ 'tweedie'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 3 NOTEs
+Status: 1 ERROR
@@ -1603,44 +1637,44 @@ Status: 1 ERROR, 3 NOTEs
### CRAN
```
-* using log directory ‘/tmp/workdir/OncoBayes2/old/OncoBayes2.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/bayestestR/old/bayestestR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘OncoBayes2/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘bayestestR/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘OncoBayes2’ version ‘0.8-2’
+* this is package ‘bayestestR’ version ‘0.11.5’
* package encoding: UTF-8
* checking package namespace information ... OK
...
- > library(testthat)
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘introduction.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+ 'mediation', 'modelbased', 'parameters', 'performance', 'rmarkdown',
+ 'rstan', 'rstanarm', 'see', 'spelling', 'stringr', 'testthat',
+ 'tweedie'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 3 NOTEs
+Status: 1 ERROR
```
-# PupilPre
+# bdl
-* Version: 0.6.2
-* GitHub: NA
-* Source code: https://github.com/cran/PupilPre
-* Date/Publication: 2020-03-10 05:20:02 UTC
-* Number of recursive dependencies: 72
+* Version: 1.0.3
+* GitHub: https://github.com/statisticspoland/R_Package_to_API_BDL
+* Source code: https://github.com/cran/bdl
+* Date/Publication: 2021-03-02 15:10:10 UTC
+* Number of recursive dependencies: 165
-Run `cloud_details(, "PupilPre")` for more info
+Run `cloud_details(, "bdl")` for more info
@@ -1649,18 +1683,22 @@ Run `cloud_details(, "PupilPre")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/PupilPre/new/PupilPre.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/bdl/new/bdl.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘PupilPre/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘bdl/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘PupilPre’ version ‘0.6.2’
+* this is package ‘bdl’ version ‘1.0.3’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'VWPre', 'shiny'
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1675,18 +1713,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/PupilPre/old/PupilPre.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/bdl/old/bdl.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘PupilPre/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘bdl/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘PupilPre’ version ‘0.6.2’
+* this is package ‘bdl’ version ‘1.0.3’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'VWPre', 'shiny'
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1698,17 +1740,17 @@ Status: 1 ERROR
```
-# rabhit
+# beadplexr
-* Version: 0.1.5
+* Version: 0.4.0
* GitHub: NA
-* Source code: https://github.com/cran/rabhit
-* Date/Publication: 2020-07-11 22:40:02 UTC
-* Number of recursive dependencies: 128
+* Source code: https://github.com/cran/beadplexr
+* Date/Publication: 2020-04-04 11:00:02 UTC
+* Number of recursive dependencies: 143
-Run `cloud_details(, "rabhit")` for more info
+Run `cloud_details(, "beadplexr")` for more info
@@ -1717,18 +1759,22 @@ Run `cloud_details(, "rabhit")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/rabhit/new/rabhit.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/beadplexr/new/beadplexr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘rabhit/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘beadplexr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘rabhit’ version ‘0.1.5’
+* this is package ‘beadplexr’ version ‘0.4.0’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'alakazam', 'tigger'
+...
+Packages suggested but not available for checking:
+ 'spelling', 'gridExtra', 'hexbin', 'igraph', 'knitr', 'rmarkdown',
+ 'stringr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1743,18 +1789,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/rabhit/old/rabhit.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/beadplexr/old/beadplexr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘rabhit/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘beadplexr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘rabhit’ version ‘0.1.5’
+* this is package ‘beadplexr’ version ‘0.4.0’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'alakazam', 'tigger'
+...
+Packages suggested but not available for checking:
+ 'spelling', 'gridExtra', 'hexbin', 'igraph', 'knitr', 'rmarkdown',
+ 'stringr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1766,17 +1816,17 @@ Status: 1 ERROR
```
-# Radviz
+# beezdemand
-* Version: 0.9.2
-* GitHub: https://github.com/yannabraham/Radviz
-* Source code: https://github.com/cran/Radviz
-* Date/Publication: 2020-06-24 19:20:03 UTC
-* Number of recursive dependencies: 58
+* Version: 0.1.0
+* GitHub: https://github.com/brentkaplan/beezdemand
+* Source code: https://github.com/cran/beezdemand
+* Date/Publication: 2018-07-31 10:00:02 UTC
+* Number of recursive dependencies: 60
-Run `cloud_details(, "Radviz")` for more info
+Run `cloud_details(, "beezdemand")` for more info
@@ -1785,20 +1835,15624 @@ Run `cloud_details(, "Radviz")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/Radviz/new/Radviz.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/beezdemand/new/beezdemand.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘Radviz/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘Radviz’ version ‘0.9.2’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘beezdemand/DESCRIPTION’ ... OK
+* this is package ‘beezdemand’ version ‘0.1.0’
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Package required but not available: ‘ggplot2’
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'openxlsx', 'knitr', 'rmarkdown'
-Packages suggested but not available for checking: 'cytofan', 'scales'
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/beezdemand/old/beezdemand.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘beezdemand/DESCRIPTION’ ... OK
+* this is package ‘beezdemand’ version ‘0.1.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'openxlsx', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bggum
+
+
+
+* Version: 1.0.2
+* GitHub: https://github.com/duckmayr/bggum
+* Source code: https://github.com/cran/bggum
+* Date/Publication: 2020-01-19 08:40:02 UTC
+* Number of recursive dependencies: 86
+
+Run `cloud_details(, "bggum")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bggum/new/bggum.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bggum/DESCRIPTION’ ... OK
+* this is package ‘bggum’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'devtools', 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bggum/old/bggum.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bggum/DESCRIPTION’ ... OK
+* this is package ‘bggum’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'devtools', 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# BifactorIndicesCalculator
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/ddueber/BifactorIndicesCalculator
+* Source code: https://github.com/cran/BifactorIndicesCalculator
+* Date/Publication: 2021-05-12 23:02:36 UTC
+* Number of recursive dependencies: 89
+
+Run `cloud_details(, "BifactorIndicesCalculator")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/BifactorIndicesCalculator/new/BifactorIndicesCalculator.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BifactorIndicesCalculator/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘BifactorIndicesCalculator’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'lavaan', 'mirt', 'MplusAutomation', 'mnormt'
+
+Packages suggested but not available for checking: 'testthat', 'psych'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/BifactorIndicesCalculator/old/BifactorIndicesCalculator.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BifactorIndicesCalculator/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘BifactorIndicesCalculator’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'lavaan', 'mirt', 'MplusAutomation', 'mnormt'
+
+Packages suggested but not available for checking: 'testthat', 'psych'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bigtime
+
+
+
+* Version: 0.2.1
+* GitHub: https://github.com/ineswilms/bigtime
+* Source code: https://github.com/cran/bigtime
+* Date/Publication: 2021-08-09 14:10:02 UTC
+* Number of recursive dependencies: 41
+
+Run `cloud_details(, "bigtime")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bigtime/new/bigtime.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bigtime/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bigtime’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'corrplot', 'ggplot2', 'RcppArmadillo', 'RcppEigen'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bigtime/old/bigtime.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bigtime/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bigtime’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'corrplot', 'ggplot2', 'RcppArmadillo', 'RcppEigen'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# biomod2
+
+
+
+* Version: 3.5.1
+* GitHub: NA
+* Source code: https://github.com/cran/biomod2
+* Date/Publication: 2021-06-11 16:10:05 UTC
+* Number of recursive dependencies: 231
+
+Run `cloud_details(, "biomod2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/biomod2/new/biomod2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘biomod2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘biomod2’ version ‘3.5.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'gbm', 'mda', 'randomForest', 'PresenceAbsence', 'dismo', 'caret',
+ 'ENMeval', 'doParallel', 'foreach', 'earth', 'checkmate', 'maxnet'
+
+Packages suggested but not available for checking:
+ 'ade4', 'Hmisc', 'gam', 'testthat', 'ecospat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/biomod2/old/biomod2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘biomod2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘biomod2’ version ‘3.5.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'gbm', 'mda', 'randomForest', 'PresenceAbsence', 'dismo', 'caret',
+ 'ENMeval', 'doParallel', 'foreach', 'earth', 'checkmate', 'maxnet'
+
+Packages suggested but not available for checking:
+ 'ade4', 'Hmisc', 'gam', 'testthat', 'ecospat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bioOED
+
+
+
+* Version: 0.2.1
+* GitHub: NA
+* Source code: https://github.com/cran/bioOED
+* Date/Publication: 2019-08-07 15:00:02 UTC
+* Number of recursive dependencies: 134
+
+Run `cloud_details(, "bioOED")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bioOED/new/bioOED.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bioOED/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bioOED’ version ‘0.2.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bioOED/old/bioOED.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bioOED/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bioOED’ version ‘0.2.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bisect
+
+
+
+* Version: 0.9.0
+* GitHub: https://github.com/EyalFisher/BiSect
+* Source code: https://github.com/cran/bisect
+* Date/Publication: 2018-04-16 16:34:49 UTC
+* Number of recursive dependencies: 59
+
+Run `cloud_details(, "bisect")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bisect/new/bisect.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bisect/DESCRIPTION’ ... OK
+* this is package ‘bisect’ version ‘0.9.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... WARNING
+...
+> known_samples_indices <- sample.int(nrow(baseline_GSE40279), size = n_known_samples)
+> known_samples <- as.matrix(baseline_GSE40279[known_samples_indices, ])
+>
+> ## Fit a dirichlet distribution to known samples to use as prior
+> fit_dirichlet <- sirt::dirichlet.mle(as.matrix(known_samples))
+Error in loadNamespace(x) : there is no package called ‘sirt’
+Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart
+Execution halted
+* DONE
+Status: 1 ERROR, 1 WARNING
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bisect/old/bisect.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bisect/DESCRIPTION’ ... OK
+* this is package ‘bisect’ version ‘0.9.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... WARNING
+...
+> known_samples_indices <- sample.int(nrow(baseline_GSE40279), size = n_known_samples)
+> known_samples <- as.matrix(baseline_GSE40279[known_samples_indices, ])
+>
+> ## Fit a dirichlet distribution to known samples to use as prior
+> fit_dirichlet <- sirt::dirichlet.mle(as.matrix(known_samples))
+Error in loadNamespace(x) : there is no package called ‘sirt’
+Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart
+Execution halted
+* DONE
+Status: 1 ERROR, 1 WARNING
+
+
+
+
+
+```
+# BMisc
+
+
+
+* Version: 1.4.3
+* GitHub: NA
+* Source code: https://github.com/cran/BMisc
+* Date/Publication: 2021-12-09 22:30:02 UTC
+* Number of recursive dependencies: 52
+
+Run `cloud_details(, "BMisc")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/BMisc/new/BMisc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BMisc/DESCRIPTION’ ... OK
+* this is package ‘BMisc’ version ‘1.4.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'Rcpp', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'testthat', 'plm'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/BMisc/old/BMisc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BMisc/DESCRIPTION’ ... OK
+* this is package ‘BMisc’ version ‘1.4.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'Rcpp', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'testthat', 'plm'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# BMTME
+
+
+
+* Version: 1.0.19
+* GitHub: https://github.com/frahik/BMTME
+* Source code: https://github.com/cran/BMTME
+* Date/Publication: 2020-08-26 22:30:14 UTC
+* Number of recursive dependencies: 62
+
+Run `cloud_details(, "BMTME")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/BMTME/new/BMTME.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BMTME/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘BMTME’ version ‘1.0.19’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'BGLR', 'doSNOW', 'foreach', 'matrixcalc', 'mvtnorm', 'progress',
+ 'snow', 'Rcpp', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'covr', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/BMTME/old/BMTME.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BMTME/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘BMTME’ version ‘1.0.19’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'BGLR', 'doSNOW', 'foreach', 'matrixcalc', 'mvtnorm', 'progress',
+ 'snow', 'Rcpp', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'covr', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bnmonitor
+
+
+
+* Version: 0.1.1
+* GitHub: NA
+* Source code: https://github.com/cran/bnmonitor
+* Date/Publication: 2021-07-08 12:00:05 UTC
+* Number of recursive dependencies: 109
+
+Run `cloud_details(, "bnmonitor")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bnmonitor/new/bnmonitor.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bnmonitor/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bnmonitor’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'bnlearn', 'ggplot2', 'gRain', 'gRbase', 'matrixcalc', 'qgraph',
+ 'RColorBrewer', 'reshape2'
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bnmonitor/old/bnmonitor.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bnmonitor/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bnmonitor’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'bnlearn', 'ggplot2', 'gRain', 'gRbase', 'matrixcalc', 'qgraph',
+ 'RColorBrewer', 'reshape2'
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# broom
+
+
+
+* Version: 0.7.10
+* GitHub: https://github.com/tidymodels/broom
+* Source code: https://github.com/cran/broom
+* Date/Publication: 2021-10-31 21:40:02 UTC
+* Number of recursive dependencies: 284
+
+Run `cloud_details(, "broom")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/broom/new/broom.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘broom/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘broom’ version ‘0.7.10’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'rmarkdown', 'robust', 'robustbase', 'rsample', 'sandwich', 'sp',
+ 'spdep', 'spatialreg', 'speedglm', 'spelling', 'survey', 'systemfit',
+ 'testthat', 'tseries', 'vars', 'zoo'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/broom/old/broom.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘broom/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘broom’ version ‘0.7.10’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'rmarkdown', 'robust', 'robustbase', 'rsample', 'sandwich', 'sp',
+ 'spdep', 'spatialreg', 'speedglm', 'spelling', 'survey', 'systemfit',
+ 'testthat', 'tseries', 'vars', 'zoo'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bruceR
+
+
+
+* Version: 0.8.2
+* GitHub: https://github.com/psychbruce/bruceR
+* Source code: https://github.com/cran/bruceR
+* Date/Publication: 2021-12-12 17:40:02 UTC
+* Number of recursive dependencies: 188
+
+Run `cloud_details(, "bruceR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bruceR/new/bruceR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bruceR/DESCRIPTION’ ... OK
+* this is package ‘bruceR’ version ‘0.8.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rstudioapi', 'pacman', 'rio', 'haven', 'readxl', 'openxlsx',
+ 'clipr', 'plyr', 'afex', 'car', 'phia', 'lmtest', 'lme4', 'vars',
+ 'GPArotation', 'jtools', 'texreg', 'MuMIn', 'BayesFactor', 'GGally'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bruceR/old/bruceR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bruceR/DESCRIPTION’ ... OK
+* this is package ‘bruceR’ version ‘0.8.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rstudioapi', 'pacman', 'rio', 'haven', 'readxl', 'openxlsx',
+ 'clipr', 'plyr', 'afex', 'car', 'phia', 'lmtest', 'lme4', 'vars',
+ 'GPArotation', 'jtools', 'texreg', 'MuMIn', 'BayesFactor', 'GGally'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# bssm
+
+
+
+* Version: 2.0.0
+* GitHub: https://github.com/helske/bssm
+* Source code: https://github.com/cran/bssm
+* Date/Publication: 2021-11-26 15:00:02 UTC
+* Number of recursive dependencies: 112
+
+Run `cloud_details(, "bssm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bssm/new/bssm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bssm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bssm’ version ‘2.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'covr', 'ggplot2', 'KFAS', 'knitr', 'rmarkdown', 'ramcmc', 'sde',
+ 'sitmo', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bssm/old/bssm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bssm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bssm’ version ‘2.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'covr', 'ggplot2', 'KFAS', 'knitr', 'rmarkdown', 'ramcmc', 'sde',
+ 'sitmo', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# bwsTools
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/markhwhiteii/bwsTools
+* Source code: https://github.com/cran/bwsTools
+* Date/Publication: 2020-08-26 22:40:03 UTC
+* Number of recursive dependencies: 68
+
+Run `cloud_details(, "bwsTools")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bwsTools/new/bwsTools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bwsTools/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bwsTools’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bwsTools/old/bwsTools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bwsTools/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘bwsTools’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# catlearn
+
+
+
+* Version: 0.8
+* GitHub: NA
+* Source code: https://github.com/cran/catlearn
+* Date/Publication: 2020-09-16 09:50:07 UTC
+* Number of recursive dependencies: 43
+
+Run `cloud_details(, "catlearn")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/catlearn/new/catlearn.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘catlearn/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘catlearn’ version ‘0.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'doParallel', 'foreach', 'RcppArmadillo'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/catlearn/old/catlearn.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘catlearn/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘catlearn’ version ‘0.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'doParallel', 'foreach', 'RcppArmadillo'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# CausalGPS
+
+
+
+* Version: 0.2.6
+* GitHub: https://github.com/fasrc/CausalGPS
+* Source code: https://github.com/cran/CausalGPS
+* Date/Publication: 2021-09-06 13:40:13 UTC
+* Number of recursive dependencies: 99
+
+Run `cloud_details(, "CausalGPS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/CausalGPS/new/CausalGPS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CausalGPS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CausalGPS’ version ‘0.2.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/CausalGPS/old/CausalGPS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CausalGPS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CausalGPS’ version ‘0.2.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# CB2
+
+
+
+* Version: 1.3.4
+* GitHub: NA
+* Source code: https://github.com/cran/CB2
+* Date/Publication: 2020-07-24 09:42:24 UTC
+* Number of recursive dependencies: 133
+
+Run `cloud_details(, "CB2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/CB2/new/CB2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CB2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CB2’ version ‘1.3.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/CB2/old/CB2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CB2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CB2’ version ‘1.3.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# circumplex
+
+
+
+* Version: 0.3.8
+* GitHub: https://github.com/jmgirard/circumplex
+* Source code: https://github.com/cran/circumplex
+* Date/Publication: 2021-05-28 15:00:06 UTC
+* Number of recursive dependencies: 97
+
+Run `cloud_details(, "circumplex")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/circumplex/new/circumplex.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘circumplex/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘circumplex’ version ‘0.3.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'covr', 'ggrepel', 'kableExtra', 'knitr', 'RColorBrewer',
+ 'rmarkdown', 'roxygen2', 'testthat', 'vdiffr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/circumplex/old/circumplex.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘circumplex/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘circumplex’ version ‘0.3.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'covr', 'ggrepel', 'kableExtra', 'knitr', 'RColorBrewer',
+ 'rmarkdown', 'roxygen2', 'testthat', 'vdiffr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# CKMRpop
+
+
+
+* Version: 0.1.3
+* GitHub: NA
+* Source code: https://github.com/cran/CKMRpop
+* Date/Publication: 2021-07-17 10:00:06 UTC
+* Number of recursive dependencies: 111
+
+Run `cloud_details(, "CKMRpop")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/CKMRpop/new/CKMRpop.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CKMRpop/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CKMRpop’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/CKMRpop/old/CKMRpop.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CKMRpop/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CKMRpop’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# clusterPower
+
+
+
+* Version: 0.7.0
+* GitHub: NA
+* Source code: https://github.com/cran/clusterPower
+* Date/Publication: 2021-01-28 17:40:02 UTC
+* Number of recursive dependencies: 180
+
+Run `cloud_details(, "clusterPower")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/clusterPower/new/clusterPower.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘clusterPower/DESCRIPTION’ ... OK
+* this is package ‘clusterPower’ version ‘0.7.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'geepack', 'nloptr', 'optimx', 'doParallel', 'shinyBS', 'tidyverse',
+ 'DT', 'CRTSize', 'data.table', 'testthat', 'rmarkdown',
+ 'shinycssloaders'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/clusterPower/old/clusterPower.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘clusterPower/DESCRIPTION’ ... OK
+* this is package ‘clusterPower’ version ‘0.7.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'geepack', 'nloptr', 'optimx', 'doParallel', 'shinyBS', 'tidyverse',
+ 'DT', 'CRTSize', 'data.table', 'testthat', 'rmarkdown',
+ 'shinycssloaders'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ClustImpute
+
+
+
+* Version: 0.2.4
+* GitHub: NA
+* Source code: https://github.com/cran/ClustImpute
+* Date/Publication: 2021-05-31 07:40:11 UTC
+* Number of recursive dependencies: 125
+
+Run `cloud_details(, "ClustImpute")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ClustImpute/new/ClustImpute.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ClustImpute/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ClustImpute’ version ‘0.2.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'ggExtra', 'rmarkdown', 'testthat', 'Hmisc', 'tictoc', 'spelling',
+ 'corrplot', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ClustImpute/old/ClustImpute.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ClustImpute/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ClustImpute’ version ‘0.2.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'ggExtra', 'rmarkdown', 'testthat', 'Hmisc', 'tictoc', 'spelling',
+ 'corrplot', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# CNVScope
+
+
+
+* Version: 3.6.0
+* GitHub: https://github.com/jamesdalg/CNVScope
+* Source code: https://github.com/cran/CNVScope
+* Date/Publication: 2021-05-24 11:10:03 UTC
+* Number of recursive dependencies: 198
+
+Run `cloud_details(, "CNVScope")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/CNVScope/new/CNVScope.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CNVScope/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CNVScope’ version ‘3.6.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'shinycssloaders', 'DT', 'logging', 'heatmaply', 'BiocManager',
+ 'shinyjs', 'htmltools', 'htmlwidgets', 'GenomeInfoDb',
+ 'BSgenome.Hsapiens.UCSC.hg19', 'smoothie'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/CNVScope/old/CNVScope.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CNVScope/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CNVScope’ version ‘3.6.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'shinycssloaders', 'DT', 'logging', 'heatmaply', 'BiocManager',
+ 'shinyjs', 'htmltools', 'htmlwidgets', 'GenomeInfoDb',
+ 'BSgenome.Hsapiens.UCSC.hg19', 'smoothie'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# cocktailApp
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/shabbychef/cocktailApp
+* Source code: https://github.com/cran/cocktailApp
+* Date/Publication: 2021-04-01 17:50:02 UTC
+* Number of recursive dependencies: 92
+
+Run `cloud_details(, "cocktailApp")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/cocktailApp/new/cocktailApp.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘cocktailApp/DESCRIPTION’ ... OK
+* this is package ‘cocktailApp’ version ‘0.2.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'shiny', 'shinythemes', 'ggplot2', 'ggtern', 'forcats', 'DT'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/cocktailApp/old/cocktailApp.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘cocktailApp/DESCRIPTION’ ... OK
+* this is package ‘cocktailApp’ version ‘0.2.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'shiny', 'shinythemes', 'ggplot2', 'ggtern', 'forcats', 'DT'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# CohortPlat
+
+
+
+* Version: 1.0.3
+* GitHub: NA
+* Source code: https://github.com/cran/CohortPlat
+* Date/Publication: 2021-05-17 10:50:03 UTC
+* Number of recursive dependencies: 76
+
+Run `cloud_details(, "CohortPlat")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/CohortPlat/new/CohortPlat.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CohortPlat/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CohortPlat’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'DT', 'gtools'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/CohortPlat/old/CohortPlat.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CohortPlat/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CohortPlat’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'DT', 'gtools'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# composits
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/composits
+* Date/Publication: 2020-09-30 09:50:02 UTC
+* Number of recursive dependencies: 154
+
+Run `cloud_details(, "composits")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/composits/new/composits.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘composits/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘composits’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tourr', 'stringr', 'broom', 'rgdal'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/composits/old/composits.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘composits/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘composits’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tourr', 'stringr', 'broom', 'rgdal'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# concordance
+
+
+
+* Version: 2.0.0
+* GitHub: https://github.com/insongkim/concordance
+* Source code: https://github.com/cran/concordance
+* Date/Publication: 2020-04-24 16:10:08 UTC
+* Number of recursive dependencies: 22
+
+Run `cloud_details(, "concordance")` for more info
+
+
+
+## In both
+
+* checking whether package ‘concordance’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/concordance/new/concordance.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘concordance’ ...
+** package ‘concordance’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
+ there is no package called ‘stringi’
+Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart
+Execution halted
+ERROR: lazy loading failed for package ‘concordance’
+* removing ‘/tmp/workdir/concordance/new/concordance.Rcheck/concordance’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘concordance’ ...
+** package ‘concordance’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ there is no package called ‘vctrs’
+Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart
+Execution halted
+ERROR: lazy loading failed for package ‘concordance’
+* removing ‘/tmp/workdir/concordance/old/concordance.Rcheck/concordance’
+
+
+```
+# CoNI
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/CoNI
+* Date/Publication: 2021-09-30 09:10:02 UTC
+* Number of recursive dependencies: 125
+
+Run `cloud_details(, "CoNI")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/CoNI/new/CoNI.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CoNI/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CoNI’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'kableExtra', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/CoNI/old/CoNI.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘CoNI/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘CoNI’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'kableExtra', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# contrast
+
+
+
+* Version: 0.24.1
+* GitHub: https://github.com/Alanocallaghan/contrast
+* Source code: https://github.com/cran/contrast
+* Date/Publication: 2021-12-14 23:40:02 UTC
+* Number of recursive dependencies: 140
+
+Run `cloud_details(, "contrast")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/contrast/new/contrast.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘contrast/DESCRIPTION’ ... OK
+* this is package ‘contrast’ version ‘0.24.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'kableExtra', 'ggplot2', 'rmarkdown', 'testthat', 'covr',
+ 'geepack'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/contrast/old/contrast.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘contrast/DESCRIPTION’ ... OK
+* this is package ‘contrast’ version ‘0.24.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'kableExtra', 'ggplot2', 'rmarkdown', 'testthat', 'covr',
+ 'geepack'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# convergEU
+
+
+
+* Version: 0.5.1
+* GitHub: NA
+* Source code: https://github.com/cran/convergEU
+* Date/Publication: 2021-01-09 13:50:06 UTC
+* Number of recursive dependencies: 199
+
+Run `cloud_details(, "convergEU")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/convergEU/new/convergEU.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘convergEU/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘convergEU’ version ‘0.5.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'devtools', 'formattable', 'gridExtra', 'knitr', 'kableExtra',
+ 'readr', 'readxl', 'tidyverse', 'rvest', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/convergEU/old/convergEU.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘convergEU/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘convergEU’ version ‘0.5.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'devtools', 'formattable', 'gridExtra', 'knitr', 'kableExtra',
+ 'readr', 'readxl', 'tidyverse', 'rvest', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# coveffectsplot
+
+
+
+* Version: 0.0.9.1
+* GitHub: https://github.com/smouksassi/coveffectsplot
+* Source code: https://github.com/cran/coveffectsplot
+* Date/Publication: 2020-12-10 15:50:09 UTC
+* Number of recursive dependencies: 99
+
+Run `cloud_details(, "coveffectsplot")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/coveffectsplot/new/coveffectsplot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘coveffectsplot/DESCRIPTION’ ... OK
+* this is package ‘coveffectsplot’ version ‘0.0.9.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'clipr', 'formatR', 'knitr', 'rmarkdown', 'mrgsolve', 'ggridges',
+ 'ggrepel', 'ggstance', 'patchwork', 'bayestestR', 'plotly', 'scales',
+ 'shinyAce', 'Rcpp', 'gamlss.dist'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/coveffectsplot/old/coveffectsplot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘coveffectsplot/DESCRIPTION’ ... OK
+* this is package ‘coveffectsplot’ version ‘0.0.9.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'clipr', 'formatR', 'knitr', 'rmarkdown', 'mrgsolve', 'ggridges',
+ 'ggrepel', 'ggstance', 'patchwork', 'bayestestR', 'plotly', 'scales',
+ 'shinyAce', 'Rcpp', 'gamlss.dist'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# coxed
+
+
+
+* Version: 0.3.3
+* GitHub: https://github.com/jkropko/coxed
+* Source code: https://github.com/cran/coxed
+* Date/Publication: 2020-08-02 01:20:07 UTC
+* Number of recursive dependencies: 121
+
+Run `cloud_details(, "coxed")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/coxed/new/coxed.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘coxed/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘coxed’ version ‘0.3.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bindrcpp'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/coxed/old/coxed.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘coxed/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘coxed’ version ‘0.3.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bindrcpp'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# cpr
+
+
+
+* Version: 0.2.3
+* GitHub: https://github.com/dewittpe/cpr
+* Source code: https://github.com/cran/cpr
+* Date/Publication: 2017-03-07 13:41:34
+* Number of recursive dependencies: 87
+
+Run `cloud_details(, "cpr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/cpr/new/cpr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘cpr/DESCRIPTION’ ... OK
+* this is package ‘cpr’ version ‘0.2.3’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'geepack', 'knitr', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/cpr/old/cpr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘cpr/DESCRIPTION’ ... OK
+* this is package ‘cpr’ version ‘0.2.3’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'geepack', 'knitr', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# cpss
+
+
+
+* Version: 0.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/cpss
+* Date/Publication: 2020-11-23 09:40:15 UTC
+* Number of recursive dependencies: 46
+
+Run `cloud_details(, "cpss")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/cpss/new/cpss.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘cpss/DESCRIPTION’ ... OK
+* this is package ‘cpss’ version ‘0.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'mvtnorm', 'Rfast', 'ggplot2', 'gridExtra', 'RcppArmadillo'
+
+Package suggested but not available for checking: ‘L1pack’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/cpss/old/cpss.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘cpss/DESCRIPTION’ ... OK
+* this is package ‘cpss’ version ‘0.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'mvtnorm', 'Rfast', 'ggplot2', 'gridExtra', 'RcppArmadillo'
+
+Package suggested but not available for checking: ‘L1pack’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# crawl
+
+
+
+* Version: 2.2.1
+* GitHub: NA
+* Source code: https://github.com/cran/crawl
+* Date/Publication: 2018-09-14 19:20:10 UTC
+* Number of recursive dependencies: 118
+
+Run `cloud_details(, "crawl")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/crawl/new/crawl.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘crawl/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘crawl’ version ‘2.2.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'mvtnorm', 'Rcpp', 'shiny', 'raster', 'gdistance', 'rmapshaper',
+ 'sp', 'sf', 'lubridate', 'RcppArmadillo'
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'rgdal', 'argosfilter', 'xts', 'broom', 'doParallel'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/crawl/old/crawl.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘crawl/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘crawl’ version ‘2.2.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'mvtnorm', 'Rcpp', 'shiny', 'raster', 'gdistance', 'rmapshaper',
+ 'sp', 'sf', 'lubridate', 'RcppArmadillo'
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'rgdal', 'argosfilter', 'xts', 'broom', 'doParallel'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# DAMisc
+
+
+
+* Version: 1.6.2
+* GitHub: NA
+* Source code: https://github.com/cran/DAMisc
+* Date/Publication: 2020-11-12 06:00:06 UTC
+* Number of recursive dependencies: 164
+
+Run `cloud_details(, "DAMisc")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/DAMisc/new/DAMisc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘DAMisc/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘DAMisc’ version ‘1.6.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'carData', 'knitr', 'markdown', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/DAMisc/old/DAMisc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘DAMisc/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘DAMisc’ version ‘1.6.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'carData', 'knitr', 'markdown', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# datafsm
+
+
+
+* Version: 0.2.4
+* GitHub: https://github.com/jonathan-g/datafsm
+* Source code: https://github.com/cran/datafsm
+* Date/Publication: 2021-05-29 23:20:05 UTC
+* Number of recursive dependencies: 102
+
+Run `cloud_details(, "datafsm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/datafsm/new/datafsm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘datafsm/DESCRIPTION’ ... OK
+* this is package ‘datafsm’ version ‘0.2.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'doParallel', 'foreach', 'testthat', 'diagram', 'knitr', 'rmarkdown',
+ 'pander'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/datafsm/old/datafsm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘datafsm/DESCRIPTION’ ... OK
+* this is package ‘datafsm’ version ‘0.2.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'doParallel', 'foreach', 'testthat', 'diagram', 'knitr', 'rmarkdown',
+ 'pander'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# depigner
+
+
+
+* Version: 0.8.4
+* GitHub: https://github.com/CorradoLanera/depigner
+* Source code: https://github.com/cran/depigner
+* Date/Publication: 2021-01-11 06:50:12 UTC
+* Number of recursive dependencies: 147
+
+Run `cloud_details(, "depigner")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/depigner/new/depigner.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘depigner/DESCRIPTION’ ... OK
+* this is package ‘depigner’ version ‘0.8.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'desc', 'fs', 'ggplot2', 'Hmisc', 'progress', 'rms', 'rprojroot',
+ 'stringr', 'telegram.bot', 'usethis'
+
+Packages suggested but not available for checking:
+ 'covr', 'spelling', 'testthat', 'withr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/depigner/old/depigner.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘depigner/DESCRIPTION’ ... OK
+* this is package ‘depigner’ version ‘0.8.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'desc', 'fs', 'ggplot2', 'Hmisc', 'progress', 'rms', 'rprojroot',
+ 'stringr', 'telegram.bot', 'usethis'
+
+Packages suggested but not available for checking:
+ 'covr', 'spelling', 'testthat', 'withr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# dexter
+
+
+
+* Version: 1.1.4
+* GitHub: https://github.com/dexter-psychometrics/dexter
+* Source code: https://github.com/cran/dexter
+* Date/Publication: 2021-10-28 13:30:14 UTC
+* Number of recursive dependencies: 78
+
+Run `cloud_details(, "dexter")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dexter/new/dexter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dexter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dexter’ version ‘1.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'latticeExtra', 'testthat', 'ggplot2', 'Cairo'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dexter/old/dexter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dexter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dexter’ version ‘1.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'latticeExtra', 'testthat', 'ggplot2', 'Cairo'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dfoliatR
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/chguiterman/dfoliatR
+* Source code: https://github.com/cran/dfoliatR
+* Date/Publication: 2020-09-02 12:30:06 UTC
+* Number of recursive dependencies: 135
+
+Run `cloud_details(, "dfoliatR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dfoliatR/new/dfoliatR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dfoliatR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dfoliatR’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'vdiffr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dfoliatR/old/dfoliatR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dfoliatR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dfoliatR’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'vdiffr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# did
+
+
+
+* Version: 2.1.0
+* GitHub: https://github.com/bcallaway11/did
+* Source code: https://github.com/cran/did
+* Date/Publication: 2021-12-10 22:30:02 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "did")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/did/new/did.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘did/DESCRIPTION’ ... OK
+* this is package ‘did’ version ‘2.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'plm', 'here', 'knitr', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/did/old/did.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘did/DESCRIPTION’ ... OK
+* this is package ‘did’ version ‘2.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'plm', 'here', 'knitr', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# did2s
+
+
+
+* Version: 0.4.0
+* GitHub: NA
+* Source code: https://github.com/cran/did2s
+* Date/Publication: 2021-09-27 08:50:07 UTC
+* Number of recursive dependencies: 160
+
+Run `cloud_details(, "did2s")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/did2s/new/did2s.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘did2s/DESCRIPTION’ ... OK
+* this is package ‘did2s’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'haven', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/did2s/old/did2s.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘did2s/DESCRIPTION’ ... OK
+* this is package ‘did2s’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'haven', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# diffudist
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/gbertagnolli/diffudist
+* Source code: https://github.com/cran/diffudist
+* Date/Publication: 2021-11-30 08:20:06 UTC
+* Number of recursive dependencies: 67
+
+Run `cloud_details(, "diffudist")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/diffudist/new/diffudist.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘diffudist/DESCRIPTION’ ... OK
+* this is package ‘diffudist’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'cowplot', 'parallelDist', 'strex', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/diffudist/old/diffudist.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘diffudist/DESCRIPTION’ ... OK
+* this is package ‘diffudist’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'cowplot', 'parallelDist', 'strex', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# digitalDLSorteR
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/diegommcc/digitalDLSorteR
+* Source code: https://github.com/cran/digitalDLSorteR
+* Date/Publication: 2021-10-19 23:00:02 UTC
+* Number of recursive dependencies: 211
+
+Run `cloud_details(, "digitalDLSorteR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/digitalDLSorteR/new/digitalDLSorteR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘digitalDLSorteR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘digitalDLSorteR’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'BiocParallel', 'DelayedArray',
+ 'DelayedMatrixStats', 'HDF5Array', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/digitalDLSorteR/old/digitalDLSorteR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘digitalDLSorteR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘digitalDLSorteR’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'BiocParallel', 'DelayedArray',
+ 'DelayedMatrixStats', 'HDF5Array', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# diseq
+
+
+
+* Version: 0.3.1
+* GitHub: https://github.com/pi-kappa-devel/diseq
+* Source code: https://github.com/cran/diseq
+* Date/Publication: 2021-05-12 00:52:27 UTC
+* Number of recursive dependencies: 126
+
+Run `cloud_details(, "diseq")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/diseq/new/diseq.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘diseq/DESCRIPTION’ ... OK
+* this is package ‘diseq’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'numDeriv', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/diseq/old/diseq.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘diseq/DESCRIPTION’ ... OK
+* this is package ‘diseq’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'numDeriv', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# disto
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/talegari/disto
+* Source code: https://github.com/cran/disto
+* Date/Publication: 2018-08-02 12:50:02 UTC
+* Number of recursive dependencies: 131
+
+Run `cloud_details(, "disto")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/disto/new/disto.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘disto/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘disto’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'fastcluster', 'pbapply'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/disto/old/disto.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘disto/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘disto’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'fastcluster', 'pbapply'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dlookr
+
+
+
+* Version: 0.5.4
+* GitHub: https://github.com/choonghyunryu/dlookr
+* Source code: https://github.com/cran/dlookr
+* Date/Publication: 2021-12-06 10:40:13 UTC
+* Number of recursive dependencies: 142
+
+Run `cloud_details(, "dlookr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dlookr/new/dlookr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dlookr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dlookr’ version ‘0.5.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'DBI', 'classInt', 'dbplyr', 'forecast', 'ISLR', 'nycflights13',
+ 'randomForest', 'prettydoc', 'RSQLite', 'ranger', 'stringi'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dlookr/old/dlookr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dlookr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dlookr’ version ‘0.5.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'DBI', 'classInt', 'dbplyr', 'forecast', 'ISLR', 'nycflights13',
+ 'randomForest', 'prettydoc', 'RSQLite', 'ranger', 'stringi'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dlstats
+
+
+
+* Version: 0.1.4
+* GitHub: https://github.com/GuangchuangYu/dlstats
+* Source code: https://github.com/cran/dlstats
+* Date/Publication: 2021-04-23 10:00:05 UTC
+* Number of recursive dependencies: 59
+
+Run `cloud_details(, "dlstats")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dlstats/new/dlstats.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dlstats/DESCRIPTION’ ... OK
+* this is package ‘dlstats’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'DT', 'rmarkdown', 'prettydoc'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dlstats/old/dlstats.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dlstats/DESCRIPTION’ ... OK
+* this is package ‘dlstats’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'DT', 'rmarkdown', 'prettydoc'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dowser
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/dowser
+* Date/Publication: 2021-07-22 09:40:02 UTC
+* Number of recursive dependencies: 134
+
+Run `cloud_details(, "dowser")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dowser/new/dowser.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dowser/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dowser’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dowser/old/dowser.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dowser/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dowser’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dscore
+
+
+
+* Version: 1.4.0
+* GitHub: https://github.com/d-score/dscore
+* Source code: https://github.com/cran/dscore
+* Date/Publication: 2020-11-29 01:00:02 UTC
+* Number of recursive dependencies: 90
+
+Run `cloud_details(, "dscore")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dscore/new/dscore.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dscore/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dscore’ version ‘1.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'ggplot2', 'kableExtra', 'knitr', 'lme4', 'rmarkdown', 'sirt',
+ 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dscore/old/dscore.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dscore/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dscore’ version ‘1.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'ggplot2', 'kableExtra', 'knitr', 'lme4', 'rmarkdown', 'sirt',
+ 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# DSSAT
+
+
+
+* Version: 0.0.4
+* GitHub: https://github.com/palderman/DSSAT
+* Source code: https://github.com/cran/DSSAT
+* Date/Publication: 2021-09-02 16:20:06 UTC
+* Number of recursive dependencies: 46
+
+Run `cloud_details(, "DSSAT")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/DSSAT/new/DSSAT.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘DSSAT/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘DSSAT’ version ‘0.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'readr', 'lubridate'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/DSSAT/old/DSSAT.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘DSSAT/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘DSSAT’ version ‘0.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'readr', 'lubridate'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dumbbell
+
+
+
+* Version: 0.1
+* GitHub: https://github.com/foocheung2/dumbbell
+* Source code: https://github.com/cran/dumbbell
+* Date/Publication: 2021-02-25 09:10:02 UTC
+* Number of recursive dependencies: 148
+
+Run `cloud_details(, "dumbbell")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dumbbell/new/dumbbell.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dumbbell/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dumbbell’ version ‘0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'tidyverse', 'ggplot2', 'data.table', 'rstatix'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dumbbell/old/dumbbell.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dumbbell/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dumbbell’ version ‘0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'tidyverse', 'ggplot2', 'data.table', 'rstatix'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dynfeature
+
+
+
+* Version: 1.0.0
+* GitHub: NA
+* Source code: https://github.com/cran/dynfeature
+* Date/Publication: 2021-06-14 07:30:12 UTC
+* Number of recursive dependencies: 120
+
+Run `cloud_details(, "dynfeature")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dynfeature/new/dynfeature.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dynfeature/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dynfeature’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'dynutils', 'dynwrap', 'ranger', 'reshape2', 'testthat'
+
+Packages suggested but not available for checking: 'caret', 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dynfeature/old/dynfeature.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dynfeature/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dynfeature’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'dynutils', 'dynwrap', 'ranger', 'reshape2', 'testthat'
+
+Packages suggested but not available for checking: 'caret', 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# dyngen
+
+
+
+* Version: 1.0.3
+* GitHub: https://github.com/dynverse/dyngen
+* Source code: https://github.com/cran/dyngen
+* Date/Publication: 2021-09-20 04:20:02 UTC
+* Number of recursive dependencies: 201
+
+Run `cloud_details(, "dyngen")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dyngen/new/dyngen.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dyngen/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dyngen’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'anndata', 'covr', 'dynwrap', 'R.rsp', 'rmarkdown', 'Seurat',
+ 'SingleCellExperiment', 'SummarizedExperiment', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘R.rsp’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dyngen/old/dyngen.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dyngen/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dyngen’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'anndata', 'covr', 'dynwrap', 'R.rsp', 'rmarkdown', 'Seurat',
+ 'SingleCellExperiment', 'SummarizedExperiment', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘R.rsp’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dynparam
+
+
+
+* Version: 1.0.2
+* GitHub: https://github.com/dynverse/dynparam
+* Source code: https://github.com/cran/dynparam
+* Date/Publication: 2021-01-04 23:30:02 UTC
+* Number of recursive dependencies: 58
+
+Run `cloud_details(, "dynparam")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dynparam/new/dynparam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dynparam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dynparam’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'assertthat', 'carrier', 'dynutils', 'stringr'
+
+Packages suggested but not available for checking:
+ 'lhs', 'ParamHelpers', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dynparam/old/dynparam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dynparam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘dynparam’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'assertthat', 'carrier', 'dynutils', 'stringr'
+
+Packages suggested but not available for checking:
+ 'lhs', 'ParamHelpers', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# eatRep
+
+
+
+* Version: 0.13.7
+* GitHub: https://github.com/weirichs/eatRep
+* Source code: https://github.com/cran/eatRep
+* Date/Publication: 2021-10-28 09:40:02 UTC
+* Number of recursive dependencies: 179
+
+Run `cloud_details(, "eatRep")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/eatRep/new/eatRep.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘eatRep/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘eatRep’ version ‘0.13.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/eatRep/old/eatRep.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘eatRep/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘eatRep’ version ‘0.13.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ebirdst
+
+
+
+* Version: 0.3.3
+* GitHub: https://github.com/CornellLabofOrnithology/ebirdst
+* Source code: https://github.com/cran/ebirdst
+* Date/Publication: 2021-11-12 18:30:02 UTC
+* Number of recursive dependencies: 109
+
+Run `cloud_details(, "ebirdst")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ebirdst/new/ebirdst.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ebirdst/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ebirdst’ version ‘0.3.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'fields', 'knitr', 'rmarkdown', 'rnaturalearth', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ebirdst/old/ebirdst.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ebirdst/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ebirdst’ version ‘0.3.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'fields', 'knitr', 'rmarkdown', 'rnaturalearth', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ecoCopula
+
+
+
+* Version: 1.0.1
+* GitHub: NA
+* Source code: https://github.com/cran/ecoCopula
+* Date/Publication: 2020-11-10 09:50:03 UTC
+* Number of recursive dependencies: 106
+
+Run `cloud_details(, "ecoCopula")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ecoCopula/new/ecoCopula.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ecoCopula/DESCRIPTION’ ... OK
+* this is package ‘ecoCopula’ version ‘1.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'ggplot2', 'RColorBrewer',
+ 'ggraph', 'labdsv', 'tidygraph'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ecoCopula/old/ecoCopula.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ecoCopula/DESCRIPTION’ ... OK
+* this is package ‘ecoCopula’ version ‘1.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'ggplot2', 'RColorBrewer',
+ 'ggraph', 'labdsv', 'tidygraph'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# EFAtools
+
+
+
+* Version: 0.3.1
+* GitHub: https://github.com/mdsteiner/EFAtools
+* Source code: https://github.com/cran/EFAtools
+* Date/Publication: 2021-03-27 08:40:42 UTC
+* Number of recursive dependencies: 86
+
+Run `cloud_details(, "EFAtools")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/EFAtools/new/EFAtools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘EFAtools/DESCRIPTION’ ... OK
+* this is package ‘EFAtools’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'microbenchmark'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/EFAtools/old/EFAtools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘EFAtools/DESCRIPTION’ ... OK
+* this is package ‘EFAtools’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'microbenchmark'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# eiCompare
+
+
+
+* Version: 3.0.0
+* GitHub: https://github.com/RPVote/eiCompare
+* Source code: https://github.com/cran/eiCompare
+* Date/Publication: 2020-09-18 15:00:02 UTC
+* Number of recursive dependencies: 166
+
+Run `cloud_details(, "eiCompare")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/eiCompare/new/eiCompare.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘eiCompare/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘eiCompare’ version ‘3.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'opencage', 'plyr', 'rmarkdown', 'reshape2', 'RColorBrewer',
+ 'RJSONIO', 'testthat', 'tigris'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/eiCompare/old/eiCompare.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘eiCompare/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘eiCompare’ version ‘3.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'opencage', 'plyr', 'rmarkdown', 'reshape2', 'RColorBrewer',
+ 'RJSONIO', 'testthat', 'tigris'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ENMeval
+
+
+
+* Version: 2.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/ENMeval
+* Date/Publication: 2021-12-13 09:10:09 UTC
+* Number of recursive dependencies: 259
+
+Run `cloud_details(, "ENMeval")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ENMeval/new/ENMeval.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ENMeval/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ENMeval’ version ‘2.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'testthat', 'glmnet', 'rangeModelMetadata'
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'rJava', 'spocc', 'RColorBrewer', 'rasterVis',
+ 'sf', 'blockCV', 'devtools', 'latticeExtra', 'ecospat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ENMeval/old/ENMeval.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ENMeval/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ENMeval’ version ‘2.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'testthat', 'glmnet', 'rangeModelMetadata'
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'rJava', 'spocc', 'RColorBrewer', 'rasterVis',
+ 'sf', 'blockCV', 'devtools', 'latticeExtra', 'ecospat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# epidemia
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/ImperialCollegeLondon/epidemia
+* Source code: https://github.com/cran/epidemia
+* Date/Publication: 2021-10-25 07:50:05 UTC
+* Number of recursive dependencies: 183
+
+Run `cloud_details(, "epidemia")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/epidemia/new/epidemia.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘epidemia/DESCRIPTION’ ... OK
+* this is package ‘epidemia’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'RcppEigen', 'StanHeaders'
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'gridExtra', 'bookdown', 'EpiEstim',
+ 'lubridate', 'kableExtra', 'extrafont'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/epidemia/old/epidemia.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘epidemia/DESCRIPTION’ ... OK
+* this is package ‘epidemia’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'RcppEigen', 'StanHeaders'
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'gridExtra', 'bookdown', 'EpiEstim',
+ 'lubridate', 'kableExtra', 'extrafont'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# EpiNow2
+
+
+
+* Version: 1.3.2
+* GitHub: https://github.com/epiforecasts/EpiNow2
+* Source code: https://github.com/cran/EpiNow2
+* Date/Publication: 2020-12-14 09:00:15 UTC
+* Number of recursive dependencies: 154
+
+Run `cloud_details(, "EpiNow2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/EpiNow2/new/EpiNow2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘EpiNow2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘EpiNow2’ version ‘1.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'countrycode', 'EpiSoon', 'forecastHybrid', 'here', 'kableExtra',
+ 'knitr', 'rmarkdown', 'rnaturalearth', 'rstantools', 'spelling',
+ 'testthat', 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/EpiNow2/old/EpiNow2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘EpiNow2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘EpiNow2’ version ‘1.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'countrycode', 'EpiSoon', 'forecastHybrid', 'here', 'kableExtra',
+ 'knitr', 'rmarkdown', 'rnaturalearth', 'rstantools', 'spelling',
+ 'testthat', 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# epocakir
+
+
+
+* Version: 0.9.7
+* GitHub: https://github.com/alwinw/epocakir
+* Source code: https://github.com/cran/epocakir
+* Date/Publication: 2021-06-09 07:00:05 UTC
+* Number of recursive dependencies: 72
+
+Run `cloud_details(, "epocakir")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/epocakir/new/epocakir.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘epocakir/DESCRIPTION’ ... OK
+* this is package ‘epocakir’ version ‘0.9.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'usethis', 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/epocakir/old/epocakir.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘epocakir/DESCRIPTION’ ... OK
+* this is package ‘epocakir’ version ‘0.9.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'usethis', 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ERSA
+
+
+
+* Version: 0.1.3
+* GitHub: NA
+* Source code: https://github.com/cran/ERSA
+* Date/Publication: 2020-09-22 23:00:02 UTC
+* Number of recursive dependencies: 133
+
+Run `cloud_details(, "ERSA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ERSA/new/ERSA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ERSA/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ERSA’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ERSA/old/ERSA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ERSA/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ERSA’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# EventStudy
+
+
+
+* Version: 0.36
+* GitHub: https://github.com/EventStudyTools/api-wrapper.r
+* Source code: https://github.com/cran/EventStudy
+* Date/Publication: 2019-03-14 12:13:31 UTC
+* Number of recursive dependencies: 150
+
+Run `cloud_details(, "EventStudy")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/EventStudy/new/EventStudy.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘EventStudy/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘EventStudy’ version ‘0.36’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'RColorBrewer', 'stringr', 'readr', 'openxlsx'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/EventStudy/old/EventStudy.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘EventStudy/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘EventStudy’ version ‘0.36’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'RColorBrewer', 'stringr', 'readr', 'openxlsx'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# explor
+
+
+
+* Version: 0.3.9
+* GitHub: https://github.com/juba/explor
+* Source code: https://github.com/cran/explor
+* Date/Publication: 2021-06-01 09:50:15 UTC
+* Number of recursive dependencies: 166
+
+Run `cloud_details(, "explor")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/explor/new/explor.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘explor/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘explor’ version ‘0.3.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'shiny', 'DT', 'ggplot2', 'formatR', 'scatterD3', 'RColorBrewer'
+
+Packages suggested but not available for checking:
+ 'FactoMineR', 'ade4', 'GDAtools', 'quanteda', 'quanteda.textmodels',
+ 'testthat', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/explor/old/explor.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘explor/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘explor’ version ‘0.3.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'shiny', 'DT', 'ggplot2', 'formatR', 'scatterD3', 'RColorBrewer'
+
+Packages suggested but not available for checking:
+ 'FactoMineR', 'ade4', 'GDAtools', 'quanteda', 'quanteda.textmodels',
+ 'testthat', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# fable
+
+
+
+* Version: 0.3.1
+* GitHub: https://github.com/tidyverts/fable
+* Source code: https://github.com/cran/fable
+* Date/Publication: 2021-05-16 14:20:07 UTC
+* Number of recursive dependencies: 103
+
+Run `cloud_details(, "fable")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/fable/new/fable.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fable/DESCRIPTION’ ... OK
+* this is package ‘fable’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'covr', 'feasts', 'forecast', 'knitr', 'rmarkdown', 'spelling',
+ 'testthat', 'tsibbledata'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/fable/old/fable.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fable/DESCRIPTION’ ... OK
+* this is package ‘fable’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'covr', 'feasts', 'forecast', 'knitr', 'rmarkdown', 'spelling',
+ 'testthat', 'tsibbledata'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# factoextra
+
+
+
+* Version: 1.0.7
+* GitHub: https://github.com/kassambara/factoextra
+* Source code: https://github.com/cran/factoextra
+* Date/Publication: 2020-04-01 21:20:02 UTC
+* Number of recursive dependencies: 129
+
+Run `cloud_details(, "factoextra")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/factoextra/new/factoextra.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘factoextra/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘factoextra’ version ‘1.0.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'abind', 'dendextend', 'FactoMineR', 'ggpubr', 'reshape2',
+ 'ggrepel'
+
+Packages suggested but not available for checking:
+ 'ade4', 'ca', 'igraph', 'knitr', 'mclust'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/factoextra/old/factoextra.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘factoextra/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘factoextra’ version ‘1.0.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'abind', 'dendextend', 'FactoMineR', 'ggpubr', 'reshape2',
+ 'ggrepel'
+
+Packages suggested but not available for checking:
+ 'ade4', 'ca', 'igraph', 'knitr', 'mclust'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# fastR2
+
+
+
+* Version: 1.2.1
+* GitHub: https://github.com/rpruim/fastR2
+* Source code: https://github.com/cran/fastR2
+* Date/Publication: 2018-08-31 20:50:08 UTC
+* Number of recursive dependencies: 166
+
+Run `cloud_details(, "fastR2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/fastR2/new/fastR2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fastR2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘fastR2’ version ‘1.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggformula', 'mosaicCalc', 'readr', 'faraway', 'Hmisc', 'DAAG',
+ 'multcomp', 'vcd', 'car', 'alr3', 'corrgram', 'BradleyTerry2',
+ 'cubature', 'knitr', 'mosaicData', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/fastR2/old/fastR2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fastR2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘fastR2’ version ‘1.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggformula', 'mosaicCalc', 'readr', 'faraway', 'Hmisc', 'DAAG',
+ 'multcomp', 'vcd', 'car', 'alr3', 'corrgram', 'BradleyTerry2',
+ 'cubature', 'knitr', 'mosaicData', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# file2meco
+
+
+
+* Version: 0.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/file2meco
+* Date/Publication: 2021-11-16 05:40:07 UTC
+* Number of recursive dependencies: 77
+
+Run `cloud_details(, "file2meco")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/file2meco/new/file2meco.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘file2meco/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘file2meco’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available: 'microeco', 'ape', 'yaml'
+
+Packages suggested but not available for checking:
+ 'Biostrings', 'seqinr', 'phyloseq'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/file2meco/old/file2meco.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘file2meco/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘file2meco’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available: 'microeco', 'ape', 'yaml'
+
+Packages suggested but not available for checking:
+ 'Biostrings', 'seqinr', 'phyloseq'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# finalfit
+
+
+
+* Version: 1.0.4
+* GitHub: https://github.com/ewenharrison/finalfit
+* Source code: https://github.com/cran/finalfit
+* Date/Publication: 2021-12-05 16:50:02 UTC
+* Number of recursive dependencies: 174
+
+Run `cloud_details(, "finalfit")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/finalfit/new/finalfit.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘finalfit/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘finalfit’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'cmprsk', 'coxme', 'knitr', 'lmtest', 'readr', 'rmarkdown', 'rstan',
+ 'sandwich', 'survey', 'survminer', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/finalfit/old/finalfit.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘finalfit/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘finalfit’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'cmprsk', 'coxme', 'knitr', 'lmtest', 'readr', 'rmarkdown', 'rstan',
+ 'sandwich', 'survey', 'survminer', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# fitbitr
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/mrkaye97/fitbitr
+* Source code: https://github.com/cran/fitbitr
+* Date/Publication: 2021-08-22 04:10:07 UTC
+* Number of recursive dependencies: 62
+
+Run `cloud_details(, "fitbitr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/fitbitr/new/fitbitr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fitbitr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘fitbitr’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'httr', 'janitor', 'jsonlite', 'lubridate'
+
+Packages suggested but not available for checking:
+ 'covr', 'checkmate', 'spelling', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/fitbitr/old/fitbitr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fitbitr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘fitbitr’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'httr', 'janitor', 'jsonlite', 'lubridate'
+
+Packages suggested but not available for checking:
+ 'covr', 'checkmate', 'spelling', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# fivethirtyeight
+
+
+
+* Version: 0.6.2
+* GitHub: https://github.com/rudeboybert/fivethirtyeight
+* Source code: https://github.com/cran/fivethirtyeight
+* Date/Publication: 2021-10-07 13:40:02 UTC
+* Number of recursive dependencies: 64
+
+Run `cloud_details(, "fivethirtyeight")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/fivethirtyeight/new/fivethirtyeight.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fivethirtyeight/DESCRIPTION’ ... OK
+* this is package ‘fivethirtyeight’ version ‘0.6.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... WARNING
+...
+
+ intersect, setdiff, setequal, union
+
+> library(tidyr)
+> library(stringr)
+Error: package or namespace load failed for ‘stringr’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
+ there is no package called ‘stringi’
+Execution halted
+* DONE
+Status: 1 ERROR, 1 WARNING, 2 NOTEs
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/fivethirtyeight/old/fivethirtyeight.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fivethirtyeight/DESCRIPTION’ ... OK
+* this is package ‘fivethirtyeight’ version ‘0.6.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... WARNING
+...
+
+ intersect, setdiff, setequal, union
+
+> library(tidyr)
+> library(stringr)
+Error: package or namespace load failed for ‘stringr’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
+ there is no package called ‘stringi’
+Execution halted
+* DONE
+Status: 1 ERROR, 1 WARNING, 2 NOTEs
+
+
+
+
+
+```
+# flexsurv
+
+
+
+* Version: 2.1
+* GitHub: https://github.com/chjackson/flexsurv-dev
+* Source code: https://github.com/cran/flexsurv
+* Date/Publication: 2021-09-13 15:50:02 UTC
+* Number of recursive dependencies: 78
+
+Run `cloud_details(, "flexsurv")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/flexsurv/new/flexsurv.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘flexsurv/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘flexsurv’ version ‘2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+Files named as vignettes but with no recognized vignette engine:
+ ‘inst/doc/multistate.Rnw’
+(Is a VignetteBuilder field missing?)
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/flexsurv/old/flexsurv.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘flexsurv/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘flexsurv’ version ‘2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+Files named as vignettes but with no recognized vignette engine:
+ ‘inst/doc/multistate.Rnw’
+(Is a VignetteBuilder field missing?)
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# foieGras
+
+
+
+* Version: 0.7-6
+* GitHub: https://github.com/ianjonsen/foieGras
+* Source code: https://github.com/cran/foieGras
+* Date/Publication: 2021-04-26 22:10:07 UTC
+* Number of recursive dependencies: 134
+
+Run `cloud_details(, "foieGras")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/foieGras/new/foieGras.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘foieGras/DESCRIPTION’ ... OK
+* this is package ‘foieGras’ version ‘0.7-6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'knitr', 'rmarkdown', 'rgeos', 'rworldmap'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/foieGras/old/foieGras.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘foieGras/DESCRIPTION’ ... OK
+* this is package ‘foieGras’ version ‘0.7-6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'knitr', 'rmarkdown', 'rgeos', 'rworldmap'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# foodingraph
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/vgasque/foodingraph
+* Source code: https://github.com/cran/foodingraph
+* Date/Publication: 2019-10-06 11:30:08 UTC
+* Number of recursive dependencies: 61
+
+Run `cloud_details(, "foodingraph")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/foodingraph/new/foodingraph.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘foodingraph/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘foodingraph’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'infotheo', 'minet'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/foodingraph/old/foodingraph.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘foodingraph/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘foodingraph’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'infotheo', 'minet'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# forestecology
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/rudeboybert/forestecology
+* Source code: https://github.com/cran/forestecology
+* Date/Publication: 2021-10-02 13:30:05 UTC
+* Number of recursive dependencies: 103
+
+Run `cloud_details(, "forestecology")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/forestecology/new/forestecology.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘forestecology/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘forestecology’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/forestecology/old/forestecology.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘forestecology/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘forestecology’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# forestmangr
+
+
+
+* Version: 0.9.4
+* GitHub: https://github.com/sollano/forestmangr
+* Source code: https://github.com/cran/forestmangr
+* Date/Publication: 2021-08-16 13:00:02 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "forestmangr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/forestmangr/new/forestmangr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘forestmangr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘forestmangr’ version ‘0.9.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'formattable'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/forestmangr/old/forestmangr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘forestmangr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘forestmangr’ version ‘0.9.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'formattable'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# FORTLS
+
+
+
+* Version: 1.0.6
+* GitHub: https://github.com/Molina-Valero/FORTLS
+* Source code: https://github.com/cran/FORTLS
+* Date/Publication: 2021-11-06 15:00:25 UTC
+* Number of recursive dependencies: 124
+
+Run `cloud_details(, "FORTLS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/FORTLS/new/FORTLS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘FORTLS/DESCRIPTION’ ... OK
+* this is package ‘FORTLS’ version ‘1.0.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'dbscan', 'Distance', 'ggvoronoi', 'htmlwidgets', 'lidR', 'moments',
+ 'plotly', 'progress', 'Rcpp', 'raster', 'RCSF', 'scales', 'sp',
+ 'vroom', 'RcppEigen'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/FORTLS/old/FORTLS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘FORTLS/DESCRIPTION’ ... OK
+* this is package ‘FORTLS’ version ‘1.0.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'dbscan', 'Distance', 'ggvoronoi', 'htmlwidgets', 'lidR', 'moments',
+ 'plotly', 'progress', 'Rcpp', 'raster', 'RCSF', 'scales', 'sp',
+ 'vroom', 'RcppEigen'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# forwards
+
+
+
+* Version: 0.1.3
+* GitHub: https://github.com/forwards/forwards
+* Source code: https://github.com/cran/forwards
+* Date/Publication: 2019-07-30 21:10:02 UTC
+* Number of recursive dependencies: 123
+
+Run `cloud_details(, "forwards")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/forwards/new/forwards.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘forwards/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘forwards’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking for unstated dependencies in examples ... OK
+* checking contents of ‘data’ directory ... OK
+* checking data for non-ASCII characters ... OK
+* checking LazyData ... OK
+* checking data for ASCII and uncompressed saves ... OK
+* checking installed files from ‘inst/doc’ ... OK
+* checking files in ‘vignettes’ ... OK
+* checking examples ... OK
+* DONE
+Status: 1 WARNING
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/forwards/old/forwards.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘forwards/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘forwards’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking for unstated dependencies in examples ... OK
+* checking contents of ‘data’ directory ... OK
+* checking data for non-ASCII characters ... OK
+* checking LazyData ... OK
+* checking data for ASCII and uncompressed saves ... OK
+* checking installed files from ‘inst/doc’ ... OK
+* checking files in ‘vignettes’ ... OK
+* checking examples ... OK
+* DONE
+Status: 1 WARNING
+
+
+
+
+
+```
+# fourierin
+
+
+
+* Version: 0.2.4
+* GitHub: https://github.com/gbasulto/fourierin
+* Source code: https://github.com/cran/fourierin
+* Date/Publication: 2019-04-07 12:22:43 UTC
+* Number of recursive dependencies: 54
+
+Run `cloud_details(, "fourierin")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/fourierin/new/fourierin.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fourierin/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘fourierin’ version ‘0.2.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'rbenchmark'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/fourierin/old/fourierin.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘fourierin/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘fourierin’ version ‘0.2.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'rbenchmark'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# FSinR
+
+
+
+* Version: 2.0.5
+* GitHub: NA
+* Source code: https://github.com/cran/FSinR
+* Date/Publication: 2020-11-23 10:50:26 UTC
+* Number of recursive dependencies: 104
+
+Run `cloud_details(, "FSinR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/FSinR/new/FSinR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘FSinR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘FSinR’ version ‘2.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'RSNNS'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/FSinR/old/FSinR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘FSinR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘FSinR’ version ‘2.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'RSNNS'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# garchmodels
+
+
+
+* Version: 0.1.1
+* GitHub: NA
+* Source code: https://github.com/cran/garchmodels
+* Date/Publication: 2021-04-12 17:20:02 UTC
+* Number of recursive dependencies: 229
+
+Run `cloud_details(, "garchmodels")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/garchmodels/new/garchmodels.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘garchmodels/DESCRIPTION’ ... OK
+* this is package ‘garchmodels’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'tidymodels', 'tidyverse', 'modeltime', 'timetk', 'lubridate',
+ 'knitr', 'rmarkdown', 'roxygen2', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/garchmodels/old/garchmodels.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘garchmodels/DESCRIPTION’ ... OK
+* this is package ‘garchmodels’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'tidymodels', 'tidyverse', 'modeltime', 'timetk', 'lubridate',
+ 'knitr', 'rmarkdown', 'roxygen2', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# geneticae
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/jangelini/geneticae
+* Source code: https://github.com/cran/geneticae
+* Date/Publication: 2021-09-16 07:10:02 UTC
+* Number of recursive dependencies: 157
+
+Run `cloud_details(, "geneticae")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/geneticae/new/geneticae.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘geneticae/DESCRIPTION’ ... OK
+* this is package ‘geneticae’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'spelling', 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/geneticae/old/geneticae.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘geneticae/DESCRIPTION’ ... OK
+* this is package ‘geneticae’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'spelling', 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# geofi
+
+
+
+* Version: 1.0.5
+* GitHub: https://github.com/rOpenGov/geofi
+* Source code: https://github.com/cran/geofi
+* Date/Publication: 2021-10-30 18:00:02 UTC
+* Number of recursive dependencies: 122
+
+Run `cloud_details(, "geofi")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/geofi/new/geofi.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘geofi/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘geofi’ version ‘1.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'covr', 'geofacet', 'ggplot2', 'ggrepel', 'htmltools', 'httptest',
+ 'janitor', 'knitr', 'leaflet', 'patchwork', 'pxweb', 'readr',
+ 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/geofi/old/geofi.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘geofi/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘geofi’ version ‘1.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'covr', 'geofacet', 'ggplot2', 'ggrepel', 'htmltools', 'httptest',
+ 'janitor', 'knitr', 'leaflet', 'patchwork', 'pxweb', 'readr',
+ 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# geomander
+
+
+
+* Version: 2.0.2
+* GitHub: https://github.com/christopherkenny/geomander
+* Source code: https://github.com/cran/geomander
+* Date/Publication: 2021-12-08 21:30:06 UTC
+* Number of recursive dependencies: 121
+
+Run `cloud_details(, "geomander")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/geomander/new/geomander.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘geomander/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘geomander’ version ‘2.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'redist', 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/geomander/old/geomander.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘geomander/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘geomander’ version ‘2.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'redist', 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# GeoTcgaData
+
+
+
+* Version: 1.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/GeoTcgaData
+* Date/Publication: 2021-10-24 09:20:05 UTC
+* Number of recursive dependencies: 301
+
+Run `cloud_details(, "GeoTcgaData")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/GeoTcgaData/new/GeoTcgaData.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘GeoTcgaData/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘GeoTcgaData’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'DESeq2', 'ChAMP', 'clusterProfiler',
+ 'org.Hs.eg.db', 'edgeR', 'quantreg'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/GeoTcgaData/old/GeoTcgaData.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘GeoTcgaData/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘GeoTcgaData’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'DESeq2', 'ChAMP', 'clusterProfiler',
+ 'org.Hs.eg.db', 'edgeR', 'quantreg'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggfortify
+
+
+
+* Version: 0.4.13
+* GitHub: https://github.com/sinhrks/ggfortify
+* Source code: https://github.com/cran/ggfortify
+* Date/Publication: 2021-10-25 20:10:02 UTC
+* Number of recursive dependencies: 125
+
+Run `cloud_details(, "ggfortify")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggfortify/new/ggfortify.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggfortify/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggfortify’ version ‘0.4.13’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'glmnet', 'KFAS', 'knitr', 'lintr', 'mapdata', 'markdown', 'MSwM',
+ 'raster', 'ROCR', 'sp', 'strucchange', 'timeSeries', 'tseries',
+ 'vars', 'xts', 'zoo', 'lfda'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggfortify/old/ggfortify.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggfortify/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggfortify’ version ‘0.4.13’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'glmnet', 'KFAS', 'knitr', 'lintr', 'mapdata', 'markdown', 'MSwM',
+ 'raster', 'ROCR', 'sp', 'strucchange', 'timeSeries', 'tseries',
+ 'vars', 'xts', 'zoo', 'lfda'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggheatmap
+
+
+
+* Version: 2.1
+* GitHub: NA
+* Source code: https://github.com/cran/ggheatmap
+* Date/Publication: 2021-07-25 13:20:02 UTC
+* Number of recursive dependencies: 144
+
+Run `cloud_details(, "ggheatmap")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggheatmap/new/ggheatmap.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggheatmap/DESCRIPTION’ ... OK
+* this is package ‘ggheatmap’ version ‘2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'aplot', 'factoextra', 'ggpubr', 'patchwork'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggheatmap/old/ggheatmap.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggheatmap/DESCRIPTION’ ... OK
+* this is package ‘ggheatmap’ version ‘2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'aplot', 'factoextra', 'ggpubr', 'patchwork'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggprism
+
+
+
+* Version: 1.0.3
+* GitHub: https://github.com/csdaw/ggprism
+* Source code: https://github.com/cran/ggprism
+* Date/Publication: 2021-06-08 11:40:02 UTC
+* Number of recursive dependencies: 120
+
+Run `cloud_details(, "ggprism")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggprism/new/ggprism.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggprism/DESCRIPTION’ ... OK
+* this is package ‘ggprism’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'covr', 'ggbeeswarm', 'ggnewscale', 'knitr', 'patchwork',
+ 'rmarkdown', 'rstatix', 'tinytest'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggprism/old/ggprism.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggprism/DESCRIPTION’ ... OK
+* this is package ‘ggprism’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'covr', 'ggbeeswarm', 'ggnewscale', 'knitr', 'patchwork',
+ 'rmarkdown', 'rstatix', 'tinytest'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggpubr
+
+
+
+* Version: 0.4.0
+* GitHub: https://github.com/kassambara/ggpubr
+* Source code: https://github.com/cran/ggpubr
+* Date/Publication: 2020-06-27 06:20:02 UTC
+* Number of recursive dependencies: 104
+
+Run `cloud_details(, "ggpubr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggpubr/new/ggpubr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggpubr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggpubr’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'ggrepel', 'ggsci', 'cowplot', 'ggsignif', 'scales',
+ 'gridExtra', 'polynom', 'rstatix'
+
+Packages suggested but not available for checking:
+ 'knitr', 'RColorBrewer', 'gtable'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggpubr/old/ggpubr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggpubr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggpubr’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'ggrepel', 'ggsci', 'cowplot', 'ggsignif', 'scales',
+ 'gridExtra', 'polynom', 'rstatix'
+
+Packages suggested but not available for checking:
+ 'knitr', 'RColorBrewer', 'gtable'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggseg
+
+
+
+* Version: 1.6.4
+* GitHub: https://github.com/ggseg/ggseg
+* Source code: https://github.com/cran/ggseg
+* Date/Publication: 2021-09-03 12:20:09 UTC
+* Number of recursive dependencies: 125
+
+Run `cloud_details(, "ggseg")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggseg/new/ggseg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggseg/DESCRIPTION’ ... OK
+* this is package ‘ggseg’ version ‘1.6.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'here', 'rmarkdown', 'freesurfer', 'covr', 'vdiffr',
+ 'testthat', 'devtools', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggseg/old/ggseg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggseg/DESCRIPTION’ ... OK
+* this is package ‘ggseg’ version ‘1.6.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'here', 'rmarkdown', 'freesurfer', 'covr', 'vdiffr',
+ 'testthat', 'devtools', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggspectra
+
+
+
+* Version: 0.3.7
+* GitHub: NA
+* Source code: https://github.com/cran/ggspectra
+* Date/Publication: 2020-10-04 04:20:02 UTC
+* Number of recursive dependencies: 60
+
+Run `cloud_details(, "ggspectra")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggspectra/new/ggspectra.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggspectra/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggspectra’ version ‘0.3.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggrepel', 'lubridate'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggspectra/old/ggspectra.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggspectra/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggspectra’ version ‘0.3.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggrepel', 'lubridate'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggstatsplot
+
+
+
+* Version: 0.9.0
+* GitHub: https://github.com/IndrajeetPatil/ggstatsplot
+* Source code: https://github.com/cran/ggstatsplot
+* Date/Publication: 2021-10-19 11:20:02 UTC
+* Number of recursive dependencies: 181
+
+Run `cloud_details(, "ggstatsplot")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggstatsplot/new/ggstatsplot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggstatsplot/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggstatsplot’ version ‘0.9.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'afex', 'forcats', 'ggcorrplot', 'ggside', 'knitr', 'metaBMA',
+ 'metafor', 'rmarkdown', 'spelling', 'testthat', 'vdiffr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggstatsplot/old/ggstatsplot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggstatsplot/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggstatsplot’ version ‘0.9.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'afex', 'forcats', 'ggcorrplot', 'ggside', 'knitr', 'metaBMA',
+ 'metafor', 'rmarkdown', 'spelling', 'testthat', 'vdiffr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ggVennDiagram
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/gaospecial/ggVennDiagram
+* Source code: https://github.com/cran/ggVennDiagram
+* Date/Publication: 2021-10-22 09:20:09 UTC
+* Number of recursive dependencies: 99
+
+Run `cloud_details(, "ggVennDiagram")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ggVennDiagram/new/ggVennDiagram.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggVennDiagram/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggVennDiagram’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'venn', 'RColorBrewer'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ggVennDiagram/old/ggVennDiagram.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ggVennDiagram/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ggVennDiagram’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'venn', 'RColorBrewer'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# GillespieSSA2
+
+
+
+* Version: 0.2.8
+* GitHub: https://github.com/rcannood/GillespieSSA2
+* Source code: https://github.com/cran/GillespieSSA2
+* Date/Publication: 2021-05-18 09:50:10 UTC
+* Number of recursive dependencies: 91
+
+Run `cloud_details(, "GillespieSSA2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/GillespieSSA2/new/GillespieSSA2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘GillespieSSA2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘GillespieSSA2’ version ‘0.2.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'ggplot2', 'GillespieSSA', 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/GillespieSSA2/old/GillespieSSA2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘GillespieSSA2/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘GillespieSSA2’ version ‘0.2.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'ggplot2', 'GillespieSSA', 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# graph4lg
+
+
+
+* Version: 1.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/graph4lg
+* Date/Publication: 2021-03-16 15:20:02 UTC
+* Number of recursive dependencies: 138
+
+Run `cloud_details(, "graph4lg")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/graph4lg/new/graph4lg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘graph4lg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘graph4lg’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'pegas', 'sp', 'sf', 'diveRsity', 'rappdirs', 'gdistance', 'raster',
+ 'ecodist', 'Rdpack'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/graph4lg/old/graph4lg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘graph4lg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘graph4lg’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'pegas', 'sp', 'sf', 'diveRsity', 'rappdirs', 'gdistance', 'raster',
+ 'ecodist', 'Rdpack'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# greed
+
+
+
+* Version: 0.5.1
+* GitHub: https://github.com/comeetie/greed
+* Source code: https://github.com/cran/greed
+* Date/Publication: 2021-05-10 06:50:03 UTC
+* Number of recursive dependencies: 139
+
+Run `cloud_details(, "greed")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/greed/new/greed.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘greed/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘greed’ version ‘0.5.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'mclust', 'knitr', 'rmarkdown', 'igraph', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/greed/old/greed.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘greed/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘greed’ version ‘0.5.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'mclust', 'knitr', 'rmarkdown', 'igraph', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# gtsummary
+
+
+
+* Version: 1.5.0
+* GitHub: https://github.com/ddsjoberg/gtsummary
+* Source code: https://github.com/cran/gtsummary
+* Date/Publication: 2021-10-16 14:00:02 UTC
+* Number of recursive dependencies: 192
+
+Run `cloud_details(, "gtsummary")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/gtsummary/new/gtsummary.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘gtsummary/DESCRIPTION’ ... OK
+* this is package ‘gtsummary’ version ‘1.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'GGally', 'Hmisc', 'huxtable', 'insight', 'kableExtra', 'lme4',
+ 'mice', 'officer', 'parameters', 'parsnip', 'rmarkdown', 'scales',
+ 'smd', 'spelling', 'survey', 'testthat', 'workflows'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/gtsummary/old/gtsummary.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘gtsummary/DESCRIPTION’ ... OK
+* this is package ‘gtsummary’ version ‘1.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'GGally', 'Hmisc', 'huxtable', 'insight', 'kableExtra', 'lme4',
+ 'mice', 'officer', 'parameters', 'parsnip', 'rmarkdown', 'scales',
+ 'smd', 'spelling', 'survey', 'testthat', 'workflows'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# gwasrapidd
+
+
+
+* Version: 0.99.12
+* GitHub: https://github.com/ramiromagno/gwasrapidd
+* Source code: https://github.com/cran/gwasrapidd
+* Date/Publication: 2021-11-29 11:50:02 UTC
+* Number of recursive dependencies: 74
+
+Run `cloud_details(, "gwasrapidd")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/gwasrapidd/new/gwasrapidd.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘gwasrapidd/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘gwasrapidd’ version ‘0.99.12’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'httptest', 'spelling', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/gwasrapidd/old/gwasrapidd.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘gwasrapidd/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘gwasrapidd’ version ‘0.99.12’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'httptest', 'spelling', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# hacksig
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/Acare/hacksig
+* Source code: https://github.com/cran/hacksig
+* Date/Publication: 2021-12-02 08:50:05 UTC
+* Number of recursive dependencies: 68
+
+Run `cloud_details(, "hacksig")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/hacksig/new/hacksig.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘hacksig/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘hacksig’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'future', 'ggplot2', 'knitr', 'msigdbr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/hacksig/old/hacksig.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘hacksig/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘hacksig’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'future', 'ggplot2', 'knitr', 'msigdbr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# harmony
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/harmony
+* Date/Publication: 2021-06-02 08:10:02 UTC
+* Number of recursive dependencies: 150
+
+Run `cloud_details(, "harmony")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/harmony/new/harmony.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘harmony/DESCRIPTION’ ... OK
+* this is package ‘harmony’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'Seurat', 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/harmony/old/harmony.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘harmony/DESCRIPTION’ ... OK
+* this is package ‘harmony’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'Seurat', 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# hdme
+
+
+
+* Version: 0.3.4
+* GitHub: https://github.com/osorensen/hdme
+* Source code: https://github.com/cran/hdme
+* Date/Publication: 2021-09-02 04:30:02 UTC
+* Number of recursive dependencies: 86
+
+Run `cloud_details(, "hdme")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/hdme/new/hdme.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘hdme/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘hdme’ version ‘0.3.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/hdme/old/hdme.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘hdme/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘hdme’ version ‘0.3.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# healthyR.ai
+
+
+
+* Version: 0.0.4
+* GitHub: https://github.com/spsanderson/healthyR.ai
+* Source code: https://github.com/cran/healthyR.ai
+* Date/Publication: 2021-12-08 21:30:02 UTC
+* Number of recursive dependencies: 140
+
+Run `cloud_details(, "healthyR.ai")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/healthyR.ai/new/healthyR.ai.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘healthyR.ai/DESCRIPTION’ ... OK
+* this is package ‘healthyR.ai’ version ‘0.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'roxygen2', 'tidyquant', 'rstudioapi',
+ 'healthyR.data', 'scales', 'janitor', 'timetk'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/healthyR.ai/old/healthyR.ai.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘healthyR.ai/DESCRIPTION’ ... OK
+* this is package ‘healthyR.ai’ version ‘0.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'roxygen2', 'tidyquant', 'rstudioapi',
+ 'healthyR.data', 'scales', 'janitor', 'timetk'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# heatwaveR
+
+
+
+* Version: 0.4.6
+* GitHub: https://github.com/robwschlegel/heatwaveR
+* Source code: https://github.com/cran/heatwaveR
+* Date/Publication: 2021-10-27 14:50:02 UTC
+* Number of recursive dependencies: 149
+
+Run `cloud_details(, "heatwaveR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/heatwaveR/new/heatwaveR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘heatwaveR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘heatwaveR’ version ‘0.4.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'doParallel', 'covr', 'ggpubr', 'knitr', 'ncdf4', 'rerddap',
+ 'rmarkdown', 'testthat', 'tidync'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/heatwaveR/old/heatwaveR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘heatwaveR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘heatwaveR’ version ‘0.4.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'doParallel', 'covr', 'ggpubr', 'knitr', 'ncdf4', 'rerddap',
+ 'rmarkdown', 'testthat', 'tidync'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# HTSSIP
+
+
+
+* Version: 1.4.1
+* GitHub: NA
+* Source code: https://github.com/cran/HTSSIP
+* Date/Publication: 2019-09-13 22:30:02 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "HTSSIP")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/HTSSIP/new/HTSSIP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘HTSSIP/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘HTSSIP’ version ‘1.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'doParallel'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/HTSSIP/old/HTSSIP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘HTSSIP/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘HTSSIP’ version ‘1.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'doParallel'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# huito
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/flavjack/huito
+* Source code: https://github.com/cran/huito
+* Date/Publication: 2021-12-14 14:20:11 UTC
+* Number of recursive dependencies: 175
+
+Run `cloud_details(, "huito")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/huito/new/huito.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘huito/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘huito’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bookdown', 'gsheet', 'inti'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/huito/old/huito.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘huito/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘huito’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bookdown', 'gsheet', 'inti'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# IBMPopSim
+
+
+
+* Version: 0.3.1
+* GitHub: https://github.com/DaphneGiorgi/IBMPopSim
+* Source code: https://github.com/cran/IBMPopSim
+* Date/Publication: 2020-11-10 15:30:05 UTC
+* Number of recursive dependencies: 71
+
+Run `cloud_details(, "IBMPopSim")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/IBMPopSim/new/IBMPopSim.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘IBMPopSim/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘IBMPopSim’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'RcppArmadillo', 'knitr', 'rmarkdown', 'bookdown', 'ggfortify',
+ 'magick', 'colorspace', 'gridExtra'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/IBMPopSim/old/IBMPopSim.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘IBMPopSim/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘IBMPopSim’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'RcppArmadillo', 'knitr', 'rmarkdown', 'bookdown', 'ggfortify',
+ 'magick', 'colorspace', 'gridExtra'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# idiogramFISH
+
+
+
+* Version: 2.0.6
+* GitHub: NA
+* Source code: https://github.com/cran/idiogramFISH
+* Date/Publication: 2021-09-30 12:00:02 UTC
+* Number of recursive dependencies: 193
+
+Run `cloud_details(, "idiogramFISH")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/idiogramFISH/new/idiogramFISH.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘idiogramFISH/DESCRIPTION’ ... OK
+* this is package ‘idiogramFISH’ version ‘2.0.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'gtools', 'rclipboard', 'clipr'
+
+VignetteBuilder packages required for checking but not installed:
+ 'rmdformats', 'knitr', 'kableExtra', 'rmarkdown', 'RCurl', 'rvcheck',
+ 'badger', 'rentrez'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/idiogramFISH/old/idiogramFISH.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘idiogramFISH/DESCRIPTION’ ... OK
+* this is package ‘idiogramFISH’ version ‘2.0.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'gtools', 'rclipboard', 'clipr'
+
+VignetteBuilder packages required for checking but not installed:
+ 'rmdformats', 'knitr', 'kableExtra', 'rmarkdown', 'RCurl', 'rvcheck',
+ 'badger', 'rentrez'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# iglu
+
+
+
+* Version: 3.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/iglu
+* Date/Publication: 2021-09-08 18:40:02 UTC
+* Number of recursive dependencies: 153
+
+Run `cloud_details(, "iglu")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/iglu/new/iglu.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘iglu/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘iglu’ version ‘3.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/iglu/old/iglu.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘iglu/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘iglu’ version ‘3.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# imputeTestbench
+
+
+
+* Version: 3.0.3
+* GitHub: https://github.com/neerajdhanraj/imputeTestbench
+* Source code: https://github.com/cran/imputeTestbench
+* Date/Publication: 2019-07-05 18:10:14 UTC
+* Number of recursive dependencies: 79
+
+Run `cloud_details(, "imputeTestbench")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/imputeTestbench/new/imputeTestbench.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘imputeTestbench/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘imputeTestbench’ version ‘3.0.3’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'forecast', 'ggplot2', 'imputeTS', 'reshape2', 'zoo'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/imputeTestbench/old/imputeTestbench.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘imputeTestbench/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘imputeTestbench’ version ‘3.0.3’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'forecast', 'ggplot2', 'imputeTS', 'reshape2', 'zoo'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# insane
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/mcanouil/insane
+* Source code: https://github.com/cran/insane
+* Date/Publication: 2020-11-04 12:10:03 UTC
+* Number of recursive dependencies: 164
+
+Run `cloud_details(, "insane")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/insane/new/insane.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘insane/DESCRIPTION’ ... OK
+* this is package ‘insane’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'roxygen2', 'knitr', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/insane/old/insane.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘insane/DESCRIPTION’ ... OK
+* this is package ‘insane’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'roxygen2', 'knitr', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# inti
+
+
+
+* Version: 0.5.1
+* GitHub: https://github.com/flavjack/inti
+* Source code: https://github.com/cran/inti
+* Date/Publication: 2021-12-10 11:50:05 UTC
+* Number of recursive dependencies: 164
+
+Run `cloud_details(, "inti")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/inti/new/inti.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘inti/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘inti’ version ‘0.5.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'gsheet', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/inti/old/inti.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘inti/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘inti’ version ‘0.5.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'gsheet', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# iNZightPlots
+
+
+
+* Version: 2.13.3
+* GitHub: https://github.com/iNZightVIT/iNZightPlots
+* Source code: https://github.com/cran/iNZightPlots
+* Date/Publication: 2021-07-01 09:20:02 UTC
+* Number of recursive dependencies: 167
+
+Run `cloud_details(, "iNZightPlots")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/iNZightPlots/new/iNZightPlots.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘iNZightPlots/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘iNZightPlots’ version ‘2.13.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'hextri', 'viridis', 'RColorBrewer', 'gridSVG', 'knitr', 'jsonlite',
+ 'testthat', 'covr', 'ggplot2', 'forcats', 'ggmosaic', 'waffle',
+ 'ggthemes', 'ggbeeswarm', 'ggridges', 'plotly'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/iNZightPlots/old/iNZightPlots.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘iNZightPlots/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘iNZightPlots’ version ‘2.13.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'hextri', 'viridis', 'RColorBrewer', 'gridSVG', 'knitr', 'jsonlite',
+ 'testthat', 'covr', 'ggplot2', 'forcats', 'ggmosaic', 'waffle',
+ 'ggthemes', 'ggbeeswarm', 'ggridges', 'plotly'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# isotracer
+
+
+
+* Version: 1.0.4
+* GitHub: NA
+* Source code: https://github.com/cran/isotracer
+* Date/Publication: 2021-09-27 08:50:02 UTC
+* Number of recursive dependencies: 145
+
+Run `cloud_details(, "isotracer")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/isotracer/new/isotracer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘isotracer/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘isotracer’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'bayesplot', 'covr', 'ggdist', 'ggplot2', 'ggraph', 'gridBase',
+ 'gridExtra', 'here', 'igraph', 'knitr', 'readxl', 'rmarkdown',
+ 'testthat', 'tidygraph', 'tidyverse', 'viridisLite'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/isotracer/old/isotracer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘isotracer/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘isotracer’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'bayesplot', 'covr', 'ggdist', 'ggplot2', 'ggraph', 'gridBase',
+ 'gridExtra', 'here', 'igraph', 'knitr', 'readxl', 'rmarkdown',
+ 'testthat', 'tidygraph', 'tidyverse', 'viridisLite'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# jackstrap
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/jackstrap
+* Date/Publication: 2020-06-09 15:10:02 UTC
+* Number of recursive dependencies: 68
+
+Run `cloud_details(, "jackstrap")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/jackstrap/new/jackstrap.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘jackstrap/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘jackstrap’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'reshape', 'scales', 'plyr'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/jackstrap/old/jackstrap.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘jackstrap/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘jackstrap’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'reshape', 'scales', 'plyr'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# jrt
+
+
+
+* Version: 1.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/jrt
+* Date/Publication: 2021-12-10 08:30:06 UTC
+* Number of recursive dependencies: 69
+
+Run `cloud_details(, "jrt")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/jrt/new/jrt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘jrt/DESCRIPTION’ ... OK
+* this is package ‘jrt’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'directlabels', 'mirt', 'psych', 'irr', 'ggplot2', 'ggsci'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/jrt/old/jrt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘jrt/DESCRIPTION’ ... OK
+* this is package ‘jrt’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'directlabels', 'mirt', 'psych', 'irr', 'ggplot2', 'ggsci'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# kibior
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/regisoc/kibior
+* Source code: https://github.com/cran/kibior
+* Date/Publication: 2021-01-28 15:20:02 UTC
+* Number of recursive dependencies: 123
+
+Run `cloud_details(, "kibior")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/kibior/new/kibior.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘kibior/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘kibior’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'readr', 'xml2', 'testthat', 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/kibior/old/kibior.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘kibior/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘kibior’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'readr', 'xml2', 'testthat', 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# KMunicate
+
+
+
+* Version: 0.2.1
+* GitHub: https://github.com/ellessenne/KMunicate-package
+* Source code: https://github.com/cran/KMunicate
+* Date/Publication: 2021-04-23 15:00:15 UTC
+* Number of recursive dependencies: 170
+
+Run `cloud_details(, "KMunicate")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/KMunicate/new/KMunicate.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘KMunicate/DESCRIPTION’ ... OK
+* this is package ‘KMunicate’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'broom', 'covr', 'devtools', 'knitr', 'rmarkdown', 'simsurv',
+ 'testthat', 'usethis'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/KMunicate/old/KMunicate.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘KMunicate/DESCRIPTION’ ... OK
+* this is package ‘KMunicate’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'broom', 'covr', 'devtools', 'knitr', 'rmarkdown', 'simsurv',
+ 'testthat', 'usethis'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# lares
+
+
+
+* Version: 5.0.4
+* GitHub: https://github.com/laresbernardo/lares
+* Source code: https://github.com/cran/lares
+* Date/Publication: 2021-12-03 21:00:02 UTC
+* Number of recursive dependencies: 142
+
+Run `cloud_details(, "lares")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/lares/new/lares.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lares/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘lares’ version ‘5.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'beepr', 'DALEX', 'DBI', 'forecast', 'googleAuthR', 'googlesheets4',
+ 'knitr', 'quantmod', 'plotly', 'rdrop2', 'rmarkdown', 'rtweet', 'tm',
+ 'wordcloud'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/lares/old/lares.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lares/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘lares’ version ‘5.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'beepr', 'DALEX', 'DBI', 'forecast', 'googleAuthR', 'googlesheets4',
+ 'knitr', 'quantmod', 'plotly', 'rdrop2', 'rmarkdown', 'rtweet', 'tm',
+ 'wordcloud'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# lcsm
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/milanwiedemann/lcsm
+* Source code: https://github.com/cran/lcsm
+* Date/Publication: 2020-07-24 18:00:02 UTC
+* Number of recursive dependencies: 141
+
+Run `cloud_details(, "lcsm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/lcsm/new/lcsm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lcsm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘lcsm’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'shiny'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/lcsm/old/lcsm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lcsm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘lcsm’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'shiny'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# LDAShiny
+
+
+
+* Version: 0.9.3
+* GitHub: https://github.com/JavierDeLaHoz/LDAShiny
+* Source code: https://github.com/cran/LDAShiny
+* Date/Publication: 2021-03-29 10:02:12 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "LDAShiny")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/LDAShiny/new/LDAShiny.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘LDAShiny/DESCRIPTION’ ... OK
+* this is package ‘LDAShiny’ version ‘0.9.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'RColorBrewer', 'rmarkdown', 'Rmpfr', 'scales'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/LDAShiny/old/LDAShiny.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘LDAShiny/DESCRIPTION’ ... OK
+* this is package ‘LDAShiny’ version ‘0.9.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'RColorBrewer', 'rmarkdown', 'Rmpfr', 'scales'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# lddmm
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/lddmm
+* Date/Publication: 2021-11-08 12:10:08 UTC
+* Number of recursive dependencies: 60
+
+Run `cloud_details(, "lddmm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/lddmm/new/lddmm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lddmm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘lddmm’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'latex2exp', 'reshape2', 'RColorBrewer', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/lddmm/old/lddmm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lddmm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘lddmm’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'latex2exp', 'reshape2', 'RColorBrewer', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# linkspotter
+
+
+
+* Version: 1.3.0
+* GitHub: https://github.com/sambaala/linkspotter
+* Source code: https://github.com/cran/linkspotter
+* Date/Publication: 2020-07-23 10:40:02 UTC
+* Number of recursive dependencies: 81
+
+Run `cloud_details(, "linkspotter")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/linkspotter/new/linkspotter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘linkspotter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘linkspotter’ version ‘1.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'rAmCharts', 'pbapply', 'ggplot2', 'shinybusy'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/linkspotter/old/linkspotter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘linkspotter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘linkspotter’ version ‘1.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'rAmCharts', 'pbapply', 'ggplot2', 'shinybusy'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# localIV
+
+
+
+* Version: 0.3.1
+* GitHub: https://github.com/xiangzhou09/localIV
+* Source code: https://github.com/cran/localIV
+* Date/Publication: 2020-06-26 15:40:02 UTC
+* Number of recursive dependencies: 106
+
+Run `cloud_details(, "localIV")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/localIV/new/localIV.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘localIV/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘localIV’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘sampleSelection’
+
+Package suggested but not available for checking: ‘ggplot2’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/localIV/old/localIV.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘localIV/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘localIV’ version ‘0.3.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘sampleSelection’
+
+Package suggested but not available for checking: ‘ggplot2’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# loon.ggplot
+
+
+
+* Version: 1.3.0
+* GitHub: https://github.com/great-northern-diver/loon.ggplot
+* Source code: https://github.com/cran/loon.ggplot
+* Date/Publication: 2021-09-28 14:00:05 UTC
+* Number of recursive dependencies: 99
+
+Run `cloud_details(, "loon.ggplot")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/loon.ggplot/new/loon.ggplot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘loon.ggplot/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘loon.ggplot’ version ‘1.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘loon’
+
+Package suggested but not available for checking: ‘zenplots’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/loon.ggplot/old/loon.ggplot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘loon.ggplot/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘loon.ggplot’ version ‘1.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘loon’
+
+Package suggested but not available for checking: ‘zenplots’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NA
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/NA
+* Number of recursive dependencies: 0
+
+Run `cloud_details(, "NA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# mapbayr
+
+
+
+* Version: 0.5.0
+* GitHub: https://github.com/FelicienLL/mapbayr
+* Source code: https://github.com/cran/mapbayr
+* Date/Publication: 2021-07-27 11:40:02 UTC
+* Number of recursive dependencies: 50
+
+Run `cloud_details(, "mapbayr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mapbayr/new/mapbayr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mapbayr/DESCRIPTION’ ... OK
+* this is package ‘mapbayr’ version ‘0.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'mrgsolve', 'optimx', 'stringr'
+
+Package suggested but not available for checking: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mapbayr/old/mapbayr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mapbayr/DESCRIPTION’ ... OK
+* this is package ‘mapbayr’ version ‘0.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'mrgsolve', 'optimx', 'stringr'
+
+Package suggested but not available for checking: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# MARSS
+
+
+
+* Version: 3.11.4
+* GitHub: https://github.com/atsa-es/MARSS
+* Source code: https://github.com/cran/MARSS
+* Date/Publication: 2021-12-15 07:40:20 UTC
+* Number of recursive dependencies: 102
+
+Run `cloud_details(, "MARSS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/MARSS/new/MARSS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MARSS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘MARSS’ version ‘3.11.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available: 'KFAS', 'mvtnorm'
+
+Packages suggested but not available for checking:
+ 'broom', 'forecast', 'Formula', 'ggplot2', 'gridExtra', 'Hmisc',
+ 'lme4', 'maps', 'stringr', 'xtable', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/MARSS/old/MARSS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MARSS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘MARSS’ version ‘3.11.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available: 'KFAS', 'mvtnorm'
+
+Packages suggested but not available for checking:
+ 'broom', 'forecast', 'Formula', 'ggplot2', 'gridExtra', 'Hmisc',
+ 'lme4', 'maps', 'stringr', 'xtable', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# matman
+
+
+
+* Version: 1.1.3
+* GitHub: NA
+* Source code: https://github.com/cran/matman
+* Date/Publication: 2021-12-13 09:30:02 UTC
+* Number of recursive dependencies: 87
+
+Run `cloud_details(, "matman")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/matman/new/matman.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘matman/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘matman’ version ‘1.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'shiny', 'data.table', 'plotly', 'DT', 'shinydashboard',
+ 'shinyWidgets', 'forecast', 'parsedate', 'lubridate'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/matman/old/matman.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘matman/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘matman’ version ‘1.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'shiny', 'data.table', 'plotly', 'DT', 'shinydashboard',
+ 'shinyWidgets', 'forecast', 'parsedate', 'lubridate'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# meltt
+
+
+
+* Version: 0.4.1
+* GitHub: NA
+* Source code: https://github.com/cran/meltt
+* Date/Publication: 2020-04-02 14:40:02 UTC
+* Number of recursive dependencies: 77
+
+Run `cloud_details(, "meltt")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/meltt/new/meltt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘meltt/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘meltt’ version ‘0.4.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'plyr', 'reticulate', 'Rcpp', 'shiny', 'shinyjs',
+ 'leaflet', 'RcppArmadillo'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/meltt/old/meltt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘meltt/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘meltt’ version ‘0.4.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'plyr', 'reticulate', 'Rcpp', 'shiny', 'shinyjs',
+ 'leaflet', 'RcppArmadillo'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# meshed
+
+
+
+* Version: 0.1.4
+* GitHub: NA
+* Source code: https://github.com/cran/meshed
+* Date/Publication: 2021-10-06 13:50:02 UTC
+* Number of recursive dependencies: 54
+
+Run `cloud_details(, "meshed")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/meshed/new/meshed.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘meshed/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘meshed’ version ‘0.1.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'abind', 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/meshed/old/meshed.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘meshed/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘meshed’ version ‘0.1.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'abind', 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# MetabolicSurv
+
+
+
+* Version: 1.1.2
+* GitHub: https://github.com/OlajumokeEvangelina/MetabolicSurv
+* Source code: https://github.com/cran/MetabolicSurv
+* Date/Publication: 2021-06-11 08:30:02 UTC
+* Number of recursive dependencies: 150
+
+Run `cloud_details(, "MetabolicSurv")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/MetabolicSurv/new/MetabolicSurv.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MetabolicSurv/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘MetabolicSurv’ version ‘1.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'Rdpack', 'ggplot2'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/MetabolicSurv/old/MetabolicSurv.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MetabolicSurv/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘MetabolicSurv’ version ‘1.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'Rdpack', 'ggplot2'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# metajam
+
+
+
+* Version: 0.2.3
+* GitHub: https://github.com/nceas/metajam
+* Source code: https://github.com/cran/metajam
+* Date/Publication: 2020-11-03 11:40:02 UTC
+* Number of recursive dependencies: 85
+
+Run `cloud_details(, "metajam")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/metajam/new/metajam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘metajam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘metajam’ version ‘0.2.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'udunits2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/metajam/old/metajam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘metajam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘metajam’ version ‘0.2.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'udunits2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# metamicrobiomeR
+
+
+
+* Version: 1.2
+* GitHub: https://github.com/nhanhocu/metamicrobiomeR
+* Source code: https://github.com/cran/metamicrobiomeR
+* Date/Publication: 2020-11-09 11:20:05 UTC
+* Number of recursive dependencies: 144
+
+Run `cloud_details(, "metamicrobiomeR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/metamicrobiomeR/new/metamicrobiomeR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘metamicrobiomeR/DESCRIPTION’ ... OK
+* this is package ‘metamicrobiomeR’ version ‘1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'RCurl', 'httr', 'repmis', 'jsonlite', 'knitr',
+ 'rmarkdown', 'gplots', 'reshape2', 'caret', 'randomForest',
+ 'tsibble', 'RColorBrewer'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/metamicrobiomeR/old/metamicrobiomeR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘metamicrobiomeR/DESCRIPTION’ ... OK
+* this is package ‘metamicrobiomeR’ version ‘1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'RCurl', 'httr', 'repmis', 'jsonlite', 'knitr',
+ 'rmarkdown', 'gplots', 'reshape2', 'caret', 'randomForest',
+ 'tsibble', 'RColorBrewer'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mFD
+
+
+
+* Version: 1.0.1
+* GitHub: https://github.com/CmlMagneville/mFD
+* Source code: https://github.com/cran/mFD
+* Date/Publication: 2021-12-16 10:10:06 UTC
+* Number of recursive dependencies: 150
+
+Run `cloud_details(, "mFD")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mFD/new/mFD.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mFD/DESCRIPTION’ ... OK
+* this is package ‘mFD’ version ‘1.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'stringr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mFD/old/mFD.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mFD/DESCRIPTION’ ... OK
+* this is package ‘mFD’ version ‘1.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'stringr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mice
+
+
+
+* Version: 3.14.0
+* GitHub: https://github.com/amices/mice
+* Source code: https://github.com/cran/mice
+* Date/Publication: 2021-11-24 13:00:02 UTC
+* Number of recursive dependencies: 111
+
+Run `cloud_details(, "mice")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mice/new/mice.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mice/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘mice’ version ‘3.14.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'broom.mixed', 'decor', 'glmnet', 'haven', 'knitr', 'lme4', 'lmtest',
+ 'metafor', 'mitml', 'miceadds', 'pan', 'randomForest', 'ranger',
+ 'rmarkdown', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mice/old/mice.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mice/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘mice’ version ‘3.14.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'broom.mixed', 'decor', 'glmnet', 'haven', 'knitr', 'lme4', 'lmtest',
+ 'metafor', 'mitml', 'miceadds', 'pan', 'randomForest', 'ranger',
+ 'rmarkdown', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# miceafter
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/mwheymans/miceafter
+* Source code: https://github.com/cran/miceafter
+* Date/Publication: 2021-12-16 10:10:02 UTC
+* Number of recursive dependencies: 154
+
+Run `cloud_details(, "miceafter")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/miceafter/new/miceafter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘miceafter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘miceafter’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'bookdown', 'readr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/miceafter/old/miceafter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘miceafter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘miceafter’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'bookdown', 'readr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# microbial
+
+
+
+* Version: 0.0.20
+* GitHub: NA
+* Source code: https://github.com/cran/microbial
+* Date/Publication: 2021-11-01 15:40:02 UTC
+* Number of recursive dependencies: 201
+
+Run `cloud_details(, "microbial")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/microbial/new/microbial.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘microbial/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘microbial’ version ‘0.0.20’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'markdown', 'dada2', 'rmarkdown', 'knitr', 'Biostrings', 'DECIPHER'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/microbial/old/microbial.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘microbial/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘microbial’ version ‘0.0.20’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'markdown', 'dada2', 'rmarkdown', 'knitr', 'Biostrings', 'DECIPHER'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# MicroSEC
+
+
+
+* Version: 1.1.3
+* GitHub: https://github.com/MANO-B/MicroSEC
+* Source code: https://github.com/cran/MicroSEC
+* Date/Publication: 2020-12-02 10:30:07 UTC
+* Number of recursive dependencies: 80
+
+Run `cloud_details(, "MicroSEC")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/MicroSEC/new/MicroSEC.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MicroSEC/DESCRIPTION’ ... OK
+* this is package ‘MicroSEC’ version ‘1.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'BSgenome.Hsapiens.UCSC.hg38', 'BSgenome.Hsapiens.UCSC.hg19',
+ 'BSgenome.Mmusculus.UCSC.mm10', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/MicroSEC/old/MicroSEC.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MicroSEC/DESCRIPTION’ ... OK
+* this is package ‘MicroSEC’ version ‘1.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'BSgenome.Hsapiens.UCSC.hg38', 'BSgenome.Hsapiens.UCSC.hg19',
+ 'BSgenome.Mmusculus.UCSC.mm10', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# migraph
+
+
+
+* Version: 0.8.5
+* GitHub: https://github.com/snlab-ch/migraph
+* Source code: https://github.com/cran/migraph
+* Date/Publication: 2021-10-30 09:50:06 UTC
+* Number of recursive dependencies: 113
+
+Run `cloud_details(, "migraph")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/migraph/new/migraph.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘migraph/DESCRIPTION’ ... OK
+* this is package ‘migraph’ version ‘0.8.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'rmarkdown', 'roxygen2', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/migraph/old/migraph.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘migraph/DESCRIPTION’ ... OK
+* this is package ‘migraph’ version ‘0.8.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'rmarkdown', 'roxygen2', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# missCompare
+
+
+
+* Version: 1.0.3
+* GitHub: https://github.com/Tirgit/missCompare
+* Source code: https://github.com/cran/missCompare
+* Date/Publication: 2020-12-01 08:50:03 UTC
+* Number of recursive dependencies: 196
+
+Run `cloud_details(, "missCompare")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/missCompare/new/missCompare.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘missCompare/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘missCompare’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'devtools'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/missCompare/old/missCompare.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘missCompare/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘missCompare’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'devtools'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# miWQS
+
+
+
+* Version: 0.4.4
+* GitHub: https://github.com/phargarten2/miWQS
+* Source code: https://github.com/cran/miWQS
+* Date/Publication: 2021-04-02 21:50:02 UTC
+* Number of recursive dependencies: 149
+
+Run `cloud_details(, "miWQS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/miWQS/new/miWQS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘miWQS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘miWQS’ version ‘0.4.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'formatR', 'GGally', 'knitr', 'mice', 'norm', 'pander', 'rmarkdown',
+ 'scales', 'sessioninfo', 'spelling', 'testthat', 'wqs'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/miWQS/old/miWQS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘miWQS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘miWQS’ version ‘0.4.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'formatR', 'GGally', 'knitr', 'mice', 'norm', 'pander', 'rmarkdown',
+ 'scales', 'sessioninfo', 'spelling', 'testthat', 'wqs'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mixpoissonreg
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/vpnsctl/mixpoissonreg
+* Source code: https://github.com/cran/mixpoissonreg
+* Date/Publication: 2021-03-10 19:50:06 UTC
+* Number of recursive dependencies: 119
+
+Run `cloud_details(, "mixpoissonreg")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mixpoissonreg/new/mixpoissonreg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mixpoissonreg/DESCRIPTION’ ... OK
+* this is package ‘mixpoissonreg’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'devtools', 'bbreg', 'testthat', 'covr',
+ 'ggfortify', 'broom'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mixpoissonreg/old/mixpoissonreg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mixpoissonreg/DESCRIPTION’ ... OK
+* this is package ‘mixpoissonreg’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'devtools', 'bbreg', 'testthat', 'covr',
+ 'ggfortify', 'broom'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mixtur
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/JimGrange/mixtur
+* Source code: https://github.com/cran/mixtur
+* Date/Publication: 2021-08-03 08:00:02 UTC
+* Number of recursive dependencies: 51
+
+Run `cloud_details(, "mixtur")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mixtur/new/mixtur.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mixtur/DESCRIPTION’ ... OK
+* this is package ‘mixtur’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'ggplot2', 'RColorBrewer'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mixtur/old/mixtur.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mixtur/DESCRIPTION’ ... OK
+* this is package ‘mixtur’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'ggplot2', 'RColorBrewer'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# modeltime
+
+
+
+* Version: 1.1.0
+* GitHub: https://github.com/business-science/modeltime
+* Source code: https://github.com/cran/modeltime
+* Date/Publication: 2021-10-18 16:20:02 UTC
+* Number of recursive dependencies: 241
+
+Run `cloud_details(, "modeltime")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/modeltime/new/modeltime.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘modeltime/DESCRIPTION’ ... OK
+* this is package ‘modeltime’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'roxygen2', 'kernlab', 'thief', 'smooth', 'greybox',
+ 'earth', 'randomForest', 'tidyquant', 'knitr', 'rmarkdown',
+ 'webshot', 'qpdf', 'covr', 'TSrepr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/modeltime/old/modeltime.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘modeltime/DESCRIPTION’ ... OK
+* this is package ‘modeltime’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'roxygen2', 'kernlab', 'thief', 'smooth', 'greybox',
+ 'earth', 'randomForest', 'tidyquant', 'knitr', 'rmarkdown',
+ 'webshot', 'qpdf', 'covr', 'TSrepr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# modeltime.gluonts
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/business-science/modeltime.gluonts
+* Source code: https://github.com/cran/modeltime.gluonts
+* Date/Publication: 2020-11-30 09:40:02 UTC
+* Number of recursive dependencies: 204
+
+Run `cloud_details(, "modeltime.gluonts")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/modeltime.gluonts/new/modeltime.gluonts.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘modeltime.gluonts/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘modeltime.gluonts’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'tidyverse', 'tidymodels', 'knitr', 'rmarkdown', 'roxygen2',
+ 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/modeltime.gluonts/old/modeltime.gluonts.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘modeltime.gluonts/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘modeltime.gluonts’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'tidyverse', 'tidymodels', 'knitr', 'rmarkdown', 'roxygen2',
+ 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# modeltime.h2o
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/business-science/modeltime.h2o
+* Source code: https://github.com/cran/modeltime.h2o
+* Date/Publication: 2021-04-05 14:40:03 UTC
+* Number of recursive dependencies: 205
+
+Run `cloud_details(, "modeltime.h2o")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/modeltime.h2o/new/modeltime.h2o.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘modeltime.h2o/DESCRIPTION’ ... OK
+* this is package ‘modeltime.h2o’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'modeltime', 'h2o', 'timetk', 'parsnip'
+
+Packages suggested but not available for checking:
+ 'tidymodels', 'workflows', 'tidyverse', 'roxygen2', 'testthat',
+ 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/modeltime.h2o/old/modeltime.h2o.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘modeltime.h2o/DESCRIPTION’ ... OK
+* this is package ‘modeltime.h2o’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'modeltime', 'h2o', 'timetk', 'parsnip'
+
+Packages suggested but not available for checking:
+ 'tidymodels', 'workflows', 'tidyverse', 'roxygen2', 'testthat',
+ 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# molnet
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/molnet
+* Date/Publication: 2021-08-06 08:30:02 UTC
+* Number of recursive dependencies: 120
+
+Run `cloud_details(, "molnet")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/molnet/new/molnet.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘molnet/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘molnet’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available: 'igraph', 'WGCNA', 'Rfast', 'readr'
+
+Packages suggested but not available for checking: 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/molnet/old/molnet.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘molnet/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘molnet’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available: 'igraph', 'WGCNA', 'Rfast', 'readr'
+
+Packages suggested but not available for checking: 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# MortalityLaws
+
+
+
+* Version: 1.8.5
+* GitHub: https://github.com/mpascariu/MortalityLaws
+* Source code: https://github.com/cran/MortalityLaws
+* Date/Publication: 2020-09-16 13:00:03 UTC
+* Number of recursive dependencies: 53
+
+Run `cloud_details(, "MortalityLaws")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/MortalityLaws/new/MortalityLaws.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MortalityLaws/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘MortalityLaws’ version ‘1.8.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/MortalityLaws/old/MortalityLaws.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MortalityLaws/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘MortalityLaws’ version ‘1.8.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# MPTmultiverse
+
+
+
+* Version: 0.4-2
+* GitHub: https://github.com/mpt-network/MPTmultiverse
+* Source code: https://github.com/cran/MPTmultiverse
+* Date/Publication: 2020-06-24 09:40:11 UTC
+* Number of recursive dependencies: 93
+
+Run `cloud_details(, "MPTmultiverse")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/MPTmultiverse/new/MPTmultiverse.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MPTmultiverse/DESCRIPTION’ ... OK
+* this is package ‘MPTmultiverse’ version ‘0.4-2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/MPTmultiverse/old/MPTmultiverse.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MPTmultiverse/DESCRIPTION’ ... OK
+* this is package ‘MPTmultiverse’ version ‘0.4-2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mrf2d
+
+
+
+* Version: 0.5
+* GitHub: https://github.com/Freguglia/mrf2d
+* Source code: https://github.com/cran/mrf2d
+* Date/Publication: 2020-10-29 19:00:03 UTC
+* Number of recursive dependencies: 77
+
+Run `cloud_details(, "mrf2d")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mrf2d/new/mrf2d.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mrf2d/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘mrf2d’ version ‘0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mrf2d/old/mrf2d.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mrf2d/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘mrf2d’ version ‘0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mrgsim.sa
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/kylebaron/mrgsim.sa
+* Source code: https://github.com/cran/mrgsim.sa
+* Date/Publication: 2020-11-30 11:20:02 UTC
+* Number of recursive dependencies: 70
+
+Run `cloud_details(, "mrgsim.sa")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mrgsim.sa/new/mrgsim.sa.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mrgsim.sa/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘mrgsim.sa’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'mrgsolve', 'withr', 'assertthat', 'ggplot2', 'patchwork'
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mrgsim.sa/old/mrgsim.sa.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mrgsim.sa/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘mrgsim.sa’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'mrgsolve', 'withr', 'assertthat', 'ggplot2', 'patchwork'
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# MSEtool
+
+
+
+* Version: 3.3.0
+* GitHub: https://github.com/Blue-Matter/MSEtool
+* Source code: https://github.com/cran/MSEtool
+* Date/Publication: 2021-11-16 08:00:08 UTC
+* Number of recursive dependencies: 159
+
+Run `cloud_details(, "MSEtool")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/MSEtool/new/MSEtool.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MSEtool/DESCRIPTION’ ... OK
+* this is package ‘MSEtool’ version ‘3.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'broom', 'covr', 'devtools', 'DT', 'fmsb', 'ggrepel', 'gridExtra',
+ 'kableExtra', 'knitr', 'mvtnorm', 'openxlsx', 'r4ss', 'readxl',
+ 'reshape2', 'rfishbase', 'rmarkdown', 'shiny', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/MSEtool/old/MSEtool.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘MSEtool/DESCRIPTION’ ... OK
+* this is package ‘MSEtool’ version ‘3.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'broom', 'covr', 'devtools', 'DT', 'fmsb', 'ggrepel', 'gridExtra',
+ 'kableExtra', 'knitr', 'mvtnorm', 'openxlsx', 'r4ss', 'readxl',
+ 'reshape2', 'rfishbase', 'rmarkdown', 'shiny', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# mudata2
+
+
+
+* Version: 1.1.2
+* GitHub: https://github.com/paleolimbot/mudata2
+* Source code: https://github.com/cran/mudata2
+* Date/Publication: 2020-03-20 20:20:03 UTC
+* Number of recursive dependencies: 95
+
+Run `cloud_details(, "mudata2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mudata2/new/mudata2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mudata2/DESCRIPTION’ ... OK
+* this is package ‘mudata2’ version ‘1.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'sf', 'covr', 'hms', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mudata2/old/mudata2.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mudata2/DESCRIPTION’ ... OK
+* this is package ‘mudata2’ version ‘1.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'sf', 'covr', 'hms', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# multifear
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/AngelosPsy/multifear
+* Source code: https://github.com/cran/multifear
+* Date/Publication: 2021-06-01 20:50:02 UTC
+* Number of recursive dependencies: 152
+
+Run `cloud_details(, "multifear")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/multifear/new/multifear.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘multifear/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘multifear’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'bayestestR', 'broom', 'effectsize', 'esc', 'forestplot', 'bootstrap'
+
+Packages suggested but not available for checking:
+ 'gridExtra', 'fastDummies', 'plyr', 'ggraph', 'igraph', 'testthat',
+ 'cowplot', 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/multifear/old/multifear.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘multifear/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘multifear’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'bayestestR', 'broom', 'effectsize', 'esc', 'forestplot', 'bootstrap'
+
+Packages suggested but not available for checking:
+ 'gridExtra', 'fastDummies', 'plyr', 'ggraph', 'igraph', 'testthat',
+ 'cowplot', 'covr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# multinma
+
+
+
+* Version: 0.3.0
+* GitHub: https://github.com/dmphillippo/multinma
+* Source code: https://github.com/cran/multinma
+* Date/Publication: 2021-03-18 14:00:03 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "multinma")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/multinma/new/multinma.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘multinma/DESCRIPTION’ ... OK
+* this is package ‘multinma’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'knitr', 'rmarkdown', 'R.rsp', 'rprojroot', 'loo',
+ 'logitnorm', 'tidygraph', 'pkgdown'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'R.rsp'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/multinma/old/multinma.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘multinma/DESCRIPTION’ ... OK
+* this is package ‘multinma’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'knitr', 'rmarkdown', 'R.rsp', 'rprojroot', 'loo',
+ 'logitnorm', 'tidygraph', 'pkgdown'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'R.rsp'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# naniar
+
+
+
+* Version: 0.6.1
+* GitHub: https://github.com/njtierney/naniar
+* Source code: https://github.com/cran/naniar
+* Date/Publication: 2021-05-14 10:20:02 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "naniar")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/naniar/new/naniar.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘naniar/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘naniar’ version ‘0.6.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'knitr', 'rmarkdown', 'testthat', 'rpart.plot', 'covr', 'gridExtra',
+ 'wakefield', 'vdiffr', 'here', 'simputation', 'imputeTS', 'gdtools',
+ 'Hmisc', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/naniar/old/naniar.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘naniar/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘naniar’ version ‘0.6.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'knitr', 'rmarkdown', 'testthat', 'rpart.plot', 'covr', 'gridExtra',
+ 'wakefield', 'vdiffr', 'here', 'simputation', 'imputeTS', 'gdtools',
+ 'Hmisc', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# nCov2019
+
+
+
+* Version: 0.4.5
+* GitHub: https://github.com/YuLab-SMU/nCov2019
+* Source code: https://github.com/cran/nCov2019
+* Date/Publication: 2021-06-10 10:40:05 UTC
+* Number of recursive dependencies: 93
+
+Run `cloud_details(, "nCov2019")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/nCov2019/new/nCov2019.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nCov2019/DESCRIPTION’ ... OK
+* this is package ‘nCov2019’ version ‘0.4.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'shinydashboard', 'shinycssloaders', 'remotes', 'plotly',
+ 'prettydoc', 'knitr', 'rmarkdown', 'reshape2', 'ggrepel',
+ 'shadowtext'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/nCov2019/old/nCov2019.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nCov2019/DESCRIPTION’ ... OK
+* this is package ‘nCov2019’ version ‘0.4.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'shinydashboard', 'shinycssloaders', 'remotes', 'plotly',
+ 'prettydoc', 'knitr', 'rmarkdown', 'reshape2', 'ggrepel',
+ 'shadowtext'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NetFACS
+
+
+
+* Version: 0.3.0
+* GitHub: NA
+* Source code: https://github.com/cran/NetFACS
+* Date/Publication: 2021-12-11 19:10:02 UTC
+* Number of recursive dependencies: 92
+
+Run `cloud_details(, "NetFACS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/NetFACS/new/NetFACS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘NetFACS/DESCRIPTION’ ... OK
+* this is package ‘NetFACS’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/NetFACS/old/NetFACS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘NetFACS/DESCRIPTION’ ... OK
+* this is package ‘NetFACS’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# nevada
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/astamm/nevada
+* Source code: https://github.com/cran/nevada
+* Date/Publication: 2021-09-25 06:40:02 UTC
+* Number of recursive dependencies: 84
+
+Run `cloud_details(, "nevada")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/nevada/new/nevada.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nevada/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nevada’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/nevada/old/nevada.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nevada/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nevada’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NFP
+
+
+
+* Version: 0.99.4
+* GitHub: https://github.com/yiluheihei/NFP
+* Source code: https://github.com/cran/NFP
+* Date/Publication: 2021-04-12 16:30:02 UTC
+* Number of recursive dependencies: 105
+
+Run `cloud_details(, "NFP")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/NFP/new/NFP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘NFP/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘NFP’ version ‘0.99.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'graphite', 'NFPdata', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/NFP/old/NFP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘NFP/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘NFP’ version ‘0.99.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'graphite', 'NFPdata', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# NIMAA
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/jafarilab/NIMAA
+* Source code: https://github.com/cran/NIMAA
+* Date/Publication: 2021-09-13 08:00:05 UTC
+* Number of recursive dependencies: 175
+
+Run `cloud_details(, "NIMAA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/NIMAA/new/NIMAA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘NIMAA/DESCRIPTION’ ... OK
+* this is package ‘NIMAA’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'htmltools', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/NIMAA/old/NIMAA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘NIMAA/DESCRIPTION’ ... OK
+* this is package ‘NIMAA’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'htmltools', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# nlmeVPC
+
+
+
+* Version: 2.2
+* GitHub: NA
+* Source code: https://github.com/cran/nlmeVPC
+* Date/Publication: 2021-11-04 12:30:02 UTC
+* Number of recursive dependencies: 101
+
+Run `cloud_details(, "nlmeVPC")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/nlmeVPC/new/nlmeVPC.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nlmeVPC/DESCRIPTION’ ... OK
+* this is package ‘nlmeVPC’ version ‘2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Hmisc', 'quantreg', 'optimx', 'ggplot2', 'timeDate', 'plyr', 'Rcpp',
+ 'RcppArmadillo'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/nlmeVPC/old/nlmeVPC.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nlmeVPC/DESCRIPTION’ ... OK
+* this is package ‘nlmeVPC’ version ‘2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Hmisc', 'quantreg', 'optimx', 'ggplot2', 'timeDate', 'plyr', 'Rcpp',
+ 'RcppArmadillo'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# nlrx
+
+
+
+* Version: 0.4.3
+* GitHub: https://github.com/ropensci/nlrx
+* Source code: https://github.com/cran/nlrx
+* Date/Publication: 2021-09-20 18:50:04 UTC
+* Number of recursive dependencies: 146
+
+Run `cloud_details(, "nlrx")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/nlrx/new/nlrx.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nlrx/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nlrx’ version ‘0.4.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/nlrx/old/nlrx.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nlrx/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nlrx’ version ‘0.4.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# nmm
+
+
+
+* Version: 0.9
+* GitHub: NA
+* Source code: https://github.com/cran/nmm
+* Date/Publication: 2021-01-07 11:20:03 UTC
+* Number of recursive dependencies: 131
+
+Run `cloud_details(, "nmm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/nmm/new/nmm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nmm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nmm’ version ‘0.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'systemfit', 'DEoptim', 'data.table', 'maxLik', 'Rdpack', 'AER',
+ 'mlogit', 'Hmisc', 'gsubfn', 'abind', 'plyr'
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'recipes', 'Stat2Data'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/nmm/old/nmm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nmm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nmm’ version ‘0.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'systemfit', 'DEoptim', 'data.table', 'maxLik', 'Rdpack', 'AER',
+ 'mlogit', 'Hmisc', 'gsubfn', 'abind', 'plyr'
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'recipes', 'Stat2Data'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# nodeSub
+
+
+
+* Version: 1.2
+* GitHub: https://github.com/thijsjanzen/nodeSub
+* Source code: https://github.com/cran/nodeSub
+* Date/Publication: 2021-09-30 08:30:02 UTC
+* Number of recursive dependencies: 238
+
+Run `cloud_details(, "nodeSub")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/nodeSub/new/nodeSub.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nodeSub/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nodeSub’ version ‘1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'phytools', 'testthat', 'TreeSim', 'knitr', 'rmarkdown', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/nodeSub/old/nodeSub.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘nodeSub/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘nodeSub’ version ‘1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'phytools', 'testthat', 'TreeSim', 'knitr', 'rmarkdown', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# obliqueRSF
+
+
+
+* Version: 0.1.1
+* GitHub: NA
+* Source code: https://github.com/cran/obliqueRSF
+* Date/Publication: 2019-03-13 21:50:31 UTC
+* Number of recursive dependencies: 123
+
+Run `cloud_details(, "obliqueRSF")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/obliqueRSF/new/obliqueRSF.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘obliqueRSF/DESCRIPTION’ ... OK
+* this is package ‘obliqueRSF’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'pec', 'data.table', 'missForest', 'glmnet', 'prodlim',
+ 'ggthemes', 'ggplot2', 'scales', 'RcppArmadillo'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/obliqueRSF/old/obliqueRSF.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘obliqueRSF/DESCRIPTION’ ... OK
+* this is package ‘obliqueRSF’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'Rcpp', 'pec', 'data.table', 'missForest', 'glmnet', 'prodlim',
+ 'ggthemes', 'ggplot2', 'scales', 'RcppArmadillo'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# omicwas
+
+
+
+* Version: 0.8.0
+* GitHub: https://github.com/fumi-github/omicwas
+* Source code: https://github.com/cran/omicwas
+* Date/Publication: 2020-10-08 12:50:03 UTC
+* Number of recursive dependencies: 78
+
+Run `cloud_details(, "omicwas")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/omicwas/new/omicwas.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘omicwas/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘omicwas’ version ‘0.8.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/omicwas/old/omicwas.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘omicwas/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘omicwas’ version ‘0.8.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# omu
+
+
+
+* Version: 1.0.4
+* GitHub: https://github.com/connor-reid-tiffany/Omu
+* Source code: https://github.com/cran/omu
+* Date/Publication: 2020-05-18 19:40:02 UTC
+* Number of recursive dependencies: 74
+
+Run `cloud_details(, "omu")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/omu/new/omu.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘omu/DESCRIPTION’ ... OK
+* this is package ‘omu’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'plyr', 'stringr', 'KEGGREST', 'reshape2', 'ggfortify', 'ggplot2'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/omu/old/omu.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘omu/DESCRIPTION’ ... OK
+* this is package ‘omu’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'plyr', 'stringr', 'KEGGREST', 'reshape2', 'ggfortify', 'ggplot2'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# onemap
+
+
+
+* Version: 2.8.1
+* GitHub: https://github.com/augusto-garcia/onemap
+* Source code: https://github.com/cran/onemap
+* Date/Publication: 2021-12-10 13:00:02 UTC
+* Number of recursive dependencies: 171
+
+Run `cloud_details(, "onemap")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/onemap/new/onemap.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘onemap/DESCRIPTION’ ... OK
+* this is package ‘onemap’ version ‘2.8.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'stringr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/onemap/old/onemap.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘onemap/DESCRIPTION’ ... OK
+* this is package ‘onemap’ version ‘2.8.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'stringr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# OOS
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/tylerJPike/OOS
+* Source code: https://github.com/cran/OOS
+* Date/Publication: 2021-03-17 13:20:20 UTC
+* Number of recursive dependencies: 126
+
+Run `cloud_details(, "OOS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/OOS/new/OOS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘OOS/DESCRIPTION’ ... OK
+* this is package ‘OOS’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'rmarkdown', 'quantmod'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/OOS/old/OOS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘OOS/DESCRIPTION’ ... OK
+* this is package ‘OOS’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'rmarkdown', 'quantmod'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# openair
+
+
+
+* Version: 2.8-6
+* GitHub: https://github.com/davidcarslaw/openair
+* Source code: https://github.com/cran/openair
+* Date/Publication: 2021-11-22 08:20:05 UTC
+* Number of recursive dependencies: 94
+
+Run `cloud_details(, "openair")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/openair/new/openair.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘openair/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘openair’ version ‘2.8-6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'readr', 'latticeExtra', 'lubridate', 'mapproj', 'hexbin', 'Rcpp'
+
+Packages suggested but not available for checking:
+ 'maps', 'mapdata', 'quantreg'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/openair/old/openair.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘openair/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘openair’ version ‘2.8-6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'readr', 'latticeExtra', 'lubridate', 'mapproj', 'hexbin', 'Rcpp'
+
+Packages suggested but not available for checking:
+ 'maps', 'mapdata', 'quantreg'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# oppr
+
+
+
+* Version: 1.0.3
+* GitHub: https://github.com/prioritizr/oppr
+* Source code: https://github.com/cran/oppr
+* Date/Publication: 2021-05-12 00:50:07 UTC
+* Number of recursive dependencies: 104
+
+Run `cloud_details(, "oppr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/oppr/new/oppr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘oppr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘oppr’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'roxygen2', 'rmarkdown', 'gurobi', 'ggtree',
+ 'Rsymphony', 'shiny', 'rhandsontable'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/oppr/old/oppr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘oppr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘oppr’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'roxygen2', 'rmarkdown', 'gurobi', 'ggtree',
+ 'Rsymphony', 'shiny', 'rhandsontable'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# OutliersO3
+
+
+
+* Version: 0.6.3
+* GitHub: NA
+* Source code: https://github.com/cran/OutliersO3
+* Date/Publication: 2020-04-25 00:10:02 UTC
+* Number of recursive dependencies: 140
+
+Run `cloud_details(, "OutliersO3")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/OutliersO3/new/OutliersO3.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘OutliersO3/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘OutliersO3’ version ‘0.6.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'gridExtra', 'rmarkdown', 'languageR'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/OutliersO3/old/OutliersO3.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘OutliersO3/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘OutliersO3’ version ‘0.6.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'gridExtra', 'rmarkdown', 'languageR'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# outreg
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/kota7/outreg
+* Source code: https://github.com/cran/outreg
+* Date/Publication: 2017-03-14 06:58:31
+* Number of recursive dependencies: 115
+
+Run `cloud_details(, "outreg")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/outreg/new/outreg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘outreg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘outreg’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'reshape2', 'sandwich', 'stringr'
+
+Packages suggested but not available for checking: 'AER', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/outreg/old/outreg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘outreg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘outreg’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'reshape2', 'sandwich', 'stringr'
+
+Packages suggested but not available for checking: 'AER', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# packDAMipd
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/sheejamk/packDAMipd
+* Source code: https://github.com/cran/packDAMipd
+* Date/Publication: 2021-03-03 09:20:14 UTC
+* Number of recursive dependencies: 227
+
+Run `cloud_details(, "packDAMipd")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/packDAMipd/new/packDAMipd.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘packDAMipd/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘packDAMipd’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ISLR', 'knitr', 'rmarkdown', 'covr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/packDAMipd/old/packDAMipd.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘packDAMipd/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘packDAMipd’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ISLR', 'knitr', 'rmarkdown', 'covr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# pammtools
+
+
+
+* Version: 0.5.7
+* GitHub: https://github.com/adibender/pammtools
+* Source code: https://github.com/cran/pammtools
+* Date/Publication: 2021-06-21 13:00:02 UTC
+* Number of recursive dependencies: 130
+
+Run `cloud_details(, "pammtools")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/pammtools/new/pammtools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pammtools/DESCRIPTION’ ... OK
+* this is package ‘pammtools’ version ‘0.5.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'checkmate', 'ggplot2', 'lazyeval', 'Formula', 'mvtnorm', 'pec'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/pammtools/old/pammtools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pammtools/DESCRIPTION’ ... OK
+* this is package ‘pammtools’ version ‘0.5.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'checkmate', 'ggplot2', 'lazyeval', 'Formula', 'mvtnorm', 'pec'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# panelr
+
+
+
+* Version: 0.7.6
+* GitHub: https://github.com/jacob-long/panelr
+* Source code: https://github.com/cran/panelr
+* Date/Publication: 2021-12-17 07:40:02 UTC
+* Number of recursive dependencies: 195
+
+Run `cloud_details(, "panelr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/panelr/new/panelr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘panelr/DESCRIPTION’ ... OK
+* this is package ‘panelr’ version ‘0.7.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'brms', 'broom.mixed', 'car', 'clubSandwich', 'geepack', 'plm',
+ 'sandwich', 'skimr', 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/panelr/old/panelr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘panelr/DESCRIPTION’ ... OK
+* this is package ‘panelr’ version ‘0.7.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'brms', 'broom.mixed', 'car', 'clubSandwich', 'geepack', 'plm',
+ 'sandwich', 'skimr', 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# pbixr
+
+
+
+* Version: 0.1.4
+* GitHub: https://github.com/pbixr/pbixr
+* Source code: https://github.com/cran/pbixr
+* Date/Publication: 2020-10-27 10:50:03 UTC
+* Number of recursive dependencies: 101
+
+Run `cloud_details(, "pbixr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/pbixr/new/pbixr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pbixr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘pbixr’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'RCurl', 'ggplot2', 'ggraph',
+ 'imager'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/pbixr/old/pbixr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pbixr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘pbixr’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'RCurl', 'ggplot2', 'ggraph',
+ 'imager'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# pguIMP
+
+
+
+* Version: 0.0.0.3
+* GitHub: https://github.com/SMLMS/pguIMP
+* Source code: https://github.com/cran/pguIMP
+* Date/Publication: 2021-09-30 11:50:02 UTC
+* Number of recursive dependencies: 232
+
+Run `cloud_details(, "pguIMP")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/pguIMP/new/pguIMP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pguIMP/DESCRIPTION’ ... OK
+* this is package ‘pguIMP’ version ‘0.0.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'readxl', 'rJava', 'rmarkdown', 'robust', 'shiny', 'shinydashboard',
+ 'shinyjs', 'shinyWidgets', 'stringr', 'writexl'
+
+Packages suggested but not available for checking:
+ 'knitr', 'devtools', 'roxygen2'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/pguIMP/old/pguIMP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pguIMP/DESCRIPTION’ ... OK
+* this is package ‘pguIMP’ version ‘0.0.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'readxl', 'rJava', 'rmarkdown', 'robust', 'shiny', 'shinydashboard',
+ 'shinyjs', 'shinyWidgets', 'stringr', 'writexl'
+
+Packages suggested but not available for checking:
+ 'knitr', 'devtools', 'roxygen2'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# PLNmodels
+
+
+
+* Version: 0.11.4
+* GitHub: https://github.com/pln-team/PLNmodels
+* Source code: https://github.com/cran/PLNmodels
+* Date/Publication: 2021-03-16 16:10:02 UTC
+* Number of recursive dependencies: 191
+
+Run `cloud_details(, "PLNmodels")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/PLNmodels/new/PLNmodels.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘PLNmodels/DESCRIPTION’ ... OK
+* this is package ‘PLNmodels’ version ‘0.11.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'covr', 'pkgdown', 'biomformat',
+ 'phyloseq', 'spelling', 'factoextra', 'Wrench'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/PLNmodels/old/PLNmodels.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘PLNmodels/DESCRIPTION’ ... OK
+* this is package ‘PLNmodels’ version ‘0.11.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'covr', 'pkgdown', 'biomformat',
+ 'phyloseq', 'spelling', 'factoextra', 'Wrench'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# plot3logit
+
+
+
+* Version: 3.1.0
+* GitHub: https://github.com/f-santi/plot3logit
+* Source code: https://github.com/cran/plot3logit
+* Date/Publication: 2021-02-26 12:10:02 UTC
+* Number of recursive dependencies: 107
+
+Run `cloud_details(, "plot3logit")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/plot3logit/new/plot3logit.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘plot3logit/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘plot3logit’ version ‘3.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'mlogit', 'ordinal', 'rmarkdown', 'VGAM', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/plot3logit/old/plot3logit.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘plot3logit/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘plot3logit’ version ‘3.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'mlogit', 'ordinal', 'rmarkdown', 'VGAM', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# plsmod
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/tidymodels/plsmod
+* Source code: https://github.com/cran/plsmod
+* Date/Publication: 2020-10-28 05:30:09 UTC
+* Number of recursive dependencies: 97
+
+Run `cloud_details(, "plsmod")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/plsmod/new/plsmod.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘plsmod/DESCRIPTION’ ... OK
+* this is package ‘plsmod’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'parsnip', 'mixOmics'
+
+Packages suggested but not available for checking:
+ 'modeldata', 'testthat', 'covr', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/plsmod/old/plsmod.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘plsmod/DESCRIPTION’ ... OK
+* this is package ‘plsmod’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'parsnip', 'mixOmics'
+
+Packages suggested but not available for checking:
+ 'modeldata', 'testthat', 'covr', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# pollster
+
+
+
+* Version: 0.1.3
+* GitHub: NA
+* Source code: https://github.com/cran/pollster
+* Date/Publication: 2020-08-25 09:50:02 UTC
+* Number of recursive dependencies: 63
+
+Run `cloud_details(, "pollster")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/pollster/new/pollster.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pollster/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘pollster’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/pollster/old/pollster.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pollster/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘pollster’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# portalr
+
+
+
+* Version: 0.3.9
+* GitHub: https://github.com/weecology/portalr
+* Source code: https://github.com/cran/portalr
+* Date/Publication: 2021-12-03 05:20:02 UTC
+* Number of recursive dependencies: 106
+
+Run `cloud_details(, "portalr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/portalr/new/portalr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘portalr/DESCRIPTION’ ... OK
+* this is package ‘portalr’ version ‘0.3.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'covr', 'cowplot', 'ggplot2', 'httptest', 'knitr', 'pkgdown',
+ 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/portalr/old/portalr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘portalr/DESCRIPTION’ ... OK
+* this is package ‘portalr’ version ‘0.3.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'covr', 'cowplot', 'ggplot2', 'httptest', 'knitr', 'pkgdown',
+ 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# posterior
+
+
+
+* Version: 1.1.0
+* GitHub: https://github.com/stan-dev/posterior
+* Source code: https://github.com/cran/posterior
+* Date/Publication: 2021-09-09 11:30:02 UTC
+* Number of recursive dependencies: 104
+
+Run `cloud_details(, "posterior")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/posterior/new/posterior.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘posterior/DESCRIPTION’ ... OK
+* this is package ‘posterior’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'testthat', 'caret', 'gbm', 'randomForest', 'e1071', 'knitr',
+ 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/posterior/old/posterior.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘posterior/DESCRIPTION’ ... OK
+* this is package ‘posterior’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'testthat', 'caret', 'gbm', 'randomForest', 'e1071', 'knitr',
+ 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# powdR
+
+
+
+* Version: 1.3.0
+* GitHub: https://github.com/benmbutler/powdR
+* Source code: https://github.com/cran/powdR
+* Date/Publication: 2021-08-13 15:20:02 UTC
+* Number of recursive dependencies: 155
+
+Run `cloud_details(, "powdR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/powdR/new/powdR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘powdR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘powdR’ version ‘1.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bookdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/powdR/old/powdR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘powdR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘powdR’ version ‘1.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bookdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# PPforest
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/natydasilva/PPforest
+* Source code: https://github.com/cran/PPforest
+* Date/Publication: 2021-10-14 14:40:05 UTC
+* Number of recursive dependencies: 81
+
+Run `cloud_details(, "PPforest")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/PPforest/new/PPforest.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘PPforest/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘PPforest’ version ‘0.1.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'gridExtra', 'GGally', 'ggplot2', 'RColorBrewer',
+ 'roxygen2', 'PPtreeViz', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/PPforest/old/PPforest.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘PPforest/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘PPforest’ version ‘0.1.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'gridExtra', 'GGally', 'ggplot2', 'RColorBrewer',
+ 'roxygen2', 'PPtreeViz', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# prettyglm
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/prettyglm
+* Date/Publication: 2021-06-24 07:40:05 UTC
+* Number of recursive dependencies: 139
+
+Run `cloud_details(, "prettyglm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/prettyglm/new/prettyglm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘prettyglm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘prettyglm’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'stringr', 'tidycat', 'vip'
+
+Packages suggested but not available for checking: 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/prettyglm/old/prettyglm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘prettyglm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘prettyglm’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'stringr', 'tidycat', 'vip'
+
+Packages suggested but not available for checking: 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# prioriactions
+
+
+
+* Version: 0.3.2
+* GitHub: https://github.com/prioriactions/prioriactions
+* Source code: https://github.com/cran/prioriactions
+* Date/Publication: 2021-12-15 08:20:02 UTC
+* Number of recursive dependencies: 124
+
+Run `cloud_details(, "prioriactions")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/prioriactions/new/prioriactions.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘prioriactions/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘prioriactions’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'gurobi', 'roxygen2', 'rmarkdown', 'testthat', 'raster',
+ 'tmap', 'sp', 'viridis', 'markdown', 'data.table', 'readr', 'slam'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/prioriactions/old/prioriactions.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘prioriactions/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘prioriactions’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'gurobi', 'roxygen2', 'rmarkdown', 'testthat', 'raster',
+ 'tmap', 'sp', 'viridis', 'markdown', 'data.table', 'readr', 'slam'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# processR
+
+
+
+* Version: 0.2.6
+* GitHub: https://github.com/cardiomoon/processR
+* Source code: https://github.com/cran/processR
+* Date/Publication: 2021-01-07 06:50:02 UTC
+* Number of recursive dependencies: 187
+
+Run `cloud_details(, "processR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/processR/new/processR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘processR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘processR’ version ‘0.2.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'shiny', 'shinyWidgets', 'knitr', 'readr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/processR/old/processR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘processR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘processR’ version ‘0.2.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'shiny', 'shinyWidgets', 'knitr', 'readr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# protti
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/jpquast/protti
+* Source code: https://github.com/cran/protti
+* Date/Publication: 2021-09-17 12:20:02 UTC
+* Number of recursive dependencies: 200
+
+Run `cloud_details(, "protti")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/protti/new/protti.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘protti/DESCRIPTION’ ... OK
+* this is package ‘protti’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'covr', 'knitr', 'rmarkdown', 'proDA', 'dendextend',
+ 'pheatmap', 'heatmaply', 'viridis', 'iq', 'furrr', 'future',
+ 'seriation', 'drc', 'httr', 'igraph', 'stringi', 'STRINGdb'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/protti/old/protti.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘protti/DESCRIPTION’ ... OK
+* this is package ‘protti’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'covr', 'knitr', 'rmarkdown', 'proDA', 'dendextend',
+ 'pheatmap', 'heatmaply', 'viridis', 'iq', 'furrr', 'future',
+ 'seriation', 'drc', 'httr', 'igraph', 'stringi', 'STRINGdb'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# psfmi
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/mwheymans/psfmi
+* Source code: https://github.com/cran/psfmi
+* Date/Publication: 2021-09-23 10:10:05 UTC
+* Number of recursive dependencies: 168
+
+Run `cloud_details(, "psfmi")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/psfmi/new/psfmi.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘psfmi/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘psfmi’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'bookdown', 'readr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/psfmi/old/psfmi.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘psfmi/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘psfmi’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'bookdown', 'readr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# psycModel
+
+
+
+* Version: 0.3.2
+* GitHub: NA
+* Source code: https://github.com/cran/psycModel
+* Date/Publication: 2021-09-05 05:00:02 UTC
+* Number of recursive dependencies: 171
+
+Run `cloud_details(, "psycModel")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/psycModel/new/psycModel.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘psycModel/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘psycModel’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'gridExtra', 'interactions', 'knitr', 'nFactors', 'pagedown',
+ 'qqplotr', 'rmarkdown', 'roxygen2', 'sandwich', 'see', 'semPlot',
+ 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/psycModel/old/psycModel.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘psycModel/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘psycModel’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'gridExtra', 'interactions', 'knitr', 'nFactors', 'pagedown',
+ 'qqplotr', 'rmarkdown', 'roxygen2', 'sandwich', 'see', 'semPlot',
+ 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# psyntur
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/psyntur
+* Date/Publication: 2021-09-15 09:20:05 UTC
+* Number of recursive dependencies: 118
+
+Run `cloud_details(, "psyntur")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/psyntur/new/psyntur.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘psyntur/DESCRIPTION’ ... OK
+* this is package ‘psyntur’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'fastDummies', 'ez'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/psyntur/old/psyntur.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘psyntur/DESCRIPTION’ ... OK
+* this is package ‘psyntur’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'fastDummies', 'ez'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# queuecomputer
+
+
+
+* Version: 1.1.0
+* GitHub: https://github.com/AnthonyEbert/queuecomputer
+* Source code: https://github.com/cran/queuecomputer
+* Date/Publication: 2021-04-09 13:20:05 UTC
+* Number of recursive dependencies: 66
+
+Run `cloud_details(, "queuecomputer")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/queuecomputer/new/queuecomputer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘queuecomputer/DESCRIPTION’ ... OK
+* this is package ‘queuecomputer’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/queuecomputer/old/queuecomputer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘queuecomputer/DESCRIPTION’ ... OK
+* this is package ‘queuecomputer’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# quid
+
+
+
+* Version: 0.0.1
+* GitHub: NA
+* Source code: https://github.com/cran/quid
+* Date/Publication: 2021-12-09 09:00:02 UTC
+* Number of recursive dependencies: 118
+
+Run `cloud_details(, "quid")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/quid/new/quid.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘quid/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘quid’ version ‘0.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/quid/old/quid.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘quid/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘quid’ version ‘0.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# quokar
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/wenjingwang/quokar
+* Source code: https://github.com/cran/quokar
+* Date/Publication: 2017-11-10 10:21:36 UTC
+* Number of recursive dependencies: 116
+
+Run `cloud_details(, "quokar")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/quokar/new/quokar.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘quokar/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘quokar’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'gridExtra', 'GIGrvg', 'robustbase', 'ald'
+
+Packages suggested but not available for checking: 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/quokar/old/quokar.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘quokar/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘quokar’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'gridExtra', 'GIGrvg', 'robustbase', 'ald'
+
+Packages suggested but not available for checking: 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rabhit
+
+
+
+* Version: 0.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/rabhit
+* Date/Publication: 2021-12-06 08:50:02 UTC
+* Number of recursive dependencies: 128
+
+Run `cloud_details(, "rabhit")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rabhit/new/rabhit.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rabhit/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rabhit’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Package required and available but unsuitable version: ‘stats’
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rabhit/old/rabhit.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rabhit/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rabhit’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Package required and available but unsuitable version: ‘stats’
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rADA
+
+
+
+* Version: 1.1.9
+* GitHub: NA
+* Source code: https://github.com/cran/rADA
+* Date/Publication: 2021-03-23 19:40:06 UTC
+* Number of recursive dependencies: 118
+
+Run `cloud_details(, "rADA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rADA/new/rADA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rADA/DESCRIPTION’ ... OK
+* this is package ‘rADA’ version ‘1.1.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'car'
+
+Package suggested but not available for checking: ‘markdown’
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rADA/old/rADA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rADA/DESCRIPTION’ ... OK
+* this is package ‘rADA’ version ‘1.1.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'car'
+
+Package suggested but not available for checking: ‘markdown’
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# radiant.basics
+
+
+
+* Version: 1.4.1
+* GitHub: https://github.com/radiant-rstats/radiant.basics
+* Source code: https://github.com/cran/radiant.basics
+* Date/Publication: 2021-11-18 06:30:02 UTC
+* Number of recursive dependencies: 173
+
+Run `cloud_details(, "radiant.basics")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/radiant.basics/new/radiant.basics.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘radiant.basics/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘radiant.basics’ version ‘1.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'radiant.data', 'ggplot2', 'scales', 'shiny', 'psych', 'import',
+ 'lubridate', 'polycor', 'patchwork'
+
+Packages suggested but not available for checking:
+ 'testthat', 'pkgdown', 'markdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/radiant.basics/old/radiant.basics.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘radiant.basics/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘radiant.basics’ version ‘1.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'radiant.data', 'ggplot2', 'scales', 'shiny', 'psych', 'import',
+ 'lubridate', 'polycor', 'patchwork'
+
+Packages suggested but not available for checking:
+ 'testthat', 'pkgdown', 'markdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# radiant.model
+
+
+
+* Version: 1.4.2
+* GitHub: https://github.com/radiant-rstats/radiant.model
+* Source code: https://github.com/cran/radiant.model
+* Date/Publication: 2021-11-22 06:10:02 UTC
+* Number of recursive dependencies: 189
+
+Run `cloud_details(, "radiant.model")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/radiant.model/new/radiant.model.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘radiant.model/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘radiant.model’ version ‘1.4.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'sandwich', 'car', 'ggplot2', 'data.tree', 'stringr', 'lubridate',
+ 'DiagrammeR', 'import', 'psych', 'e1071', 'ggrepel', 'broom',
+ 'patchwork', 'ranger', 'xgboost', 'pdp', 'yaml'
+
+Packages suggested but not available for checking: 'testthat', 'pkgdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/radiant.model/old/radiant.model.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘radiant.model/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘radiant.model’ version ‘1.4.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'sandwich', 'car', 'ggplot2', 'data.tree', 'stringr', 'lubridate',
+ 'DiagrammeR', 'import', 'psych', 'e1071', 'ggrepel', 'broom',
+ 'patchwork', 'ranger', 'xgboost', 'pdp', 'yaml'
+
+Packages suggested but not available for checking: 'testthat', 'pkgdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# Radviz
+
+
+
+* Version: 0.9.2
+* GitHub: https://github.com/yannabraham/Radviz
+* Source code: https://github.com/cran/Radviz
+* Date/Publication: 2020-06-24 19:20:03 UTC
+* Number of recursive dependencies: 58
+
+Run `cloud_details(, "Radviz")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/Radviz/new/Radviz.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Radviz/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘Radviz’ version ‘0.9.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bodenmiller', 'RColorBrewer', 'cytofan',
+ 'scales'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1814,19 +17468,7575 @@ Status: 1 ERROR
```
* using log directory ‘/tmp/workdir/Radviz/old/Radviz.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Radviz/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘Radviz’ version ‘0.9.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'bodenmiller', 'RColorBrewer', 'cytofan',
+ 'scales'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rattle
+
+
+
+* Version: 5.4.0
+* GitHub: NA
+* Source code: https://github.com/cran/rattle
+* Date/Publication: 2020-05-23 11:20:03 UTC
+* Number of recursive dependencies: 210
+
+Run `cloud_details(, "rattle")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rattle/new/rattle.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rattle/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rattle’ version ‘5.4.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ellipse', 'fBasics', 'fpc', 'gdata', 'ggdendro', 'ggraptR',
+ 'gplots', 'gridExtra', 'gtools', 'hmeasure', 'Hmisc', 'mice',
+ 'party', 'plyr', 'psych', 'randomForest', 'RColorBrewer', 'readxl',
+ 'reshape', 'rggobi', 'RGtk2', 'ROCR', 'RODBC', 'scales', 'SnowballC',
+ 'timeDate', 'tm', 'verification', 'wskm', 'xgboost'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rattle/old/rattle.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rattle/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rattle’ version ‘5.4.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ellipse', 'fBasics', 'fpc', 'gdata', 'ggdendro', 'ggraptR',
+ 'gplots', 'gridExtra', 'gtools', 'hmeasure', 'Hmisc', 'mice',
+ 'party', 'plyr', 'psych', 'randomForest', 'RColorBrewer', 'readxl',
+ 'reshape', 'rggobi', 'RGtk2', 'ROCR', 'RODBC', 'scales', 'SnowballC',
+ 'timeDate', 'tm', 'verification', 'wskm', 'xgboost'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RavenR
+
+
+
+* Version: 2.1.4
+* GitHub: https://github.com/rchlumsk/RavenR
+* Source code: https://github.com/cran/RavenR
+* Date/Publication: 2021-09-23 15:50:02 UTC
+* Number of recursive dependencies: 123
+
+Run `cloud_details(, "RavenR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RavenR/new/RavenR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RavenR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘RavenR’ version ‘2.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'devtools', 'DiagrammeRsvg', 'knitr', 'rmarkdown', 'rsvg'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RavenR/old/RavenR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RavenR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘RavenR’ version ‘2.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'devtools', 'DiagrammeRsvg', 'knitr', 'rmarkdown', 'rsvg'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# raw
+
+
+
+* Version: 0.1.8
+* GitHub: NA
+* Source code: https://github.com/cran/raw
+* Date/Publication: 2021-02-05 15:40:03 UTC
+* Number of recursive dependencies: 184
+
+Run `cloud_details(, "raw")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/raw/new/raw.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘raw/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘raw’ version ‘0.1.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking for unstated dependencies in examples ... OK
+* checking contents of ‘data’ directory ... OK
+* checking data for non-ASCII characters ... OK
+* checking LazyData ... OK
+* checking data for ASCII and uncompressed saves ... OK
+* checking installed files from ‘inst/doc’ ... OK
+* checking files in ‘vignettes’ ... OK
+* checking examples ... OK
+* DONE
+Status: 1 WARNING
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/raw/old/raw.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘raw/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘raw’ version ‘0.1.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking for unstated dependencies in examples ... OK
+* checking contents of ‘data’ directory ... OK
+* checking data for non-ASCII characters ... OK
+* checking LazyData ... OK
+* checking data for ASCII and uncompressed saves ... OK
+* checking installed files from ‘inst/doc’ ... OK
+* checking files in ‘vignettes’ ... OK
+* checking examples ... OK
+* DONE
+Status: 1 WARNING
+
+
+
+
+
+```
+# refund.shiny
+
+
+
+* Version: 0.4.1
+* GitHub: NA
+* Source code: https://github.com/cran/refund.shiny
+* Date/Publication: 2021-11-20 22:50:01 UTC
+* Number of recursive dependencies: 122
+
+Run `cloud_details(, "refund.shiny")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/refund.shiny/new/refund.shiny.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘refund.shiny/DESCRIPTION’ ... OK
+* this is package ‘refund.shiny’ version ‘0.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'ggplot2', 'shiny', 'reshape2', 'gridExtra', 'lme4', 'plotly',
+ 'refund', 'registr'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/refund.shiny/old/refund.shiny.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘refund.shiny/DESCRIPTION’ ... OK
+* this is package ‘refund.shiny’ version ‘0.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'ggplot2', 'shiny', 'reshape2', 'gridExtra', 'lme4', 'plotly',
+ 'refund', 'registr'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# registr
+
+
+
+* Version: 1.0.0
+* GitHub: NA
+* Source code: https://github.com/cran/registr
+* Date/Publication: 2020-03-16 11:40:02 UTC
+* Number of recursive dependencies: 67
+
+Run `cloud_details(, "registr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/registr/new/registr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘registr/DESCRIPTION’ ... OK
+* this is package ‘registr’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/registr/old/registr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘registr/DESCRIPTION’ ... OK
+* this is package ‘registr’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# reporter
+
+
+
+* Version: 1.2.8
+* GitHub: https://github.com/dbosak01/reporter
+* Source code: https://github.com/cran/reporter
+* Date/Publication: 2021-12-10 16:00:02 UTC
+* Number of recursive dependencies: 163
+
+Run `cloud_details(, "reporter")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/reporter/new/reporter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘reporter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘reporter’ version ‘1.2.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'testthat', 'readr', 'knitr', 'rmarkdown', 'ggplot2', 'gridExtra',
+ 'survminer', 'logr', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/reporter/old/reporter.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘reporter/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘reporter’ version ‘1.2.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'testthat', 'readr', 'knitr', 'rmarkdown', 'ggplot2', 'gridExtra',
+ 'survminer', 'logr', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RFishBC
+
+
+
+* Version: 0.2.3
+* GitHub: https://github.com/droglenc/RFishBC
+* Source code: https://github.com/cran/RFishBC
+* Date/Publication: 2019-12-12 05:30:02 UTC
+* Number of recursive dependencies: 151
+
+Run `cloud_details(, "RFishBC")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RFishBC/new/RFishBC.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RFishBC/DESCRIPTION’ ... OK
+* this is package ‘RFishBC’ version ‘0.2.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'clisymbols', 'readbitmap', 'settings', 'stringr', 'withr'
+
+Packages suggested but not available for checking:
+ 'FSA', 'covr', 'pkgdown', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RFishBC/old/RFishBC.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RFishBC/DESCRIPTION’ ... OK
+* this is package ‘RFishBC’ version ‘0.2.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'clisymbols', 'readbitmap', 'settings', 'stringr', 'withr'
+
+Packages suggested but not available for checking:
+ 'FSA', 'covr', 'pkgdown', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rfPermute
+
+
+
+* Version: 2.5
+* GitHub: https://github.com/EricArcher/rfPermute
+* Source code: https://github.com/cran/rfPermute
+* Date/Publication: 2021-09-27 14:10:05 UTC
+* Number of recursive dependencies: 63
+
+Run `cloud_details(, "rfPermute")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rfPermute/new/rfPermute.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rfPermute/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rfPermute’ version ‘2.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'abind', 'ggplot2', 'gridExtra', 'randomForest', 'plyr', 'scales',
+ 'swfscMisc'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rfPermute/old/rfPermute.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rfPermute/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rfPermute’ version ‘2.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'abind', 'ggplot2', 'gridExtra', 'randomForest', 'plyr', 'scales',
+ 'swfscMisc'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RNeXML
+
+
+
+* Version: 2.4.5
+* GitHub: https://github.com/ropensci/RNeXML
+* Source code: https://github.com/cran/RNeXML
+* Date/Publication: 2020-06-18 18:40:02 UTC
+* Number of recursive dependencies: 141
+
+Run `cloud_details(, "RNeXML")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RNeXML/new/RNeXML.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RNeXML/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘RNeXML’ version ‘2.4.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'spelling', 'rdflib', 'geiger', 'phytools', 'knitr', 'rfigshare',
+ 'knitcitations', 'testthat', 'rmarkdown', 'xslt', 'covr', 'taxadb'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RNeXML/old/RNeXML.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RNeXML/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘RNeXML’ version ‘2.4.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'spelling', 'rdflib', 'geiger', 'phytools', 'knitr', 'rfigshare',
+ 'knitcitations', 'testthat', 'rmarkdown', 'xslt', 'covr', 'taxadb'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# robber
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/Chabert-Liddell/robber
+* Source code: https://github.com/cran/robber
+* Date/Publication: 2021-09-20 14:50:09 UTC
+* Number of recursive dependencies: 188
+
+Run `cloud_details(, "robber")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/robber/new/robber.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘robber/DESCRIPTION’ ... OK
+* this is package ‘robber’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'forcats', 'knitr', 'patchwork', 'pbmcapply', 'RColorBrewer',
+ 'rmarkdown', 'spelling', 'testthat', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/robber/old/robber.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘robber/DESCRIPTION’ ... OK
+* this is package ‘robber’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'forcats', 'knitr', 'patchwork', 'pbmcapply', 'RColorBrewer',
+ 'rmarkdown', 'spelling', 'testthat', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rPACI
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/dariorlual/rPACI
+* Source code: https://github.com/cran/rPACI
+* Date/Publication: 2021-11-04 00:10:07 UTC
+* Number of recursive dependencies: 113
+
+Run `cloud_details(, "rPACI")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rPACI/new/rPACI.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rPACI/DESCRIPTION’ ... OK
+* this is package ‘rPACI’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available: 'bnlearn', 'ggplot2', 'ggpubr'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rPACI/old/rPACI.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rPACI/DESCRIPTION’ ... OK
+* this is package ‘rPACI’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available: 'bnlearn', 'ggplot2', 'ggpubr'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rprev
+
+
+
+* Version: 1.0.5
+* GitHub: https://github.com/stulacy/rprev-dev
+* Source code: https://github.com/cran/rprev
+* Date/Publication: 2021-05-04 16:40:03 UTC
+* Number of recursive dependencies: 144
+
+Run `cloud_details(, "rprev")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rprev/new/rprev.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rprev/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rprev’ version ‘1.0.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'flexsurv', 'flexsurvcure', 'knitr', 'rmarkdown', 'rms', 'testthat',
+ 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rprev/old/rprev.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rprev/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rprev’ version ‘1.0.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'flexsurv', 'flexsurvcure', 'knitr', 'rmarkdown', 'rms', 'testthat',
+ 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rsetse
+
+
+
+* Version: 0.5.0
+* GitHub: https://github.com/JonnoB/rSETSe
+* Source code: https://github.com/cran/rsetse
+* Date/Publication: 2021-06-11 10:00:02 UTC
+* Number of recursive dependencies: 73
+
+Run `cloud_details(, "rsetse")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rsetse/new/rsetse.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rsetse/DESCRIPTION’ ... OK
+* this is package ‘rsetse’ version ‘0.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'ggraph', 'roxygen2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rsetse/old/rsetse.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rsetse/DESCRIPTION’ ... OK
+* this is package ‘rsetse’ version ‘0.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'ggraph', 'roxygen2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RSSL
+
+
+
+* Version: 0.9.3
+* GitHub: https://github.com/jkrijthe/RSSL
+* Source code: https://github.com/cran/RSSL
+* Date/Publication: 2020-11-13 18:00:10 UTC
+* Number of recursive dependencies: 74
+
+Run `cloud_details(, "RSSL")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RSSL/new/RSSL.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RSSL/DESCRIPTION’ ... OK
+* this is package ‘RSSL’ version ‘0.9.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'Rcpp', 'kernlab', 'quadprog', 'ggplot2', 'reshape2', 'scales',
+ 'RcppArmadillo'
+
+Packages suggested but not available for checking:
+ 'testthat', 'rmarkdown', 'SparseM', 'numDeriv', 'LiblineaR'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RSSL/old/RSSL.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RSSL/DESCRIPTION’ ... OK
+* this is package ‘RSSL’ version ‘0.9.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'Rcpp', 'kernlab', 'quadprog', 'ggplot2', 'reshape2', 'scales',
+ 'RcppArmadillo'
+
+Packages suggested but not available for checking:
+ 'testthat', 'rmarkdown', 'SparseM', 'numDeriv', 'LiblineaR'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rticulate
+
+
+
+* Version: 1.7.2
+* GitHub: https://github.com/stefanocoretta/rticulate
+* Source code: https://github.com/cran/rticulate
+* Date/Publication: 2021-01-11 09:50:02 UTC
+* Number of recursive dependencies: 100
+
+Run `cloud_details(, "rticulate")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rticulate/new/rticulate.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rticulate/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rticulate’ version ‘1.7.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'readr', 'tidymv', 'tidyverse'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rticulate/old/rticulate.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rticulate/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rticulate’ version ‘1.7.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggplot2', 'readr', 'tidymv', 'tidyverse'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RTL
+
+
+
+* Version: 0.1.8
+* GitHub: https://github.com/risktoollib/RTL
+* Source code: https://github.com/cran/RTL
+* Date/Publication: 2021-09-21 19:40:02 UTC
+* Number of recursive dependencies: 180
+
+Run `cloud_details(, "RTL")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RTL/new/RTL.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RTL/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘RTL’ version ‘0.1.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'fabletools', 'jsonlite', 'RCurl', 'plotly', 'timetk', 'tidyverse'
+
+Packages suggested but not available for checking:
+ 'rgdal', 'Quandl', 'fitdistrplus', 'lpSolve', 'rugarch',
+ 'PerformanceAnalytics'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RTL/old/RTL.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RTL/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘RTL’ version ‘0.1.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'fabletools', 'jsonlite', 'RCurl', 'plotly', 'timetk', 'tidyverse'
+
+Packages suggested but not available for checking:
+ 'rgdal', 'Quandl', 'fitdistrplus', 'lpSolve', 'rugarch',
+ 'PerformanceAnalytics'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rtsVis
+
+
+
+* Version: 0.0.3
+* GitHub: https://github.com/JohMast/rtsVis
+* Source code: https://github.com/cran/rtsVis
+* Date/Publication: 2021-05-26 17:00:02 UTC
+* Number of recursive dependencies: 118
+
+Run `cloud_details(, "rtsVis")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/rtsVis/new/rtsVis.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rtsVis/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rtsVis’ version ‘0.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'ggplot2', 'RStoolbox', 'moveVis', 'raster', 'pbapply', 'sp', 'sf',
+ 'forcats', 'assertthat'
+
+Package suggested but not available for checking: ‘spelling’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/rtsVis/old/rtsVis.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘rtsVis/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘rtsVis’ version ‘0.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'ggplot2', 'RStoolbox', 'moveVis', 'raster', 'pbapply', 'sp', 'sf',
+ 'forcats', 'assertthat'
+
+Package suggested but not available for checking: ‘spelling’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RVA
+
+
+
+* Version: 0.0.5
+* GitHub: https://github.com/THERMOSTATS/RVA
+* Source code: https://github.com/cran/RVA
+* Date/Publication: 2021-11-01 21:40:02 UTC
+* Number of recursive dependencies: 215
+
+Run `cloud_details(, "RVA")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RVA/new/RVA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RVA/DESCRIPTION’ ... OK
+* this is package ‘RVA’ version ‘0.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'stringr', 'XML'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RVA/old/RVA.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RVA/DESCRIPTION’ ... OK
+* this is package ‘RVA’ version ‘0.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'stringr', 'XML'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# RxODE
+
+
+
+* Version: 1.1.2
+* GitHub: https://github.com/nlmixrdevelopment/RxODE
+* Source code: https://github.com/cran/RxODE
+* Date/Publication: 2021-10-28 18:20:05 UTC
+* Number of recursive dependencies: 179
+
+Run `cloud_details(, "RxODE")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/RxODE/new/RxODE.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RxODE/DESCRIPTION’ ... OK
+* this is package ‘RxODE’ version ‘1.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'remotes', 'rmarkdown', 'scales', 'shiny', 'symengine', 'testthat',
+ 'usethis', 'vdiffr', 'xgxr', 'units', 'rsconnect', 'devtools',
+ 'patchwork'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/RxODE/old/RxODE.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘RxODE/DESCRIPTION’ ... OK
+* this is package ‘RxODE’ version ‘1.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'remotes', 'rmarkdown', 'scales', 'shiny', 'symengine', 'testthat',
+ 'usethis', 'vdiffr', 'xgxr', 'units', 'rsconnect', 'devtools',
+ 'patchwork'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# saotd
+
+
+
+* Version: 0.3.0
+* GitHub: https://github.com/evan-l-munson/saotd
+* Source code: https://github.com/cran/saotd
+* Date/Publication: 2021-10-13 09:50:02 UTC
+* Number of recursive dependencies: 115
+
+Run `cloud_details(, "saotd")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/saotd/new/saotd.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘saotd/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘saotd’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'httr', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/saotd/old/saotd.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘saotd/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘saotd’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'httr', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sbo
+
+
+
+* Version: 0.5.0
+* GitHub: https://github.com/vgherard/sbo
+* Source code: https://github.com/cran/sbo
+* Date/Publication: 2020-12-05 19:50:02 UTC
+* Number of recursive dependencies: 74
+
+Run `cloud_details(, "sbo")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sbo/new/sbo.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sbo/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sbo’ version ‘0.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'rmarkdown', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sbo/old/sbo.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sbo/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sbo’ version ‘0.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'rmarkdown', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# scoper
+
+
+
+* Version: 1.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/scoper
+* Date/Publication: 2021-11-02 21:30:02 UTC
+* Number of recursive dependencies: 119
+
+Run `cloud_details(, "scoper")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/scoper/new/scoper.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘scoper/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘scoper’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/scoper/old/scoper.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘scoper/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘scoper’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SCORPIUS
+
+
+
+* Version: 1.0.8
+* GitHub: https://github.com/rcannood/SCORPIUS
+* Source code: https://github.com/cran/SCORPIUS
+* Date/Publication: 2021-06-09 12:40:02 UTC
+* Number of recursive dependencies: 116
+
+Run `cloud_details(, "SCORPIUS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SCORPIUS/new/SCORPIUS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SCORPIUS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SCORPIUS’ version ‘1.0.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'covr', 'knitr', 'rmarkdown', 'R.rsp', 'testthat'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'R.rsp'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SCORPIUS/old/SCORPIUS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SCORPIUS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SCORPIUS’ version ‘1.0.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'covr', 'knitr', 'rmarkdown', 'R.rsp', 'testthat'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'R.rsp'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# secuTrialR
+
+
+
+* Version: 1.0.9
+* GitHub: https://github.com/SwissClinicalTrialOrganisation/secuTrialR
+* Source code: https://github.com/cran/secuTrialR
+* Date/Publication: 2021-03-11 07:30:03 UTC
+* Number of recursive dependencies: 83
+
+Run `cloud_details(, "secuTrialR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/secuTrialR/new/secuTrialR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘secuTrialR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘secuTrialR’ version ‘1.0.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'lintr', 'rmarkdown', 'testthat', 'tufte', 'igraph'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/secuTrialR/old/secuTrialR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘secuTrialR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘secuTrialR’ version ‘1.0.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'lintr', 'rmarkdown', 'testthat', 'tufte', 'igraph'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# see
+
+
+
+* Version: 0.6.8
+* GitHub: https://github.com/easystats/see
+* Source code: https://github.com/cran/see
+* Date/Publication: 2021-10-03 13:00:01 UTC
+* Number of recursive dependencies: 188
+
+Run `cloud_details(, "see")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/see/new/see.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘see/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘see’ version ‘0.6.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggrepel', 'ggside', 'glmmTMB', 'httr', 'lavaan', 'lme4',
+ 'logspline', 'mclust', 'metafor', 'modelbased', 'NbClust',
+ 'nFactors', 'patchwork', 'performance', 'psych', 'qqplotr',
+ 'randomForest', 'rmarkdown', 'rstanarm', 'spelling', 'testthat',
+ 'tidygraph', 'vdiffr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/see/old/see.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘see/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘see’ version ‘0.6.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggrepel', 'ggside', 'glmmTMB', 'httr', 'lavaan', 'lme4',
+ 'logspline', 'mclust', 'metafor', 'modelbased', 'NbClust',
+ 'nFactors', 'patchwork', 'performance', 'psych', 'qqplotr',
+ 'randomForest', 'rmarkdown', 'rstanarm', 'spelling', 'testthat',
+ 'tidygraph', 'vdiffr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SEERaBomb
+
+
+
+* Version: 2019.2
+* GitHub: NA
+* Source code: https://github.com/cran/SEERaBomb
+* Date/Publication: 2019-12-12 18:50:03 UTC
+* Number of recursive dependencies: 187
+
+Run `cloud_details(, "SEERaBomb")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SEERaBomb/new/SEERaBomb.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SEERaBomb/DESCRIPTION’ ... OK
+* this is package ‘SEERaBomb’ version ‘2019.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+ 'ggplot2', 'rgl', 'demography', 'Rcpp', 'reshape2', 'LaF', 'DBI',
+ 'RSQLite', 'openxlsx', 'WriteXLS', 'labelled', 'scales', 'forcats',
+ 'readr', 'stringr', 'plyr'
+
+Package suggested but not available for checking: ‘bbmle’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SEERaBomb/old/SEERaBomb.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SEERaBomb/DESCRIPTION’ ... OK
+* this is package ‘SEERaBomb’ version ‘2019.2’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+ 'ggplot2', 'rgl', 'demography', 'Rcpp', 'reshape2', 'LaF', 'DBI',
+ 'RSQLite', 'openxlsx', 'WriteXLS', 'labelled', 'scales', 'forcats',
+ 'readr', 'stringr', 'plyr'
+
+Package suggested but not available for checking: ‘bbmle’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sejmRP
+
+
+
+* Version: 1.3.4
+* GitHub: https://github.com/mi2-warsaw/sejmRP
+* Source code: https://github.com/cran/sejmRP
+* Date/Publication: 2017-03-28 17:29:47 UTC
+* Number of recursive dependencies: 137
+
+Run `cloud_details(, "sejmRP")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sejmRP/new/sejmRP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sejmRP/DESCRIPTION’ ... OK
+* this is package ‘sejmRP’ version ‘1.3.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'DBI', 'factoextra', 'RPostgreSQL', 'rvest', 'XML', 'xml2'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sejmRP/old/sejmRP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sejmRP/DESCRIPTION’ ... OK
+* this is package ‘sejmRP’ version ‘1.3.4’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'DBI', 'factoextra', 'RPostgreSQL', 'rvest', 'XML', 'xml2'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SenTinMixt
+
+
+
+* Version: 1.0.0
+* GitHub: NA
+* Source code: https://github.com/cran/SenTinMixt
+* Date/Publication: 2021-10-20 06:50:02 UTC
+* Number of recursive dependencies: 88
+
+Run `cloud_details(, "SenTinMixt")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SenTinMixt/new/SenTinMixt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SenTinMixt/DESCRIPTION’ ... OK
+* this is package ‘SenTinMixt’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'doSNOW', 'foreach', 'snow', 'TSdist', 'data.table', 'expint',
+ 'zipfR', 'mclust', 'rlist', 'withr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SenTinMixt/old/SenTinMixt.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SenTinMixt/DESCRIPTION’ ... OK
+* this is package ‘SenTinMixt’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'doSNOW', 'foreach', 'snow', 'TSdist', 'data.table', 'expint',
+ 'zipfR', 'mclust', 'rlist', 'withr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# shazam
+
+
+
+* Version: 1.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/shazam
+* Date/Publication: 2021-07-08 22:00:02 UTC
+* Number of recursive dependencies: 117
+
+Run `cloud_details(, "shazam")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/shazam/new/shazam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘shazam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘shazam’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/shazam/old/shazam.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘shazam/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘shazam’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ShellChron
+
+
+
+* Version: 0.4.0
+* GitHub: https://github.com/nielsjdewinter/ShellChron
+* Source code: https://github.com/cran/ShellChron
+* Date/Publication: 2021-07-05 12:40:02 UTC
+* Number of recursive dependencies: 119
+
+Run `cloud_details(, "ShellChron")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ShellChron/new/ShellChron.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ShellChron/DESCRIPTION’ ... OK
+* this is package ‘ShellChron’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'rtop', 'zoo', 'ggplot2', 'ggpubr', 'scales'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ShellChron/old/ShellChron.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ShellChron/DESCRIPTION’ ... OK
+* this is package ‘ShellChron’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'rtop', 'zoo', 'ggplot2', 'ggpubr', 'scales'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ShinyItemAnalysis
+
+
+
+* Version: 1.4.0
+* GitHub: https://github.com/patriciamar/ShinyItemAnalysis
+* Source code: https://github.com/cran/ShinyItemAnalysis
+* Date/Publication: 2021-09-27 14:30:05 UTC
+* Number of recursive dependencies: 117
+
+Run `cloud_details(, "ShinyItemAnalysis")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ShinyItemAnalysis/new/ShinyItemAnalysis.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ShinyItemAnalysis/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ShinyItemAnalysis’ version ‘1.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'data.table', 'deltaPlotR', 'difNLR', 'DT', 'ggdendro', 'gridExtra',
+ 'knitr', 'latticeExtra', 'ltm', 'msm', 'plotly', 'rmarkdown',
+ 'shiny', 'shinyBS', 'shinydashboard', 'shinyjs', 'stringr', 'VGAM',
+ 'xtable'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ShinyItemAnalysis/old/ShinyItemAnalysis.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ShinyItemAnalysis/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ShinyItemAnalysis’ version ‘1.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'data.table', 'deltaPlotR', 'difNLR', 'DT', 'ggdendro', 'gridExtra',
+ 'knitr', 'latticeExtra', 'ltm', 'msm', 'plotly', 'rmarkdown',
+ 'shiny', 'shinyBS', 'shinydashboard', 'shinyjs', 'stringr', 'VGAM',
+ 'xtable'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# ShortForm
+
+
+
+* Version: 0.4.6
+* GitHub: https://github.com/AnthonyRaborn/ShortForm
+* Source code: https://github.com/cran/ShortForm
+* Date/Publication: 2020-03-13 17:30:03 UTC
+* Number of recursive dependencies: 76
+
+Run `cloud_details(, "ShortForm")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/ShortForm/new/ShortForm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ShortForm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ShortForm’ version ‘0.4.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available: 'lavaan', 'ggplot2'
+
+Packages suggested but not available for checking:
+ 'knitr', 'MplusAutomation', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/ShortForm/old/ShortForm.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘ShortForm/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘ShortForm’ version ‘0.4.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available: 'lavaan', 'ggplot2'
+
+Packages suggested but not available for checking:
+ 'knitr', 'MplusAutomation', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SIBER
+
+
+
+* Version: 2.1.6
+* GitHub: NA
+* Source code: https://github.com/cran/SIBER
+* Date/Publication: 2021-04-13 14:50:08 UTC
+* Number of recursive dependencies: 132
+
+Run `cloud_details(, "SIBER")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SIBER/new/SIBER.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SIBER/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SIBER’ version ‘2.1.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'coda', 'ellipse', 'knitr', 'rmarkdown', 'tidyverse', 'viridis'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SIBER/old/SIBER.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SIBER/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SIBER’ version ‘2.1.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'coda', 'ellipse', 'knitr', 'rmarkdown', 'tidyverse', 'viridis'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# Signac
+
+
+
+* Version: 1.5.0
+* GitHub: https://github.com/timoast/signac
+* Source code: https://github.com/cran/Signac
+* Date/Publication: 2021-12-08 17:40:06 UTC
+* Number of recursive dependencies: 243
+
+Run `cloud_details(, "Signac")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/Signac/new/Signac.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Signac/DESCRIPTION’ ... OK
+* this is package ‘Signac’ version ‘1.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'chromVAR', 'SummarizedExperiment', 'TFBSTools',
+ 'motifmatchr', 'BSgenome', 'shiny', 'miniUI', 'rtracklayer',
+ 'biovizBase', 'Biostrings'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/Signac/old/Signac.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Signac/DESCRIPTION’ ... OK
+* this is package ‘Signac’ version ‘1.5.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'chromVAR', 'SummarizedExperiment', 'TFBSTools',
+ 'motifmatchr', 'BSgenome', 'shiny', 'miniUI', 'rtracklayer',
+ 'biovizBase', 'Biostrings'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SimplyAgree
+
+
+
+* Version: 0.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/SimplyAgree
+* Date/Publication: 2021-05-18 14:10:16 UTC
+* Number of recursive dependencies: 182
+
+Run `cloud_details(, "SimplyAgree")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SimplyAgree/new/SimplyAgree.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SimplyAgree/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SimplyAgree’ version ‘0.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'tidyverse', 'readr', 'ggpubr',
+ 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SimplyAgree/old/SimplyAgree.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SimplyAgree/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SimplyAgree’ version ‘0.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'tidyverse', 'readr', 'ggpubr',
+ 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# simts
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/SMAC-Group/simts
+* Source code: https://github.com/cran/simts
+* Date/Publication: 2019-07-21 22:20:02 UTC
+* Number of recursive dependencies: 56
+
+Run `cloud_details(, "simts")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/simts/new/simts.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘simts/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘simts’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'Rcpp', 'scales', 'broom', 'robcor', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/simts/old/simts.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘simts/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘simts’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'Rcpp', 'scales', 'broom', 'robcor', 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sismonr
+
+
+
+* Version: 2.1.0
+* GitHub: https://github.com/oliviaAB/sismonr
+* Source code: https://github.com/cran/sismonr
+* Date/Publication: 2020-02-11 06:50:02 UTC
+* Number of recursive dependencies: 130
+
+Run `cloud_details(, "sismonr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sismonr/new/sismonr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sismonr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sismonr’ version ‘2.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sismonr/old/sismonr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sismonr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sismonr’ version ‘2.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sjPlot
+
+
+
+* Version: 2.8.10
+* GitHub: https://github.com/strengejacke/sjPlot
+* Source code: https://github.com/cran/sjPlot
+* Date/Publication: 2021-11-26 16:10:50 UTC
+* Number of recursive dependencies: 216
+
+Run `cloud_details(, "sjPlot")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sjPlot/new/sjPlot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sjPlot/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sjPlot’ version ‘2.8.10’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggrepel', 'glmmTMB', 'gridExtra', 'ggridges', 'httr', 'lme4',
+ 'nFactors', 'pscl', 'psych', 'rmarkdown', 'rstanarm', 'sandwich',
+ 'survey', 'TMB', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sjPlot/old/sjPlot.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sjPlot/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sjPlot’ version ‘2.8.10’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'ggrepel', 'glmmTMB', 'gridExtra', 'ggridges', 'httr', 'lme4',
+ 'nFactors', 'pscl', 'psych', 'rmarkdown', 'rstanarm', 'sandwich',
+ 'survey', 'TMB', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sjstats
+
+
+
+* Version: 0.18.1
+* GitHub: https://github.com/strengejacke/sjstats
+* Source code: https://github.com/cran/sjstats
+* Date/Publication: 2021-01-09 13:50:02 UTC
+* Number of recursive dependencies: 197
+
+Run `cloud_details(, "sjstats")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sjstats/new/sjstats.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sjstats/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sjstats’ version ‘0.18.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'modelr', 'parameters', 'performance', 'sjlabelled', 'sjmisc'
+
+Packages suggested but not available for checking:
+ 'brms', 'car', 'coin', 'ggplot2', 'pscl', 'pwr', 'sjPlot', 'survey',
+ 'rstan', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sjstats/old/sjstats.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sjstats/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sjstats’ version ‘0.18.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'modelr', 'parameters', 'performance', 'sjlabelled', 'sjmisc'
+
+Packages suggested but not available for checking:
+ 'brms', 'car', 'coin', 'ggplot2', 'pscl', 'pwr', 'sjPlot', 'survey',
+ 'rstan', 'testthat'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sknifedatar
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/rafzamb/sknifedatar
+* Source code: https://github.com/cran/sknifedatar
+* Date/Publication: 2021-06-01 08:00:02 UTC
+* Number of recursive dependencies: 172
+
+Run `cloud_details(, "sknifedatar")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sknifedatar/new/sknifedatar.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sknifedatar/DESCRIPTION’ ... OK
+* this is package ‘sknifedatar’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'knitr', 'modeltime', 'parsnip', 'rsample', 'tune'
+
+Packages suggested but not available for checking:
+ 'earth', 'ggplot2', 'recipes', 'rmarkdown', 'spelling', 'timetk',
+ 'workflows', 'yardstick', 'workflowsets'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sknifedatar/old/sknifedatar.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sknifedatar/DESCRIPTION’ ... OK
+* this is package ‘sknifedatar’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'knitr', 'modeltime', 'parsnip', 'rsample', 'tune'
+
+Packages suggested but not available for checking:
+ 'earth', 'ggplot2', 'recipes', 'rmarkdown', 'spelling', 'timetk',
+ 'workflows', 'yardstick', 'workflowsets'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SLOPE
+
+
+
+* Version: 0.4.0
+* GitHub: https://github.com/jolars/SLOPE
+* Source code: https://github.com/cran/SLOPE
+* Date/Publication: 2021-12-10 11:50:09 UTC
+* Number of recursive dependencies: 115
+
+Run `cloud_details(, "SLOPE")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SLOPE/new/SLOPE.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SLOPE/DESCRIPTION’ ... OK
+* this is package ‘SLOPE’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'caret', 'covr', 'glmnet', 'ggplot2', 'stringr', 'scales', 'bench',
+ 'knitr', 'rmarkdown', 'spelling', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SLOPE/old/SLOPE.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SLOPE/DESCRIPTION’ ... OK
+* this is package ‘SLOPE’ version ‘0.4.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'caret', 'covr', 'glmnet', 'ggplot2', 'stringr', 'scales', 'bench',
+ 'knitr', 'rmarkdown', 'spelling', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# smog
+
+
+
+* Version: 2.1.0
+* GitHub: https://github.com/chongma8903/smog
+* Source code: https://github.com/cran/smog
+* Date/Publication: 2020-08-10 16:50:02 UTC
+* Number of recursive dependencies: 90
+
+Run `cloud_details(, "smog")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/smog/new/smog.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘smog/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘smog’ version ‘2.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'Rcpp', 'foreach', 'doParallel', 'ggplot2', 'Rdpack', 'rmarkdown',
+ 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'roxygen2', 'pkgdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/smog/old/smog.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘smog/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘smog’ version ‘2.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'Rcpp', 'foreach', 'doParallel', 'ggplot2', 'Rdpack', 'rmarkdown',
+ 'RcppArmadillo'
+
+Packages suggested but not available for checking: 'roxygen2', 'pkgdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SNPassoc
+
+
+
+* Version: 2.0-11
+* GitHub: https://github.com/isglobal-brge/SNPassoc
+* Source code: https://github.com/cran/SNPassoc
+* Date/Publication: 2021-12-03 08:40:02 UTC
+* Number of recursive dependencies: 214
+
+Run `cloud_details(, "SNPassoc")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SNPassoc/new/SNPassoc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SNPassoc/DESCRIPTION’ ... OK
+* this is package ‘SNPassoc’ version ‘2.0-11’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'knitr', 'rmarkdown', 'biomaRt',
+ 'SNPlocs.Hsapiens.dbSNP144.GRCh38', 'MafDb.1Kgenomes.phase3.GRCh38',
+ 'BSgenome.Hsapiens.NCBI.GRCh38', 'GenomicScores', 'BSgenome'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SNPassoc/old/SNPassoc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SNPassoc/DESCRIPTION’ ... OK
+* this is package ‘SNPassoc’ version ‘2.0-11’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'knitr', 'rmarkdown', 'biomaRt',
+ 'SNPlocs.Hsapiens.dbSNP144.GRCh38', 'MafDb.1Kgenomes.phase3.GRCh38',
+ 'BSgenome.Hsapiens.NCBI.GRCh38', 'GenomicScores', 'BSgenome'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# soc.ca
+
+
+
+* Version: 0.8.0
+* GitHub: https://github.com/Rsoc/soc.ca
+* Source code: https://github.com/cran/soc.ca
+* Date/Publication: 2021-09-02 22:50:02 UTC
+* Number of recursive dependencies: 140
+
+Run `cloud_details(, "soc.ca")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/soc.ca/new/soc.ca.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘soc.ca/DESCRIPTION’ ... OK
+* this is package ‘soc.ca’ version ‘0.8.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ggplot2', 'gridExtra', 'ellipse', 'shiny', 'FactoMineR', 'ggrepel',
+ 'htmlTable', 'stringr', 'RColorBrewer', 'reshape2', 'flextable',
+ 'forcats'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/soc.ca/old/soc.ca.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘soc.ca/DESCRIPTION’ ... OK
+* this is package ‘soc.ca’ version ‘0.8.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ggplot2', 'gridExtra', 'ellipse', 'shiny', 'FactoMineR', 'ggrepel',
+ 'htmlTable', 'stringr', 'RColorBrewer', 'reshape2', 'flextable',
+ 'forcats'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SPARTAAS
+
+
+
+* Version: 1.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/SPARTAAS
+* Date/Publication: 2021-10-22 14:30:02 UTC
+* Number of recursive dependencies: 194
+
+Run `cloud_details(, "SPARTAAS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SPARTAAS/new/SPARTAAS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SPARTAAS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SPARTAAS’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'htmltools', 'rstudioapi', 'htmlwidgets', 'shinythemes', 'markdown',
+ 'explor', 'shinyWidgets', 'scatterD3', 'sp', 'ks', 'rgdal',
+ 'maptools', 'leaflet', 'ape', 'mapview'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SPARTAAS/old/SPARTAAS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SPARTAAS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SPARTAAS’ version ‘1.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'htmltools', 'rstudioapi', 'htmlwidgets', 'shinythemes', 'markdown',
+ 'explor', 'shinyWidgets', 'scatterD3', 'sp', 'ks', 'rgdal',
+ 'maptools', 'leaflet', 'ape', 'mapview'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# spatialRF
+
+
+
+* Version: 1.1.3
+* GitHub: https://github.com/BlasBenito/spatialRF
+* Source code: https://github.com/cran/spatialRF
+* Date/Publication: 2021-09-23 08:30:02 UTC
+* Number of recursive dependencies: 77
+
+Run `cloud_details(, "spatialRF")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/spatialRF/new/spatialRF.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘spatialRF/DESCRIPTION’ ... OK
+* this is package ‘spatialRF’ version ‘1.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'ggplot2', 'foreach', 'doParallel', 'ranger', 'huxtable',
+ 'patchwork', 'viridis'
+
+Packages suggested but not available for checking: 'testthat', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/spatialRF/old/spatialRF.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘spatialRF/DESCRIPTION’ ... OK
+* this is package ‘spatialRF’ version ‘1.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'ggplot2', 'foreach', 'doParallel', 'ranger', 'huxtable',
+ 'patchwork', 'viridis'
+
+Packages suggested but not available for checking: 'testthat', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# spatialTIME
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/FridleyLab/spatialTIME
+* Source code: https://github.com/cran/spatialTIME
+* Date/Publication: 2021-09-11 04:10:02 UTC
+* Number of recursive dependencies: 139
+
+Run `cloud_details(, "spatialTIME")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/spatialTIME/new/spatialTIME.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘spatialTIME/DESCRIPTION’ ... OK
+* this is package ‘spatialTIME’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/spatialTIME/old/spatialTIME.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘spatialTIME/DESCRIPTION’ ... OK
+* this is package ‘spatialTIME’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# specr
+
+
+
+* Version: 0.2.1
+* GitHub: https://github.com/masurp/specr
+* Source code: https://github.com/cran/specr
+* Date/Publication: 2020-03-26 13:40:02 UTC
+* Number of recursive dependencies: 128
+
+Run `cloud_details(, "specr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/specr/new/specr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘specr/DESCRIPTION’ ... OK
+* this is package ‘specr’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'tidyverse', 'performance', 'progress',
+ 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/specr/old/specr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘specr/DESCRIPTION’ ... OK
+* this is package ‘specr’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'knitr', 'testthat', 'tidyverse', 'performance', 'progress',
+ 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# stacks
+
+
+
+* Version: 0.2.1
+* GitHub: https://github.com/tidymodels/stacks
+* Source code: https://github.com/cran/stacks
+* Date/Publication: 2021-07-23 16:20:02 UTC
+* Number of recursive dependencies: 135
+
+Run `cloud_details(, "stacks")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/stacks/new/stacks.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘stacks/DESCRIPTION’ ... OK
+* this is package ‘stacks’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'kernlab', 'knitr', 'modeldata', 'rmarkdown',
+ 'ranger', 'kknn'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/stacks/old/stacks.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘stacks/DESCRIPTION’ ... OK
+* this is package ‘stacks’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'kernlab', 'knitr', 'modeldata', 'rmarkdown',
+ 'ranger', 'kknn'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# staRdom
+
+
+
+* Version: 1.1.23
+* GitHub: https://github.com/MatthiasPucher/staRdom
+* Source code: https://github.com/cran/staRdom
+* Date/Publication: 2021-10-08 11:10:02 UTC
+* Number of recursive dependencies: 168
+
+Run `cloud_details(, "staRdom")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/staRdom/new/staRdom.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘staRdom/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘staRdom’ version ‘1.1.23’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'plotly', 'xlsx', 'knitr', 'kableExtra', 'httr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/staRdom/old/staRdom.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘staRdom/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘staRdom’ version ‘1.1.23’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'plotly', 'xlsx', 'knitr', 'kableExtra', 'httr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# stars
+
+
+
+* Version: 0.5-4
+* GitHub: https://github.com/r-spatial/stars
+* Source code: https://github.com/cran/stars
+* Date/Publication: 2021-11-19 07:30:05 UTC
+* Number of recursive dependencies: 142
+
+Run `cloud_details(, "stars")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/stars/new/stars.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘stars/DESCRIPTION’ ... OK
+* this is package ‘stars’ version ‘0.5-4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ncmeta', 'pbapply', 'plm', 'randomForest', 'raster', 'rgdal',
+ 'rmarkdown', 'sp', 'spacetime', 'spatstat', 'spatstat.geom', 'terra',
+ 'testthat', 'viridis', 'xts', 'zoo'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/stars/old/stars.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘stars/DESCRIPTION’ ... OK
+* this is package ‘stars’ version ‘0.5-4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ncmeta', 'pbapply', 'plm', 'randomForest', 'raster', 'rgdal',
+ 'rmarkdown', 'sp', 'spacetime', 'spatstat', 'spatstat.geom', 'terra',
+ 'testthat', 'viridis', 'xts', 'zoo'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# starvz
+
+
+
+* Version: 0.7.0
+* GitHub: https://github.com/schnorr/starvz
+* Source code: https://github.com/cran/starvz
+* Date/Publication: 2021-11-05 15:50:02 UTC
+* Number of recursive dependencies: 131
+
+Run `cloud_details(, "starvz")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/starvz/new/starvz.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘starvz/DESCRIPTION’ ... OK
+* this is package ‘starvz’ version ‘0.7.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ggplot2', 'patchwork', 'readr', 'stringr', 'yaml', 'lpSolve',
+ 'gtools', 'data.tree', 'RColorBrewer', 'zoo', 'Rcpp', 'arrow', 'BH'
+
+Packages suggested but not available for checking:
+ 'testthat', 'flexmix', 'car', 'viridis'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/starvz/old/starvz.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘starvz/DESCRIPTION’ ... OK
+* this is package ‘starvz’ version ‘0.7.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'ggplot2', 'patchwork', 'readr', 'stringr', 'yaml', 'lpSolve',
+ 'gtools', 'data.tree', 'RColorBrewer', 'zoo', 'Rcpp', 'arrow', 'BH'
+
+Packages suggested but not available for checking:
+ 'testthat', 'flexmix', 'car', 'viridis'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# stats19
+
+
+
+* Version: 2.0.0
+* GitHub: https://github.com/ropensci/stats19
+* Source code: https://github.com/cran/stats19
+* Date/Publication: 2021-10-29 22:50:03 UTC
+* Number of recursive dependencies: 164
+
+Run `cloud_details(, "stats19")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/stats19/new/stats19.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘stats19/DESCRIPTION’ ... OK
+* this is package ‘stats19’ version ‘2.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'pkgdown', 'kableExtra', 'leaflet', 'geojsonsf',
+ 'htmltools', 'tmap', 'jsonlite', 'pct', 'spatstat.geom', 'spatstat',
+ 'osmdata', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/stats19/old/stats19.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘stats19/DESCRIPTION’ ... OK
+* this is package ‘stats19’ version ‘2.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'testthat', 'pkgdown', 'kableExtra', 'leaflet', 'geojsonsf',
+ 'htmltools', 'tmap', 'jsonlite', 'pct', 'spatstat.geom', 'spatstat',
+ 'osmdata', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# statsearchanalyticsr
+
+
+
+* Version: 0.1.4
+* GitHub: https://github.com/searchdiscovery/statsearchanalyticsr
+* Source code: https://github.com/cran/statsearchanalyticsr
+* Date/Publication: 2021-09-28 10:20:02 UTC
+* Number of recursive dependencies: 41
+
+Run `cloud_details(, "statsearchanalyticsr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/statsearchanalyticsr/new/statsearchanalyticsr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘statsearchanalyticsr/DESCRIPTION’ ... OK
+* this is package ‘statsearchanalyticsr’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'httr', 'jsonlite', 'lubridate'
+
+Package suggested but not available for checking: ‘spelling’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/statsearchanalyticsr/old/statsearchanalyticsr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘statsearchanalyticsr/DESCRIPTION’ ... OK
+* this is package ‘statsearchanalyticsr’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'httr', 'jsonlite', 'lubridate'
+
+Package suggested but not available for checking: ‘spelling’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# statsExpressions
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/IndrajeetPatil/statsExpressions
+* Source code: https://github.com/cran/statsExpressions
+* Date/Publication: 2021-10-19 08:40:02 UTC
+* Number of recursive dependencies: 172
+
+Run `cloud_details(, "statsExpressions")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/statsExpressions/new/statsExpressions.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘statsExpressions/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘statsExpressions’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'afex', 'ggplot2', 'knitr', 'metaBMA', 'metafor', 'metaplus',
+ 'rmarkdown', 'spelling', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/statsExpressions/old/statsExpressions.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘statsExpressions/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘statsExpressions’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'afex', 'ggplot2', 'knitr', 'metaBMA', 'metafor', 'metaplus',
+ 'rmarkdown', 'spelling', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# STRMPS
+
+
+
+* Version: 0.5.8
+* GitHub: NA
+* Source code: https://github.com/cran/STRMPS
+* Date/Publication: 2018-07-02 08:30:06 UTC
+* Number of recursive dependencies: 57
+
+Run `cloud_details(, "STRMPS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/STRMPS/new/STRMPS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘STRMPS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘STRMPS’ version ‘0.5.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'Biostrings', 'ShortRead', 'stringr'
+
+Package suggested but not available for checking: ‘STRaitRazoR’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/STRMPS/old/STRMPS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘STRMPS/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘STRMPS’ version ‘0.5.8’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'Biostrings', 'ShortRead', 'stringr'
+
+Package suggested but not available for checking: ‘STRaitRazoR’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# suddengains
+
+
+
+* Version: 0.4.4
+* GitHub: https://github.com/milanwiedemann/suddengains
+* Source code: https://github.com/cran/suddengains
+* Date/Publication: 2020-05-22 22:40:03 UTC
+* Number of recursive dependencies: 86
+
+Run `cloud_details(, "suddengains")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/suddengains/new/suddengains.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘suddengains/DESCRIPTION’ ... OK
+* this is package ‘suddengains’ version ‘0.4.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'haven', 'writexl', 'knitr', 'DT', 'rmarkdown', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/suddengains/old/suddengains.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘suddengains/DESCRIPTION’ ... OK
+* this is package ‘suddengains’ version ‘0.4.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'haven', 'writexl', 'knitr', 'DT', 'rmarkdown', 'spelling'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# supernova
+
+
+
+* Version: 2.4.4
+* GitHub: https://github.com/UCLATALL/supernova
+* Source code: https://github.com/cran/supernova
+* Date/Publication: 2021-10-21 15:50:02 UTC
+* Number of recursive dependencies: 128
+
+Run `cloud_details(, "supernova")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/supernova/new/supernova.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘supernova/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘supernova’ version ‘2.4.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available: 'ggplot2', 'stringr', 'backports'
+
+Packages suggested but not available for checking:
+ 'car', 'covr', 'lintr', 'lme4', 'testthat', 'vdiffr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/supernova/old/supernova.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘supernova/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘supernova’ version ‘2.4.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+* checking package dependencies ... ERROR
+Packages required but not available: 'ggplot2', 'stringr', 'backports'
+
+Packages suggested but not available for checking:
+ 'car', 'covr', 'lintr', 'lme4', 'testthat', 'vdiffr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# Superpower
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/arcaldwell49/Superpower
+* Source code: https://github.com/cran/Superpower
+* Date/Publication: 2021-05-25 04:10:02 UTC
+* Number of recursive dependencies: 144
+
+Run `cloud_details(, "Superpower")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/Superpower/new/Superpower.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Superpower/DESCRIPTION’ ... OK
+* this is package ‘Superpower’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'pwr', 'testthat', 'covr', 'jmvcore'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/Superpower/old/Superpower.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Superpower/DESCRIPTION’ ... OK
+* this is package ‘Superpower’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'pwr', 'testthat', 'covr', 'jmvcore'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# survivalAnalysis
+
+
+
+* Version: 0.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/survivalAnalysis
+* Date/Publication: 2021-04-24 12:20:05 UTC
+* Number of recursive dependencies: 175
+
+Run `cloud_details(, "survivalAnalysis")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/survivalAnalysis/new/survivalAnalysis.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘survivalAnalysis/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘survivalAnalysis’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/survivalAnalysis/old/survivalAnalysis.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘survivalAnalysis/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘survivalAnalysis’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'tidyverse'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# survminer
+
+
+
+* Version: 0.4.9
+* GitHub: https://github.com/kassambara/survminer
+* Source code: https://github.com/cran/survminer
+* Date/Publication: 2021-03-09 09:50:03 UTC
+* Number of recursive dependencies: 154
+
+Run `cloud_details(, "survminer")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/survminer/new/survminer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘survminer/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘survminer’ version ‘0.4.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'flexsurv', 'cmprsk', 'markdown', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/survminer/old/survminer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘survminer/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘survminer’ version ‘0.4.9’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'flexsurv', 'cmprsk', 'markdown', 'testthat', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# survParamSim
+
+
+
+* Version: 0.1.5
+* GitHub: https://github.com/yoshidk6/survParamSim
+* Source code: https://github.com/cran/survParamSim
+* Date/Publication: 2021-04-26 22:10:02 UTC
+* Number of recursive dependencies: 145
+
+Run `cloud_details(, "survParamSim")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/survParamSim/new/survParamSim.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘survParamSim/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘survParamSim’ version ‘0.1.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'survminer', 'testthat', 'vdiffr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/survParamSim/old/survParamSim.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘survParamSim/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘survParamSim’ version ‘0.1.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'survminer', 'testthat', 'vdiffr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# sweep
+
+
+
+* Version: 0.2.3
+* GitHub: https://github.com/business-science/sweep
+* Source code: https://github.com/cran/sweep
+* Date/Publication: 2020-07-10 12:10:03 UTC
+* Number of recursive dependencies: 160
+
+Run `cloud_details(, "sweep")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/sweep/new/sweep.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sweep/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sweep’ version ‘0.2.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'forcats', 'knitr', 'rmarkdown', 'testthat', 'readr', 'robets',
+ 'stringr', 'scales', 'tidyquant', 'tidyverse', 'fracdiff'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/sweep/old/sweep.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘sweep/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘sweep’ version ‘0.2.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'forcats', 'knitr', 'rmarkdown', 'testthat', 'readr', 'robets',
+ 'stringr', 'scales', 'tidyquant', 'tidyverse', 'fracdiff'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# swfscAirDAS
+
+
+
+* Version: 0.2.2
+* GitHub: https://github.com/smwoodman/swfscAirDAS
+* Source code: https://github.com/cran/swfscAirDAS
+* Date/Publication: 2021-01-10 01:10:02 UTC
+* Number of recursive dependencies: 97
+
+Run `cloud_details(, "swfscAirDAS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/swfscAirDAS/new/swfscAirDAS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘swfscAirDAS/DESCRIPTION’ ... OK
+* this is package ‘swfscAirDAS’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/swfscAirDAS/old/swfscAirDAS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘swfscAirDAS/DESCRIPTION’ ... OK
+* this is package ‘swfscAirDAS’ version ‘0.2.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# swfscDAS
+
+
+
+* Version: 0.6.0
+* GitHub: https://github.com/smwoodman/swfscDAS
+* Source code: https://github.com/cran/swfscDAS
+* Date/Publication: 2021-09-03 19:40:02 UTC
+* Number of recursive dependencies: 96
+
+Run `cloud_details(, "swfscDAS")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/swfscDAS/new/swfscDAS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘swfscDAS/DESCRIPTION’ ... OK
+* this is package ‘swfscDAS’ version ‘0.6.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'stringr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/swfscDAS/old/swfscDAS.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘swfscDAS/DESCRIPTION’ ... OK
+* this is package ‘swfscDAS’ version ‘0.6.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'stringr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# swfscMisc
+
+
+
+* Version: 1.5
+* GitHub: https://github.com/EricArcher/swfscMisc
+* Source code: https://github.com/cran/swfscMisc
+* Date/Publication: 2021-05-21 22:50:02 UTC
+* Number of recursive dependencies: 58
+
+Run `cloud_details(, "swfscMisc")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/swfscMisc/new/swfscMisc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘swfscMisc/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘swfscMisc’ version ‘1.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'ggrepel', 'kknn', 'mapdata', 'maps', 'sf',
+ 'spatstat.geom'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/swfscMisc/old/swfscMisc.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘swfscMisc/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘swfscMisc’ version ‘1.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'ggrepel', 'kknn', 'mapdata', 'maps', 'sf',
+ 'spatstat.geom'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# SWMPr
+
+
+
+* Version: 2.4.1
+* GitHub: https://github.com/fawda123/SWMPr
+* Source code: https://github.com/cran/SWMPr
+* Date/Publication: 2021-09-02 21:10:39 UTC
+* Number of recursive dependencies: 115
+
+Run `cloud_details(, "SWMPr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/SWMPr/new/SWMPr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SWMPr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SWMPr’ version ‘2.4.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'colorspace', 'ggmap', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/SWMPr/old/SWMPr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘SWMPr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘SWMPr’ version ‘2.4.1’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'colorspace', 'ggmap', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# symphony
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/symphony
+* Date/Publication: 2021-08-05 07:50:05 UTC
+* Number of recursive dependencies: 92
+
+Run `cloud_details(, "symphony")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/symphony/new/symphony.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘symphony/DESCRIPTION’ ... OK
+* this is package ‘symphony’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'ggthemes'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/symphony/old/symphony.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘symphony/DESCRIPTION’ ... OK
+* this is package ‘symphony’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat', 'ggthemes'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# TCIU
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/SOCR/TCIU
+* Source code: https://github.com/cran/TCIU
+* Date/Publication: 2021-04-30 15:10:03 UTC
+* Number of recursive dependencies: 185
+
+Run `cloud_details(, "TCIU")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/TCIU/new/TCIU.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TCIU/DESCRIPTION’ ... OK
+* this is package ‘TCIU’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'oro.nifti', 'knitr', 'rmarkdown', 'webshot'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/TCIU/old/TCIU.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TCIU/DESCRIPTION’ ... OK
+* this is package ‘TCIU’ version ‘1.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'oro.nifti', 'knitr', 'rmarkdown', 'webshot'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# TestDimorph
+
+
+
+* Version: 0.4.1
+* GitHub: NA
+* Source code: https://github.com/cran/TestDimorph
+* Date/Publication: 2021-02-23 14:20:03 UTC
+* Number of recursive dependencies: 112
+
+Run `cloud_details(, "TestDimorph")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/TestDimorph/new/TestDimorph.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TestDimorph/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘TestDimorph’ version ‘0.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'caret', 'corrplot', 'cutpointr', 'ggplot2', 'Morpho',
+ 'multcompView', 'tmvtnorm', 'truncnorm'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/TestDimorph/old/TestDimorph.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TestDimorph/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘TestDimorph’ version ‘0.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available:
+ 'caret', 'corrplot', 'cutpointr', 'ggplot2', 'Morpho',
+ 'multcompView', 'tmvtnorm', 'truncnorm'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# TestGardener
+
+
+
+* Version: 2.0.0
+* GitHub: NA
+* Source code: https://github.com/cran/TestGardener
+* Date/Publication: 2021-11-10 20:10:02 UTC
+* Number of recursive dependencies: 134
+
+Run `cloud_details(, "TestGardener")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/TestGardener/new/TestGardener.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TestGardener/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘TestGardener’ version ‘2.0.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'fda', 'ggplot2', 'rgl', 'ggpubr', 'stringr', 'pracma', 'knitr',
+ 'rmarkdown'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/TestGardener/old/TestGardener.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TestGardener/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘TestGardener’ version ‘2.0.0’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'fda', 'ggplot2', 'rgl', 'ggpubr', 'stringr', 'pracma', 'knitr',
+ 'rmarkdown'
+
+VignetteBuilder packages required for checking but not installed:
+ 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tetraclasse
+
+
+
+* Version: 0.1.21
+* GitHub: NA
+* Source code: https://github.com/cran/tetraclasse
+* Date/Publication: 2017-07-15 21:14:59 UTC
+* Number of recursive dependencies: 114
+
+Run `cloud_details(, "tetraclasse")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tetraclasse/new/tetraclasse.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tetraclasse/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tetraclasse’ version ‘0.1.21’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'reshape2', 'FactoMineR', 'ggrepel'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tetraclasse/old/tetraclasse.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tetraclasse/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tetraclasse’ version ‘0.1.21’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'reshape2', 'FactoMineR', 'ggrepel'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# text2sdg
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/dwulff/text2sdg
+* Source code: https://github.com/cran/text2sdg
+* Date/Publication: 2021-11-30 16:40:02 UTC
+* Number of recursive dependencies: 89
+
+Run `cloud_details(, "text2sdg")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/text2sdg/new/text2sdg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘text2sdg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘text2sdg’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/text2sdg/old/text2sdg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘text2sdg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘text2sdg’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# textmineR
+
+
+
+* Version: 3.0.5
+* GitHub: https://github.com/TommyJones/textmineR
+* Source code: https://github.com/cran/textmineR
+* Date/Publication: 2021-06-28 05:00:02 UTC
+* Number of recursive dependencies: 86
+
+Run `cloud_details(, "textmineR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/textmineR/new/textmineR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘textmineR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘textmineR’ version ‘3.0.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'spelling', 'digest', 'igraph', 'knitr', 'lda', 'rmarkdown',
+ 'SnowballC', 'stringi', 'testthat', 'tidytext', 'topicmodels',
+ 'wordcloud'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/textmineR/old/textmineR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘textmineR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘textmineR’ version ‘3.0.5’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'spelling', 'digest', 'igraph', 'knitr', 'lda', 'rmarkdown',
+ 'SnowballC', 'stringi', 'testthat', 'tidytext', 'topicmodels',
+ 'wordcloud'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# TextMiningGUI
+
+
+
+* Version: 0.3
+* GitHub: NA
+* Source code: https://github.com/cran/TextMiningGUI
+* Date/Publication: 2021-04-17 16:20:02 UTC
+* Number of recursive dependencies: 154
+
+Run `cloud_details(, "TextMiningGUI")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/TextMiningGUI/new/TextMiningGUI.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TextMiningGUI/DESCRIPTION’ ... OK
+* this is package ‘TextMiningGUI’ version ‘0.3’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'tkrplot', 'SnowballC', 'readxl', 'jsonlite', 'ggrepel', 'ggpubr',
+ 'igraph', 'ggraph', 'ape', 'topicmodels', 'ca', 'corrr',
+ 'data.table', 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/TextMiningGUI/old/TextMiningGUI.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TextMiningGUI/DESCRIPTION’ ... OK
+* this is package ‘TextMiningGUI’ version ‘0.3’
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available:
+...
+
+Packages suggested but not available for checking:
+ 'tkrplot', 'SnowballC', 'readxl', 'jsonlite', 'ggrepel', 'ggpubr',
+ 'igraph', 'ggraph', 'ape', 'topicmodels', 'ca', 'corrr',
+ 'data.table', 'knitr', 'rmarkdown'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# textrecipes
+
+
+
+* Version: 0.4.1
+* GitHub: https://github.com/tidymodels/textrecipes
+* Source code: https://github.com/cran/textrecipes
+* Date/Publication: 2021-07-11 08:00:02 UTC
+* Number of recursive dependencies: 109
+
+Run `cloud_details(, "textrecipes")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/textrecipes/new/textrecipes.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘textrecipes/DESCRIPTION’ ... OK
+* this is package ‘textrecipes’ version ‘0.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'covr', 'janitor', 'knitr', 'modeldata', 'rmarkdown', 'spacyr',
+ 'stopwords', 'testthat', 'text2vec', 'textfeatures',
+ 'tokenizers.bpe', 'udpipe'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/textrecipes/old/textrecipes.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘textrecipes/DESCRIPTION’ ... OK
+* this is package ‘textrecipes’ version ‘0.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'covr', 'janitor', 'knitr', 'modeldata', 'rmarkdown', 'spacyr',
+ 'stopwords', 'testthat', 'text2vec', 'textfeatures',
+ 'tokenizers.bpe', 'udpipe'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tfestimators
+
+
+
+* Version: 1.9.2
+* GitHub: https://github.com/rstudio/tfestimators
+* Source code: https://github.com/cran/tfestimators
+* Date/Publication: 2021-08-09 22:30:02 UTC
+* Number of recursive dependencies: 81
+
+Run `cloud_details(, "tfestimators")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tfestimators/new/tfestimators.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tfestimators/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tfestimators’ version ‘1.9.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'modelr', 'testthat', 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tfestimators/old/tfestimators.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tfestimators/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tfestimators’ version ‘1.9.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'modelr', 'testthat', 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidybayes
+
+
+
+* Version: 3.0.1
+* GitHub: https://github.com/mjskay/tidybayes
+* Source code: https://github.com/cran/tidybayes
+* Date/Publication: 2021-08-22 08:40:02 UTC
+* Number of recursive dependencies: 204
+
+Run `cloud_details(, "tidybayes")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidybayes/new/tidybayes.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidybayes/DESCRIPTION’ ... OK
+* this is package ‘tidybayes’ version ‘3.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'cowplot', 'covr', 'gdtools', 'rmarkdown', 'ggrepel', 'bindrcpp',
+ 'RColorBrewer', 'gganimate', 'gifski', 'png', 'pkgdown',
+ 'distributional', 'transformr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidybayes/old/tidybayes.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidybayes/DESCRIPTION’ ... OK
+* this is package ‘tidybayes’ version ‘3.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'cowplot', 'covr', 'gdtools', 'rmarkdown', 'ggrepel', 'bindrcpp',
+ 'RColorBrewer', 'gganimate', 'gifski', 'png', 'pkgdown',
+ 'distributional', 'transformr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidylda
+
+
+
+* Version: 0.0.2
+* GitHub: https://github.com/TommyJones/tidylda
+* Source code: https://github.com/cran/tidylda
+* Date/Publication: 2021-12-08 05:40:02 UTC
+* Number of recursive dependencies: 68
+
+Run `cloud_details(, "tidylda")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidylda/new/tidylda.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidylda/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidylda’ version ‘0.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'gtools', 'mvrsquared', 'Rcpp', 'stringr', 'tidytext',
+ 'RcppArmadillo', 'RcppProgress', 'RcppThread'
+
+Packages suggested but not available for checking:
+ 'knitr', 'quanteda', 'testthat', 'tm', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidylda/old/tidylda.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidylda/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidylda’ version ‘0.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'gtools', 'mvrsquared', 'Rcpp', 'stringr', 'tidytext',
+ 'RcppArmadillo', 'RcppProgress', 'RcppThread'
+
+Packages suggested but not available for checking:
+ 'knitr', 'quanteda', 'testthat', 'tm', 'spelling'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidylog
+
+
+
+* Version: 1.0.2
+* GitHub: https://github.com/elbersb/tidylog
+* Source code: https://github.com/cran/tidylog
+* Date/Publication: 2020-07-03 13:30:02 UTC
+* Number of recursive dependencies: 62
+
+Run `cloud_details(, "tidylog")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidylog/new/tidylog.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidylog/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidylog’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'forcats', 'knitr', 'rmarkdown', 'bench'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidylog/old/tidylog.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidylog/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidylog’ version ‘1.0.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'forcats', 'knitr', 'rmarkdown', 'bench'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidyMicro
+
+
+
+* Version: 1.47
+* GitHub: https://github.com/CharlieCarpenter/tidyMicro
+* Source code: https://github.com/cran/tidyMicro
+* Date/Publication: 2020-09-13 17:10:03 UTC
+* Number of recursive dependencies: 200
+
+Run `cloud_details(, "tidyMicro")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidyMicro/new/tidyMicro.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyMicro/DESCRIPTION’ ... OK
+* this is package ‘tidyMicro’ version ‘1.47’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'markdown', 'roxygen2', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidyMicro/old/tidyMicro.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyMicro/DESCRIPTION’ ... OK
+* this is package ‘tidyMicro’ version ‘1.47’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'markdown', 'roxygen2', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidyquant
+
+
+
+* Version: 1.0.3
+* GitHub: https://github.com/business-science/tidyquant
+* Source code: https://github.com/cran/tidyquant
+* Date/Publication: 2021-03-05 06:40:03 UTC
+* Number of recursive dependencies: 160
+
+Run `cloud_details(, "tidyquant")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidyquant/new/tidyquant.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyquant/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidyquant’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'tidyverse', 'tibbletime', 'forcats', 'broom', 'knitr', 'rmarkdown',
+ 'testthat', 'scales', 'Rblpapi', 'readxl'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidyquant/old/tidyquant.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyquant/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidyquant’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'tidyverse', 'tibbletime', 'forcats', 'broom', 'knitr', 'rmarkdown',
+ 'testthat', 'scales', 'Rblpapi', 'readxl'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidyqwi
+
+
+
+* Version: 0.1.2
+* GitHub: https://github.com/medewitt/tidyqwi
+* Source code: https://github.com/cran/tidyqwi
+* Date/Publication: 2020-05-04 10:30:02 UTC
+* Number of recursive dependencies: 77
+
+Run `cloud_details(, "tidyqwi")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidyqwi/new/tidyqwi.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyqwi/DESCRIPTION’ ... OK
+* this is package ‘tidyqwi’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidyqwi/old/tidyqwi.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyqwi/DESCRIPTION’ ... OK
+* this is package ‘tidyqwi’ version ‘0.1.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'covr', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidyseurat
+
+
+
+* Version: 0.3.0
+* GitHub: https://github.com/stemangiola/tidyseurat
+* Source code: https://github.com/cran/tidyseurat
+* Date/Publication: 2021-10-19 04:50:02 UTC
+* Number of recursive dependencies: 183
+
+Run `cloud_details(, "tidyseurat")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidyseurat/new/tidyseurat.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyseurat/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidyseurat’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'GGally', 'markdown', 'SingleR'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidyseurat/old/tidyseurat.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidyseurat/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidyseurat’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'GGally', 'markdown', 'SingleR'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tidytext
+
+
+
+* Version: 0.3.2
+* GitHub: https://github.com/juliasilge/tidytext
+* Source code: https://github.com/cran/tidytext
+* Date/Publication: 2021-09-30 20:10:02 UTC
+* Number of recursive dependencies: 124
+
+Run `cloud_details(, "tidytext")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tidytext/new/tidytext.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidytext/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidytext’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'quanteda', 'readr', 'reshape2', 'rmarkdown', 'scales', 'stm',
+ 'stopwords', 'testthat', 'textdata', 'tm', 'topicmodels', 'vdiffr',
+ 'wordcloud', 'XML'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tidytext/old/tidytext.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tidytext/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tidytext’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'quanteda', 'readr', 'reshape2', 'rmarkdown', 'scales', 'stm',
+ 'stopwords', 'testthat', 'textdata', 'tm', 'topicmodels', 'vdiffr',
+ 'wordcloud', 'XML'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tigger
+
+
+
+* Version: 1.0.0
+* GitHub: NA
+* Source code: https://github.com/cran/tigger
+* Date/Publication: 2020-05-13 05:10:03 UTC
+* Number of recursive dependencies: 120
+
+Run `cloud_details(, "tigger")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tigger/new/tigger.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tigger/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tigger’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tigger/old/tigger.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tigger/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tigger’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# timetk
+
+
+
+* Version: 2.6.2
+* GitHub: https://github.com/business-science/timetk
+* Source code: https://github.com/cran/timetk
+* Date/Publication: 2021-11-16 07:00:05 UTC
+* Number of recursive dependencies: 209
+
+Run `cloud_details(, "timetk")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/timetk/new/timetk.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘timetk/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘timetk’ version ‘2.6.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'tune', 'yardstick', 'tidyverse', 'knitr', 'rmarkdown', 'robets',
+ 'broom', 'scales', 'testthat', 'fracdiff', 'timeSeries', 'tseries',
+ 'roxygen2', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/timetk/old/timetk.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘timetk/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘timetk’ version ‘2.6.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'tune', 'yardstick', 'tidyverse', 'knitr', 'rmarkdown', 'robets',
+ 'broom', 'scales', 'testthat', 'fracdiff', 'timeSeries', 'tseries',
+ 'roxygen2', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tinyarray
+
+
+
+* Version: 2.2.7
+* GitHub: https://github.com/xjsun1221/tinyarray
+* Source code: https://github.com/cran/tinyarray
+* Date/Publication: 2021-11-08 10:00:02 UTC
+* Number of recursive dependencies: 244
+
+Run `cloud_details(, "tinyarray")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tinyarray/new/tinyarray.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tinyarray/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tinyarray’ version ‘2.2.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'AnnoProbe', 'GEOquery', 'VennDiagram', 'FactoMineR',
+ 'factoextra', 'knitr', 'rmarkdown', 'cowplot', 'ggpubr', 'ggplotify',
+ 'labeling', 'Rtsne', 'scatterplot3d', 'ComplexHeatmap', 'circlize'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tinyarray/old/tinyarray.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tinyarray/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘tinyarray’ version ‘2.2.7’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'AnnoProbe', 'GEOquery', 'VennDiagram', 'FactoMineR',
+ 'factoextra', 'knitr', 'rmarkdown', 'cowplot', 'ggpubr', 'ggplotify',
+ 'labeling', 'Rtsne', 'scatterplot3d', 'ComplexHeatmap', 'circlize'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# tosr
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/coreofscience/tosr
+* Source code: https://github.com/cran/tosr
+* Date/Publication: 2021-07-14 09:30:02 UTC
+* Number of recursive dependencies: 210
+
+Run `cloud_details(, "tosr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/tosr/new/tosr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tosr/DESCRIPTION’ ... OK
+* this is package ‘tosr’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/tosr/old/tosr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘tosr/DESCRIPTION’ ... OK
+* this is package ‘tosr’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+
+Packages suggested but not available for checking:
+ 'rmarkdown', 'knitr', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# truthiness
+
+
+
+* Version: 1.2.5
+* GitHub: https://github.com/dalejbarr/truthiness
+* Source code: https://github.com/cran/truthiness
+* Date/Publication: 2021-05-24 08:00:03 UTC
+* Number of recursive dependencies: 141
+
+Run `cloud_details(, "truthiness")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/truthiness/new/truthiness.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘truthiness/DESCRIPTION’ ... OK
+* this is package ‘truthiness’ version ‘1.2.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'ordinal', 'lme4', 'readr', 'rmarkdown', 'emmeans', 'DT', 'Rdpack',
+ 'ggplot2', 'forcats', 'ez'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/truthiness/old/truthiness.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘truthiness/DESCRIPTION’ ... OK
+* this is package ‘truthiness’ version ‘1.2.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'ordinal', 'lme4', 'readr', 'rmarkdown', 'emmeans', 'DT', 'Rdpack',
+ 'ggplot2', 'forcats', 'ez'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# TSstudio
+
+
+
+* Version: 0.1.6
+* GitHub: https://github.com/RamiKrispin/TSstudio
+* Source code: https://github.com/cran/TSstudio
+* Date/Publication: 2020-01-21 05:30:02 UTC
+* Number of recursive dependencies: 140
+
+Run `cloud_details(, "TSstudio")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/TSstudio/new/TSstudio.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TSstudio/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘TSstudio’ version ‘0.1.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'devtools', 'DT', 'knitr', 'quantmod', 'rmarkdown', 'UKgrid'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/TSstudio/old/TSstudio.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘TSstudio/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘TSstudio’ version ‘0.1.6’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'devtools', 'DT', 'knitr', 'quantmod', 'rmarkdown', 'UKgrid'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# UCSCXenaShiny
+
+
+
+* Version: 1.1.4
+* GitHub: https://github.com/openbiox/UCSCXenaShiny
+* Source code: https://github.com/cran/UCSCXenaShiny
+* Date/Publication: 2021-12-13 08:00:02 UTC
+* Number of recursive dependencies: 219
+
+Run `cloud_details(, "UCSCXenaShiny")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/UCSCXenaShiny/new/UCSCXenaShiny.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘UCSCXenaShiny/DESCRIPTION’ ... OK
+* this is package ‘UCSCXenaShiny’ version ‘1.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'covr', 'cowplot', 'DT', 'furrr', 'future', 'ggrepel', 'ggstatsplot',
+ 'knitr', 'pacman', 'plotly', 'plyr', 'RColorBrewer', 'rmarkdown',
+ 'scales', 'survminer', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/UCSCXenaShiny/old/UCSCXenaShiny.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘UCSCXenaShiny/DESCRIPTION’ ... OK
+* this is package ‘UCSCXenaShiny’ version ‘1.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'covr', 'cowplot', 'DT', 'furrr', 'future', 'ggrepel', 'ggstatsplot',
+ 'knitr', 'pacman', 'plotly', 'plyr', 'RColorBrewer', 'rmarkdown',
+ 'scales', 'survminer', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# umiAnalyzer
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/sfilges/umiAnalyzer
+* Source code: https://github.com/cran/umiAnalyzer
+* Date/Publication: 2021-11-25 08:40:02 UTC
+* Number of recursive dependencies: 114
+
+Run `cloud_details(, "umiAnalyzer")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/umiAnalyzer/new/umiAnalyzer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘umiAnalyzer/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘umiAnalyzer’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'shinyFiles', 'shinyWidgets', 'viridis'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/umiAnalyzer/old/umiAnalyzer.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘umiAnalyzer/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘umiAnalyzer’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'shinyFiles', 'shinyWidgets', 'viridis'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# utr.annotation
+
+
+
+* Version: 1.0.4
+* GitHub: NA
+* Source code: https://github.com/cran/utr.annotation
+* Date/Publication: 2021-08-23 06:40:02 UTC
+* Number of recursive dependencies: 172
+
+Run `cloud_details(, "utr.annotation")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/utr.annotation/new/utr.annotation.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘utr.annotation/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘utr.annotation’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/utr.annotation/old/utr.annotation.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘utr.annotation/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘utr.annotation’ version ‘1.0.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'ggplot2'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# valr
+
+
+
+* Version: 0.6.4
+* GitHub: https://github.com/rnabioco/valr
+* Source code: https://github.com/cran/valr
+* Date/Publication: 2021-12-08 23:00:02 UTC
+* Number of recursive dependencies: 154
+
+Run `cloud_details(, "valr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/valr/new/valr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘valr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘valr’ version ‘0.6.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'bench', 'covr', 'cowplot', 'curl', 'DBI', 'dbplyr', 'devtools',
+ 'DT', 'GenomicRanges', 'knitr', 'RMariaDB', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/valr/old/valr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘valr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘valr’ version ‘0.6.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'bench', 'covr', 'cowplot', 'curl', 'DBI', 'dbplyr', 'devtools',
+ 'DT', 'GenomicRanges', 'knitr', 'RMariaDB', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# varsExplore
+
+
+
+* Version: 0.3.0
+* GitHub: NA
+* Source code: https://github.com/cran/varsExplore
+* Date/Publication: 2020-07-13 04:30:03 UTC
+* Number of recursive dependencies: 64
+
+Run `cloud_details(, "varsExplore")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/varsExplore/new/varsExplore.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘varsExplore/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘varsExplore’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available: 'DT', 'rstudioapi', 'rio'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/varsExplore/old/varsExplore.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘varsExplore/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘varsExplore’ version ‘0.3.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages required but not available: 'DT', 'rstudioapi', 'rio'
+
+Packages suggested but not available for checking: 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# vcfR
+
+
+
+* Version: 1.12.0
+* GitHub: https://github.com/knausb/vcfR
+* Source code: https://github.com/cran/vcfR
+* Date/Publication: 2020-09-01 08:40:07 UTC
+* Number of recursive dependencies: 99
+
+Run `cloud_details(, "vcfR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/vcfR/new/vcfR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘vcfR/DESCRIPTION’ ... OK
+* this is package ‘vcfR’ version ‘1.12.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'adegenet', 'ggplot2', 'knitr', 'poppr', 'reshape2', 'rmarkdown',
+ 'scales', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/vcfR/old/vcfR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘vcfR/DESCRIPTION’ ... OK
+* this is package ‘vcfR’ version ‘1.12.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages suggested but not available for checking:
+ 'adegenet', 'ggplot2', 'knitr', 'poppr', 'reshape2', 'rmarkdown',
+ 'scales', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# viewpoly
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/viewpoly
+* Date/Publication: 2021-12-16 21:00:02 UTC
+* Number of recursive dependencies: 183
+
+Run `cloud_details(, "viewpoly")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/viewpoly/new/viewpoly.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘viewpoly/DESCRIPTION’ ... OK
+* this is package ‘viewpoly’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'shiny', 'shinyjs', 'shinythemes', 'shinyWidgets', 'shinydashboard',
+ 'config', 'golem', 'JBrowseR', 'DT', 'ggplot2', 'ggpubr', 'plotly',
+ 'vroom', 'abind', 'reshape2', 'markdown'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/viewpoly/old/viewpoly.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘viewpoly/DESCRIPTION’ ... OK
+* this is package ‘viewpoly’ version ‘0.1.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'shiny', 'shinyjs', 'shinythemes', 'shinyWidgets', 'shinydashboard',
+ 'config', 'golem', 'JBrowseR', 'DT', 'ggplot2', 'ggpubr', 'plotly',
+ 'vroom', 'abind', 'reshape2', 'markdown'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# vinereg
+
+
+
+* Version: 0.8.0
+* GitHub: https://github.com/tnagler/vinereg
+* Source code: https://github.com/cran/vinereg
+* Date/Publication: 2021-11-23 21:30:02 UTC
+* Number of recursive dependencies: 126
+
+Run `cloud_details(, "vinereg")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/vinereg/new/vinereg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘vinereg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘vinereg’ version ‘0.8.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'AppliedPredictiveModeling',
+ 'quantreg', 'scales', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/vinereg/old/vinereg.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘vinereg/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘vinereg’ version ‘0.8.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'ggplot2', 'AppliedPredictiveModeling',
+ 'quantreg', 'scales', 'testthat', 'covr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# visae
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/dnzmarcio/visae
+* Source code: https://github.com/cran/visae
+* Date/Publication: 2021-11-10 23:40:02 UTC
+* Number of recursive dependencies: 73
+
+Run `cloud_details(, "visae")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/visae/new/visae.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘visae/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘visae’ version ‘0.2.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+ 'shiny', 'ggplot2', 'shinyjs', 'ca', 'ggrepel', 'DT'
+
+Packages suggested but not available for checking: 'rmarkdown', 'knitr'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/visae/old/visae.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘Radviz/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘visae/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘Radviz’ version ‘0.9.2’
+* this is package ‘visae’ version ‘0.2.0’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘ggplot2’
+...
+ 'shiny', 'ggplot2', 'shinyjs', 'ca', 'ggrepel', 'DT'
+
+Packages suggested but not available for checking: 'rmarkdown', 'knitr'
-Packages suggested but not available for checking: 'cytofan', 'scales'
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -1838,17 +25048,17 @@ Status: 1 ERROR
```
-# RavenR
+# vlad
-* Version: 2.1.0
-* GitHub: https://github.com/rchlumsk/RavenR
-* Source code: https://github.com/cran/RavenR
-* Date/Publication: 2021-06-10 08:20:07 UTC
-* Number of recursive dependencies: 124
+* Version: 0.2.2
+* GitHub: https://github.com/wittenberg/vlad
+* Source code: https://github.com/cran/vlad
+* Date/Publication: 2021-02-15 10:30:02 UTC
+* Number of recursive dependencies: 70
-Run `cloud_details(, "RavenR")` for more info
+Run `cloud_details(, "vlad")` for more info
@@ -1857,27 +25067,27 @@ Run `cloud_details(, "RavenR")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/RavenR/new/RavenR.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/vlad/new/vlad.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘RavenR/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘vlad/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘RavenR’ version ‘2.1.0’
+* this is package ‘vlad’ version ‘0.2.2’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘Introduction_to_RavenR.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages required but not available:
+ 'Rcpp', 'checkmate', 'BH', 'RcppArmadillo'
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'rmarkdown', 'spcadjust', 'testthat', 'knitr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 2 NOTEs
+Status: 1 ERROR
@@ -1887,44 +25097,44 @@ Status: 2 NOTEs
### CRAN
```
-* using log directory ‘/tmp/workdir/RavenR/old/RavenR.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/vlad/old/vlad.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘RavenR/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘vlad/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘RavenR’ version ‘2.1.0’
+* this is package ‘vlad’ version ‘0.2.2’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘Introduction_to_RavenR.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+Packages required but not available:
+ 'Rcpp', 'checkmate', 'BH', 'RcppArmadillo'
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'rmarkdown', 'spcadjust', 'testthat', 'knitr'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 2 NOTEs
+Status: 1 ERROR
```
-# raw
+# vmeasur
-* Version: 0.1.8
+* Version: 0.1.4
* GitHub: NA
-* Source code: https://github.com/cran/raw
-* Date/Publication: 2021-02-05 15:40:03 UTC
-* Number of recursive dependencies: 162
+* Source code: https://github.com/cran/vmeasur
+* Date/Publication: 2021-11-11 19:00:02 UTC
+* Number of recursive dependencies: 133
-Run `cloud_details(, "raw")` for more info
+Run `cloud_details(, "vmeasur")` for more info
@@ -1933,27 +25143,27 @@ Run `cloud_details(, "raw")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/raw/new/raw.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/vmeasur/new/vmeasur.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘raw/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘vmeasur/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘raw’ version ‘0.1.8’
+* this is package ‘vmeasur’ version ‘0.1.4’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘raw.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'readr', 'stringr', 'ggpubr', 'imager', 'av', 'foreach',
+ 'pracma', 'svDialogs', 'pdftools', 'doFuture', 'progressr', 'future',
+ 'scales'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
@@ -1963,44 +25173,196 @@ Status: 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/raw/old/raw.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/vmeasur/old/vmeasur.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘raw/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘vmeasur/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘raw’ version ‘0.1.8’
+* this is package ‘vmeasur’ version ‘0.1.4’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-* checking installed files from ‘inst/doc’ ... OK
-* checking files in ‘vignettes’ ... OK
-* checking examples ... OK
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘raw.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'ggplot2', 'readr', 'stringr', 'ggpubr', 'imager', 'av', 'foreach',
+ 'pracma', 'svDialogs', 'pdftools', 'doFuture', 'progressr', 'future',
+ 'scales'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
```
-# Rilostat
+# WASP
-* Version: 1.1.8
-* GitHub: https://github.com/ilostat/Rilostat
-* Source code: https://github.com/cran/Rilostat
-* Date/Publication: 2021-07-29 06:40:02 UTC
-* Number of recursive dependencies: 123
+* Version: 1.4.1
+* GitHub: https://github.com/zejiang-unsw/WASP
+* Source code: https://github.com/cran/WASP
+* Date/Publication: 2021-09-02 20:20:05 UTC
+* Number of recursive dependencies: 103
+
+Run `cloud_details(, "WASP")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/WASP/new/WASP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘WASP/DESCRIPTION’ ... OK
+* this is package ‘WASP’ version ‘1.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'zoo', 'FNN', 'readr', 'knitr', 'cowplot', 'gridGraphics',
+ 'bookdown', 'rmarkdown', 'SPEI', 'NPRED', 'synthesis', 'kableExtra',
+ 'fitdistrplus', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/WASP/old/WASP.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘WASP/DESCRIPTION’ ... OK
+* this is package ‘WASP’ version ‘1.4.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+ 'zoo', 'FNN', 'readr', 'knitr', 'cowplot', 'gridGraphics',
+ 'bookdown', 'rmarkdown', 'SPEI', 'NPRED', 'synthesis', 'kableExtra',
+ 'fitdistrplus', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# waves
+
+
-Run `cloud_details(, "Rilostat")` for more info
+* Version: 0.1.1
+* GitHub: https://github.com/GoreLab/waves
+* Source code: https://github.com/cran/waves
+* Date/Publication: 2021-04-21 09:30:03 UTC
+* Number of recursive dependencies: 108
+
+Run `cloud_details(, "waves")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/waves/new/waves.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘waves/DESCRIPTION’ ... OK
+* this is package ‘waves’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'prospectr', 'spectacles', 'caret', 'pls', 'randomForest',
+ 'wesanderson', 'ggplot2', 'stringr'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/waves/old/waves.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘waves/DESCRIPTION’ ... OK
+* this is package ‘waves’ version ‘0.1.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+...
+Packages required but not available:
+ 'prospectr', 'spectacles', 'caret', 'pls', 'randomForest',
+ 'wesanderson', 'ggplot2', 'stringr'
+
+Package suggested but not available for checking: ‘testthat’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# webr
+
+
+
+* Version: 0.1.5
+* GitHub: https://github.com/cardiomoon/webr
+* Source code: https://github.com/cran/webr
+* Date/Publication: 2020-01-26 14:20:02 UTC
+* Number of recursive dependencies: 188
+
+Run `cloud_details(, "webr")` for more info
@@ -2009,27 +25371,27 @@ Run `cloud_details(, "Rilostat")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/Rilostat/new/Rilostat.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/webr/new/webr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘Rilostat/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘webr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘Rilostat’ version ‘1.1.8’
+* this is package ‘webr’ version ‘0.1.5’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-* checking Rd cross-references ... OK
-* checking for missing documentation entries ... OK
-* checking for code/documentation mismatches ... OK
-* checking Rd \usage sections ... OK
-* checking Rd contents ... OK
-* checking for unstated dependencies in examples ... OK
-* checking R/sysdata.rda ... OK
-* checking examples ... OK
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
@@ -2039,44 +25401,120 @@ Status: 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/Rilostat/old/Rilostat.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/webr/old/webr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘Rilostat/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘webr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘Rilostat’ version ‘1.1.8’
+* this is package ‘webr’ version ‘0.1.5’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-* checking Rd cross-references ... OK
-* checking for missing documentation entries ... OK
-* checking for code/documentation mismatches ... OK
-* checking Rd \usage sections ... OK
-* checking Rd contents ... OK
-* checking for unstated dependencies in examples ... OK
-* checking R/sysdata.rda ... OK
-* checking examples ... OK
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# weibulltools
+
+
+
+* Version: 2.0.0
+* GitHub: https://github.com/Tim-TU/weibulltools
+* Source code: https://github.com/cran/weibulltools
+* Date/Publication: 2021-01-12 09:30:02 UTC
+* Number of recursive dependencies: 84
+
+Run `cloud_details(, "weibulltools")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/weibulltools/new/weibulltools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘weibulltools/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘weibulltools’ version ‘2.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/weibulltools/old/weibulltools.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘weibulltools/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘weibulltools’ version ‘2.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'knitr', 'rmarkdown', 'testthat'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
```
-# RKorAPClient
+# WeMix
-* Version: 0.7.1
-* GitHub: https://github.com/KorAP/RKorAPClient
-* Source code: https://github.com/cran/RKorAPClient
-* Date/Publication: 2021-09-21 13:30:09 UTC
-* Number of recursive dependencies: 115
+* Version: 3.2.1
+* GitHub: https://github.com/American-Institutes-for-Research/WeMix
+* Source code: https://github.com/cran/WeMix
+* Date/Publication: 2021-12-07 05:50:07 UTC
+* Number of recursive dependencies: 150
-Run `cloud_details(, "RKorAPClient")` for more info
+Run `cloud_details(, "WeMix")` for more info
@@ -2085,18 +25523,22 @@ Run `cloud_details(, "RKorAPClient")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/RKorAPClient/new/RKorAPClient.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/WeMix/new/WeMix.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘RKorAPClient/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘RKorAPClient’ version ‘0.7.1’
+* using option ‘--no-manual’
+* checking for file ‘WeMix/DESCRIPTION’ ... OK
+* this is package ‘WeMix’ version ‘3.2.1’
* package encoding: UTF-8
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Packages required but not available: 'ggplot2', 'PTXQC'
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'withr', 'EdSurvey'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2111,18 +25553,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/RKorAPClient/old/RKorAPClient.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/WeMix/old/WeMix.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘RKorAPClient/DESCRIPTION’ ... OK
-* checking extension type ... Package
-* this is package ‘RKorAPClient’ version ‘0.7.1’
+* using option ‘--no-manual’
+* checking for file ‘WeMix/DESCRIPTION’ ... OK
+* this is package ‘WeMix’ version ‘3.2.1’
* package encoding: UTF-8
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Packages required but not available: 'ggplot2', 'PTXQC'
+...
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown', 'withr', 'EdSurvey'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2134,95 +25580,93 @@ Status: 1 ERROR
```
-# rmdcev
+# whomds
-* Version: 1.2.4
-* GitHub: https://github.com/plloydsmith/rmdcev
-* Source code: https://github.com/cran/rmdcev
-* Date/Publication: 2020-09-30 18:40:02 UTC
-* Number of recursive dependencies: 82
+* Version: 1.0.1
+* GitHub: https://github.com/lindsayevanslee/whomds
+* Source code: https://github.com/cran/whomds
+* Date/Publication: 2021-11-26 14:40:02 UTC
+* Number of recursive dependencies: 176
-Run `cloud_details(, "rmdcev")` for more info
+Run `cloud_details(, "whomds")` for more info
-## In both
-
-* checking whether package ‘rmdcev’ can be installed ... ERROR
- ```
- Installation failed.
- See ‘/tmp/workdir/rmdcev/new/rmdcev.Rcheck/00install.out’ for details.
- ```
-
-## Installation
+## Error before installation
### Devel
```
-* installing *source* package ‘rmdcev’ ...
-** package ‘rmdcev’ successfully unpacked and MD5 sums checked
-** using staged installation
-** libs
+* using log directory ‘/tmp/workdir/whomds/new/whomds.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘whomds/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘whomds’ version ‘1.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
-g++ -std=gnu++14 -I"/opt/R/4.0.3/lib/R/include" -DNDEBUG -I"../inst/include" -I"/opt/R/4.0.3/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -I'/opt/R/4.0.3/lib/R/site-library/BH/include' -I'/opt/R/4.0.3/lib/R/site-library/Rcpp/include' -I'/opt/R/4.0.3/lib/R/site-library/RcppEigen/include' -I'/opt/R/4.0.3/lib/R/site-library/RcppParallel/include' -I'/opt/R/4.0.3/lib/R/site-library/rstan/include' -I'/opt/R/4.0.3/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/opt/R/4.0.3/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
-In file included from /opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/Core:397,
- from /opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
- from /opt/R/4.0.3/lib/R/site-library/StanHeaders/include/stan/math/prim/mat/fun/Eigen.hpp:13,
-...
-/opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from ‘Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose > >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; Eigen::internal::evaluator >::XprType = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose > >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]’
-/opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from ‘Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose > >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Eigen::internal::dense_product_base::Scalar = double]’
-/opt/R/4.0.3/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:23:56: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_mdcev_namespace::model_mdcev; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
-/opt/R/4.0.3/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:10: required from here
-/opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__vector(2) double’} [-Wignored-attributes]
-g++: fatal error: Killed signal terminated program cc1plus
-compilation terminated.
-make: *** [/opt/R/4.0.3/lib/R/etc/Makeconf:179: stanExports_mdcev.o] Error 1
-ERROR: compilation failed for package ‘rmdcev’
-* removing ‘/tmp/workdir/rmdcev/new/rmdcev.Rcheck/rmdcev’
```
### CRAN
```
-* installing *source* package ‘rmdcev’ ...
-** package ‘rmdcev’ successfully unpacked and MD5 sums checked
-** using staged installation
-** libs
+* using log directory ‘/tmp/workdir/whomds/old/whomds.Rcheck’
+* using R version 4.1.1 (2021-08-10)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘whomds/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘whomds’ version ‘1.0.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+...
+
+Packages suggested but not available for checking:
+ 'covr', 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
-g++ -std=gnu++14 -I"/opt/R/4.0.3/lib/R/include" -DNDEBUG -I"../inst/include" -I"/opt/R/4.0.3/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -I'/opt/R/4.0.3/lib/R/site-library/BH/include' -I'/opt/R/4.0.3/lib/R/site-library/Rcpp/include' -I'/opt/R/4.0.3/lib/R/site-library/RcppEigen/include' -I'/opt/R/4.0.3/lib/R/site-library/RcppParallel/include' -I'/opt/R/4.0.3/lib/R/site-library/rstan/include' -I'/opt/R/4.0.3/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/opt/R/4.0.3/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
-In file included from /opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/Core:397,
- from /opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
- from /opt/R/4.0.3/lib/R/site-library/StanHeaders/include/stan/math/prim/mat/fun/Eigen.hpp:13,
-...
-/opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from ‘Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose > >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; Eigen::internal::evaluator >::XprType = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose > >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]’
-/opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from ‘Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose > >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Eigen::internal::dense_product_base::Scalar = double]’
-/opt/R/4.0.3/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:23:56: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_mdcev_namespace::model_mdcev; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
-/opt/R/4.0.3/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:10: required from here
-/opt/R/4.0.3/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__vector(2) double’} [-Wignored-attributes]
-g++: fatal error: Killed signal terminated program cc1plus
-compilation terminated.
-make: *** [/opt/R/4.0.3/lib/R/etc/Makeconf:179: stanExports_mdcev.o] Error 1
-ERROR: compilation failed for package ‘rmdcev’
-* removing ‘/tmp/workdir/rmdcev/old/rmdcev.Rcheck/rmdcev’
```
-# RtutoR
+# widyr
-* Version: 1.2
-* GitHub: NA
-* Source code: https://github.com/cran/RtutoR
-* Date/Publication: 2018-09-14 07:50:07 UTC
-* Number of recursive dependencies: 125
+* Version: 0.1.4
+* GitHub: https://github.com/dgrtwo/widyr
+* Source code: https://github.com/cran/widyr
+* Date/Publication: 2021-08-12 17:10:02 UTC
+* Number of recursive dependencies: 104
-Run `cloud_details(, "RtutoR")` for more info
+Run `cloud_details(, "widyr")` for more info
@@ -2231,18 +25675,22 @@ Run `cloud_details(, "RtutoR")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/RtutoR/new/RtutoR.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/widyr/new/widyr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘RtutoR/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘widyr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘RtutoR’ version ‘1.2’
+* this is package ‘widyr’ version ‘0.1.4’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘devtools’
+...
+ 'ggraph', 'igraph', 'testthat', 'covr', 'knitr', 'janeaustenr',
+ 'rmarkdown', 'unvotes', 'countrycode', 'fuzzyjoin', 'ggplot2',
+ 'maps', 'irlba'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2257,18 +25705,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/RtutoR/old/RtutoR.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/widyr/old/widyr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘RtutoR/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘widyr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘RtutoR’ version ‘1.2’
+* this is package ‘widyr’ version ‘0.1.4’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘devtools’
+...
+ 'ggraph', 'igraph', 'testthat', 'covr', 'knitr', 'janeaustenr',
+ 'rmarkdown', 'unvotes', 'countrycode', 'fuzzyjoin', 'ggplot2',
+ 'maps', 'irlba'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2280,17 +25732,17 @@ Status: 1 ERROR
```
-# scoper
+# wordbankr
-* Version: 1.1.0
-* GitHub: NA
-* Source code: https://github.com/cran/scoper
-* Date/Publication: 2020-08-10 21:50:02 UTC
-* Number of recursive dependencies: 119
+* Version: 0.3.1
+* GitHub: https://github.com/langcog/wordbankr
+* Source code: https://github.com/cran/wordbankr
+* Date/Publication: 2020-11-13 23:10:02 UTC
+* Number of recursive dependencies: 97
-Run `cloud_details(, "scoper")` for more info
+Run `cloud_details(, "wordbankr")` for more info
@@ -2299,18 +25751,22 @@ Run `cloud_details(, "scoper")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/scoper/new/scoper.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wordbankr/new/wordbankr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘scoper/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘wordbankr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘scoper’ version ‘1.1.0’
+* this is package ‘wordbankr’ version ‘0.3.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'alakazam', 'shazam'
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2325,18 +25781,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/scoper/old/scoper.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wordbankr/old/wordbankr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘scoper/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘wordbankr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘scoper’ version ‘1.1.0’
+* this is package ‘wordbankr’ version ‘0.3.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'alakazam', 'shazam'
+...
+
+Packages suggested but not available for checking:
+ 'ggplot2', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2348,17 +25808,17 @@ Status: 1 ERROR
```
-# SCORPIUS
+# wpa
-* Version: 1.0.8
-* GitHub: https://github.com/rcannood/SCORPIUS
-* Source code: https://github.com/cran/SCORPIUS
-* Date/Publication: 2021-06-09 12:40:02 UTC
-* Number of recursive dependencies: 116
+* Version: 1.6.3
+* GitHub: https://github.com/microsoft/wpa
+* Source code: https://github.com/cran/wpa
+* Date/Publication: 2021-11-21 05:30:02 UTC
+* Number of recursive dependencies: 119
-Run `cloud_details(, "SCORPIUS")` for more info
+Run `cloud_details(, "wpa")` for more info
@@ -2367,20 +25827,22 @@ Run `cloud_details(, "SCORPIUS")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/SCORPIUS/new/SCORPIUS.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wpa/new/wpa.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘SCORPIUS/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘wpa/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘SCORPIUS’ version ‘1.0.8’
+* this is package ‘wpa’ version ‘1.6.3’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'dynwrap', 'ggplot2'
+...
+ 'proxy', 'ggwordcloud', 'data.table'
-Packages suggested but not available for checking: 'covr', 'testthat'
+Packages suggested but not available for checking:
+ 'knitr', 'extrafont', 'leiden', 'fst', 'flexdashboard', 'lmtest',
+ 'portes', 'sandwich'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2395,20 +25857,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/SCORPIUS/old/SCORPIUS.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wpa/old/wpa.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘SCORPIUS/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘wpa/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘SCORPIUS’ version ‘1.0.8’
+* this is package ‘wpa’ version ‘1.6.3’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Packages required but not available: 'dynwrap', 'ggplot2'
+...
+ 'proxy', 'ggwordcloud', 'data.table'
-Packages suggested but not available for checking: 'covr', 'testthat'
+Packages suggested but not available for checking:
+ 'knitr', 'extrafont', 'leiden', 'fst', 'flexdashboard', 'lmtest',
+ 'portes', 'sandwich'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2420,17 +25884,17 @@ Status: 1 ERROR
```
-# SimBIID
+# wrswoR
-* Version: 0.2.1
-* GitHub: https://github.com/tjmckinley/SimBIID
-* Source code: https://github.com/cran/SimBIID
-* Date/Publication: 2021-02-04 05:20:02 UTC
-* Number of recursive dependencies: 64
+* Version: 1.1.1
+* GitHub: https://github.com/krlmlr/wrswoR
+* Source code: https://github.com/cran/wrswoR
+* Date/Publication: 2020-07-26 18:20:02 UTC
+* Number of recursive dependencies: 159
-Run `cloud_details(, "SimBIID")` for more info
+Run `cloud_details(, "wrswoR")` for more info
@@ -2439,19 +25903,22 @@ Run `cloud_details(, "SimBIID")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/SimBIID/new/SimBIID.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wrswoR/new/wrswoR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘SimBIID/DESCRIPTION’ ... OK
-* this is package ‘SimBIID’ version ‘0.2.1’
+* using option ‘--no-manual’
+* checking for file ‘wrswoR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘wrswoR’ version ‘1.1.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘ggplot2’
+...
-Packages suggested but not available for checking: 'GGally', 'testthat'
+Packages suggested but not available for checking:
+ 'BatchExperiments', 'BiocManager', 'ggplot2', 'import', 'kimisc',
+ 'knitcitations', 'knitr', 'metap', 'microbenchmark', 'rmarkdown',
+ 'roxygen2', 'rticles', 'sampling', 'testthat', 'tikzDevice'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2466,19 +25933,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/SimBIID/old/SimBIID.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wrswoR/old/wrswoR.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘SimBIID/DESCRIPTION’ ... OK
-* this is package ‘SimBIID’ version ‘0.2.1’
+* using option ‘--no-manual’
+* checking for file ‘wrswoR/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘wrswoR’ version ‘1.1.1’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... ERROR
-Package required but not available: ‘ggplot2’
+...
-Packages suggested but not available for checking: 'GGally', 'testthat'
+Packages suggested but not available for checking:
+ 'BatchExperiments', 'BiocManager', 'ggplot2', 'import', 'kimisc',
+ 'knitcitations', 'knitr', 'metap', 'microbenchmark', 'rmarkdown',
+ 'roxygen2', 'rticles', 'sampling', 'testthat', 'tikzDevice'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2490,17 +25960,17 @@ Status: 1 ERROR
```
-# tigger
+# WRTDStidal
-* Version: 1.0.0
-* GitHub: NA
-* Source code: https://github.com/cran/tigger
-* Date/Publication: 2020-05-13 05:10:03 UTC
-* Number of recursive dependencies: 120
+* Version: 1.1.2
+* GitHub: https://github.com/fawda123/wtreg_for_estuaries
+* Source code: https://github.com/cran/WRTDStidal
+* Date/Publication: 2019-11-17 22:10:02 UTC
+* Number of recursive dependencies: 131
-Run `cloud_details(, "tigger")` for more info
+Run `cloud_details(, "WRTDStidal")` for more info
@@ -2509,18 +25979,22 @@ Run `cloud_details(, "tigger")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/tigger/new/tigger.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/WRTDStidal/new/WRTDStidal.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘tigger/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘WRTDStidal/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘tigger’ version ‘1.0.0’
-* package encoding: UTF-8
+* this is package ‘WRTDStidal’ version ‘1.1.2’
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Packages required but not available: 'alakazam', 'shazam'
+...
+
+Packages suggested but not available for checking:
+ 'doParallel', 'EGRET', 'plotly', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2535,18 +26009,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/tigger/old/tigger.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/WRTDStidal/old/WRTDStidal.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘tigger/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘WRTDStidal/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘tigger’ version ‘1.0.0’
-* package encoding: UTF-8
+* this is package ‘WRTDStidal’ version ‘1.1.2’
* checking package namespace information ... OK
* checking package dependencies ... ERROR
-Packages required but not available: 'alakazam', 'shazam'
+...
+
+Packages suggested but not available for checking:
+ 'doParallel', 'EGRET', 'plotly', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2558,17 +26036,17 @@ Status: 1 ERROR
```
-# tinyarray
+# wyz.code.testthat
-* Version: 2.2.6
-* GitHub: https://github.com/xjsun1221/tinyarray
-* Source code: https://github.com/cran/tinyarray
-* Date/Publication: 2021-09-14 06:40:02 UTC
-* Number of recursive dependencies: 206
+* Version: 1.1.20
+* GitHub: NA
+* Source code: https://github.com/cran/wyz.code.testthat
+* Date/Publication: 2021-10-06 06:50:02 UTC
+* Number of recursive dependencies: 51
-Run `cloud_details(, "tinyarray")` for more info
+Run `cloud_details(, "wyz.code.testthat")` for more info
@@ -2577,22 +26055,22 @@ Run `cloud_details(, "tinyarray")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/tinyarray/new/tinyarray.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wyz.code.testthat/new/wyz.code.testthat.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘tinyarray/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘wyz.code.testthat/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘tinyarray’ version ‘2.2.6’
+* this is package ‘wyz.code.testthat’ version ‘1.1.20’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-Packages required but not available:
- 'clusterProfiler', 'limma', 'org.Hs.eg.db'
Packages suggested but not available for checking:
- 'AnnoProbe', 'GEOquery', 'Biobase'
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2607,22 +26085,22 @@ Status: 1 ERROR
### CRAN
```
-* using log directory ‘/tmp/workdir/tinyarray/old/tinyarray.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/wyz.code.testthat/old/wyz.code.testthat.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘tinyarray/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘wyz.code.testthat/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘tinyarray’ version ‘2.2.6’
+* this is package ‘wyz.code.testthat’ version ‘1.1.20’
* package encoding: UTF-8
* checking package namespace information ... OK
...
-Packages required but not available:
- 'clusterProfiler', 'limma', 'org.Hs.eg.db'
Packages suggested but not available for checking:
- 'AnnoProbe', 'GEOquery', 'Biobase'
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
@@ -2634,17 +26112,17 @@ Status: 1 ERROR
```
-# vivid
+# xmrr
-* Version: 0.2.1
-* GitHub: NA
-* Source code: https://github.com/cran/vivid
-* Date/Publication: 2021-08-21 01:30:02 UTC
-* Number of recursive dependencies: 202
+* Version: 1.1.1
+* GitHub: https://github.com/Zanidean/xmrr
+* Source code: https://github.com/cran/xmrr
+* Date/Publication: 2020-06-08 21:20:03 UTC
+* Number of recursive dependencies: 69
-Run `cloud_details(, "vivid")` for more info
+Run `cloud_details(, "xmrr")` for more info
@@ -2653,27 +26131,27 @@ Run `cloud_details(, "vivid")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/vivid/new/vivid.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/xmrr/new/xmrr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘vivid/DESCRIPTION’ ... OK
-* this is package ‘vivid’ version ‘0.2.1’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘xmrr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘xmrr’ version ‘1.1.1’
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
- Error: Test failures
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘vivid.Rmd’ using ‘UTF-8’... OK
- ‘vividQStart.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 2 NOTEs
+Status: 1 ERROR
@@ -2683,44 +26161,44 @@ Status: 1 ERROR, 2 NOTEs
### CRAN
```
-* using log directory ‘/tmp/workdir/vivid/old/vivid.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/xmrr/old/xmrr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘vivid/DESCRIPTION’ ... OK
-* this is package ‘vivid’ version ‘0.2.1’
-* package encoding: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘xmrr/DESCRIPTION’ ... OK
+* checking extension type ... Package
+* this is package ‘xmrr’ version ‘1.1.1’
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
- Error: Test failures
- Execution halted
-* checking for unstated dependencies in vignettes ... OK
-* checking package vignettes in ‘inst/doc’ ... OK
-* checking running R code from vignettes ... NONE
- ‘vivid.Rmd’ using ‘UTF-8’... OK
- ‘vividQStart.Rmd’ using ‘UTF-8’... OK
-* checking re-building of vignette outputs ... SKIPPED
+
+Packages suggested but not available for checking:
+ 'testthat', 'knitr', 'rmarkdown'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 2 NOTEs
+Status: 1 ERROR
```
-# wrswoR
+# xpose.nlmixr
-* Version: 1.1.1
-* GitHub: https://github.com/krlmlr/wrswoR
-* Source code: https://github.com/cran/wrswoR
-* Date/Publication: 2020-07-26 18:20:02 UTC
-* Number of recursive dependencies: 134
+* Version: 0.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/xpose.nlmixr
+* Date/Publication: 2021-04-26 10:20:03 UTC
+* Number of recursive dependencies: 91
-Run `cloud_details(, "wrswoR")` for more info
+Run `cloud_details(, "xpose.nlmixr")` for more info
@@ -2729,27 +26207,24 @@ Run `cloud_details(, "wrswoR")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/wrswoR/new/wrswoR.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/xpose.nlmixr/new/xpose.nlmixr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘wrswoR/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘xpose.nlmixr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘wrswoR’ version ‘1.1.1’
+* this is package ‘xpose.nlmixr’ version ‘0.2.0’
* package encoding: UTF-8
* checking package namespace information ... OK
-...
-* checking for GNU extensions in Makefiles ... OK
-* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
-* checking use of PKG_*FLAGS in Makefiles ... OK
-* checking compiled code ... OK
-* checking examples ... OK
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'xpose', 'ggplot2', 'nlmixr', 'stringr', 'vpc'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
@@ -2759,44 +26234,41 @@ Status: 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/wrswoR/old/wrswoR.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/xpose.nlmixr/old/xpose.nlmixr.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘wrswoR/DESCRIPTION’ ... OK
+* using option ‘--no-manual’
+* checking for file ‘xpose.nlmixr/DESCRIPTION’ ... OK
* checking extension type ... Package
-* this is package ‘wrswoR’ version ‘1.1.1’
+* this is package ‘xpose.nlmixr’ version ‘0.2.0’
* package encoding: UTF-8
* checking package namespace information ... OK
-...
-* checking for GNU extensions in Makefiles ... OK
-* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
-* checking use of PKG_*FLAGS in Makefiles ... OK
-* checking compiled code ... OK
-* checking examples ... OK
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... OK
- Running ‘testthat.R’
+* checking package dependencies ... ERROR
+Packages required but not available:
+ 'xpose', 'ggplot2', 'nlmixr', 'stringr', 'vpc'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 NOTE
+Status: 1 ERROR
```
-# XPolaris
+# xspliner
-* Version: 1.0.1
-* GitHub: https://github.com/lhmrosso/XPolaris
-* Source code: https://github.com/cran/XPolaris
-* Date/Publication: 2021-06-17 07:50:09 UTC
-* Number of recursive dependencies: 89
+* Version: 0.0.4
+* GitHub: https://github.com/ModelOriented/xspliner
+* Source code: https://github.com/cran/xspliner
+* Date/Publication: 2019-09-25 20:20:02 UTC
+* Number of recursive dependencies: 182
-Run `cloud_details(, "XPolaris")` for more info
+Run `cloud_details(, "xspliner")` for more info
@@ -2805,27 +26277,27 @@ Run `cloud_details(, "XPolaris")` for more info
### Devel
```
-* using log directory ‘/tmp/workdir/XPolaris/new/XPolaris.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/xspliner/new/xspliner.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘XPolaris/DESCRIPTION’ ... OK
-* this is package ‘XPolaris’ version ‘1.0.1’
+* using option ‘--no-manual’
+* checking for file ‘xspliner/DESCRIPTION’ ... OK
+* this is package ‘xspliner’ version ‘0.0.4’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... ERROR
- Running ‘testthat.R’
-Running the tests in ‘tests/testthat.R’ failed.
-Complete output:
- > library(testthat)
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
+ 'ALEPlot', 'factorMerger', 'testthat', 'knitr', 'rmarkdown',
+ 'ResourceSelection', 'randomForest', 'e1071', 'caret', 'breakDown',
+ 'DALEX', 'xgboost', 'gridExtra', 'ISLR'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
@@ -2835,27 +26307,27 @@ Status: 1 ERROR, 1 NOTE
### CRAN
```
-* using log directory ‘/tmp/workdir/XPolaris/old/XPolaris.Rcheck’
-* using R version 4.0.3 (2020-10-10)
+* using log directory ‘/tmp/workdir/xspliner/old/xspliner.Rcheck’
+* using R version 4.1.1 (2021-08-10)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
-* using options ‘--no-manual --no-build-vignettes’
-* checking for file ‘XPolaris/DESCRIPTION’ ... OK
-* this is package ‘XPolaris’ version ‘1.0.1’
+* using option ‘--no-manual’
+* checking for file ‘xspliner/DESCRIPTION’ ... OK
+* this is package ‘xspliner’ version ‘0.0.4’
* package encoding: UTF-8
* checking package namespace information ... OK
-* checking package dependencies ... NOTE
+* checking package dependencies ... ERROR
...
-* checking for unstated dependencies in ‘tests’ ... OK
-* checking tests ... ERROR
- Running ‘testthat.R’
-Running the tests in ‘tests/testthat.R’ failed.
-Complete output:
- > library(testthat)
- Error in library(testthat) : there is no package called 'testthat'
- Execution halted
+ 'ALEPlot', 'factorMerger', 'testthat', 'knitr', 'rmarkdown',
+ 'ResourceSelection', 'randomForest', 'e1071', 'caret', 'breakDown',
+ 'DALEX', 'xgboost', 'gridExtra', 'ISLR'
+
+VignetteBuilder package required for checking but not installed: ‘knitr’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
* DONE
-Status: 1 ERROR, 1 NOTE
+Status: 1 ERROR
diff --git a/revdep/problems.md b/revdep/problems.md
index 9a2073633..6c8586eb9 100644
--- a/revdep/problems.md
+++ b/revdep/problems.md
@@ -1 +1,182 @@
-*Wow, no problems at all. :)*
\ No newline at end of file
+# cogmapr
+
+
+
+* Version: 0.9.2
+* GitHub: NA
+* Source code: https://github.com/cran/cogmapr
+* Date/Publication: 2021-11-20 16:20:02 UTC
+* Number of recursive dependencies: 113
+
+Run `cloud_details(, "cogmapr")` for more info
+
+
+
+## Newly broken
+
+* checking examples ... ERROR
+ ```
+ Running examples in ‘cogmapr-Ex.R’ failed
+ The error most likely occurred in:
+
+ > ### Name: RelationshipTest
+ > ### Title: Compare relationships weight between maps
+ > ### Aliases: RelationshipTest
+ >
+ > ### ** Examples
+ >
+ > project_name <- "a_new_project"
+ ...
+ 3. ├─tidyr::replace_na(., list(p.value = "NR"))
+ 4. └─tidyr:::replace_na.data.frame(., list(p.value = "NR"))
+ 5. └─vctrs::vec_assign(...)
+ 6. └─(function () ...
+ 7. └─vctrs::vec_default_cast(...)
+ 8. └─vctrs::stop_incompatible_cast(...)
+ 9. └─vctrs::stop_incompatible_type(...)
+ 10. └─vctrs:::stop_incompatible(...)
+ 11. └─vctrs:::stop_vctrs(...)
+ Execution halted
+ ```
+
+* checking tests ... ERROR
+ ```
+ Running ‘testthat.R’
+ Running the tests in ‘tests/testthat.R’ failed.
+ Last 13 lines of output:
+ 4. ├─cogmapr::RelationshipTest(project, units = c("Belgium", "Québec"))
+ 5. │ └─`%>%`(...)
+ 6. ├─tidyr::replace_na(., list(p.value = "NR"))
+ 7. └─tidyr:::replace_na.data.frame(., list(p.value = "NR"))
+ 8. └─vctrs::vec_assign(...)
+ 9. └─(function () ...
+ 10. └─vctrs::vec_default_cast(...)
+ 11. └─vctrs::stop_incompatible_cast(...)
+ 12. └─vctrs::stop_incompatible_type(...)
+ 13. └─vctrs:::stop_incompatible(...)
+ 14. └─vctrs:::stop_vctrs(...)
+
+ [ FAIL 1 | WARN 0 | SKIP 0 | PASS 17 ]
+ Error: Test failures
+ Execution halted
+ ```
+
+# dartR
+
+
+
+* Version: 1.9.9.1
+* GitHub: NA
+* Source code: https://github.com/cran/dartR
+* Date/Publication: 2021-05-28 17:10:05 UTC
+* Number of recursive dependencies: 195
+
+Run `cloud_details(, "dartR")` for more info
+
+
+
+## Newly broken
+
+* checking examples ... ERROR
+ ```
+ Running examples in ‘dartR-Ex.R’ failed
+ The error most likely occurred in:
+
+ > ### Name: gl.pcoa.plot
+ > ### Title: Bivariate plot of the results of an ordination generated using
+ > ### gl.pcoa()
+ > ### Aliases: gl.pcoa.plot
+ >
+ > ### ** Examples
+ >
+ ...
+ While waiting, returning ggplot compliant object
+ Completed: gl.pcoa.plot
+ Starting gl.pcoa.plot
+ Displaying an interactive plot
+ NOTE: Returning the ordination scores, not a ggplot2 compatable object
+ Ignore any warning on the number of shape categories
+ Preparing plot .... please wait
+ Error: `gather_()` was deprecated in tidyr 1.2.0 and is now defunct.
+ Please use `gather()` instead.
+ Execution halted
+ ```
+
+# InjurySeverityScore
+
+
+
+* Version: 0.0.0.2
+* GitHub: https://github.com/dajuntian/InjurySeverityScore
+* Source code: https://github.com/cran/InjurySeverityScore
+* Date/Publication: 2019-05-19 04:11:18 UTC
+* Number of recursive dependencies: 20
+
+Run `cloud_details(, "InjurySeverityScore")` for more info
+
+
+
+## Newly broken
+
+* checking LazyData ... NOTE
+ ```
+ 'LazyData' is specified without a 'data' directory
+ ```
+
+## Newly fixed
+
+* checking package dependencies ... ERROR
+ ```
+ Package required but not available: ‘tidyr’
+
+ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+ manual.
+ ```
+
+# modeltime.resample
+
+
+
+* Version: 0.2.0
+* GitHub: https://github.com/business-science/modeltime.resample
+* Source code: https://github.com/cran/modeltime.resample
+* Date/Publication: 2021-03-14 20:40:07 UTC
+* Number of recursive dependencies: 212
+
+Run `cloud_details(, "modeltime.resample")` for more info
+
+
+
+## Newly broken
+
+* checking tests ... ERROR
+ ```
+ Running ‘testthat.R’
+ Running the tests in ‘tests/testthat.R’ failed.
+ Last 13 lines of output:
+ 1. ├─m750_models_resample %>% plot_modeltime_resamples(.interactive = TRUE) test-modeltime_fit_resamples.R:116:4
+ 2. └─modeltime.resample::plot_modeltime_resamples(., .interactive = TRUE)
+ 3. ├─plotly::ggplotly(g)
+ 4. └─plotly:::ggplotly.ggplot(g)
+ 5. └─plotly::gg2list(...)
+ 6. └─plotly:::layers2traces(data, prestats_data, layout, plot)
+ 7. ├─plotly::to_basic(...)
+ 8. └─plotly:::to_basic.GeomVline(...)
+ 9. └─tidyr::gather_(...)
+ 10. └─lifecycle::deprecate_stop("1.2.0", "gather_()", "gather()")
+ 11. └─lifecycle:::deprecate_stop0(msg)
+
+ [ FAIL 1 | WARN 0 | SKIP 0 | PASS 16 ]
+ Error: Test failures
+ Execution halted
+ ```
+
+## In both
+
+* checking dependencies in R code ... NOTE
+ ```
+ Namespaces in Imports field not imported from:
+ ‘crayon’ ‘dials’ ‘glue’ ‘parsnip’
+ All declared Imports should be used.
+ ```
+