R Under development (unstable) (2026-01-07 r89288 ucrt) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > #' script_path <- rstudioapi::getActiveDocumentContext()$path > #' print(script_path) > #' working_directory <- dirname(dirname(script_path)) > #' setwd(working_directory) > #' > #' pkgdown::build_site() > #' > #' devtools::document() > #' > #' devtools::build_manual() > #' > #' devtools::build() > #' devtools::install() > #' devtools::check(manual = TRUE) > #' > #' a <- devtools::spell_check(vignettes = TRUE, use_wordlist = TRUE) > #' a > #' a[1] > #' > #' devtools::check_rhub() > #' > #' devtools::check_win_devel() > #' > #' devtools::release() > #' devtools::submit_cran() > #' > #' > #' NEWS.md > #' DESCRIPTION > #' cran-comments.md > #' > #' > #' pack <- available.packages() > #' > #' which(rownames(pack) == "Qval") > #' > #' > #' library(cranlogs) > #' downloads <- cran_downloads(packages = "Qval", from = "2024-08-01", to = "2025-10-30") > #' print(downloads) > #' sum(downloads$count) > #' > #' > > proc.time() user system elapsed 0.17 0.04 0.21