Examples: visualization, C++, networks, data cleaning, html widgets, ropensci.

Found 115 packages in 0.01 seconds

xopen — by Gábor Csárdi, 2 years ago

Open System Files, 'URLs', Anything

Cross platform solution to open files, directories or 'URLs' with their associated programs.

praise — by Gabor Csardi, 10 years ago

Praise Users

Build friendly R packages that praise their users if they have done something good, or they just need it to feel better.

secret — by Gábor Csárdi, 6 years ago

Share Sensitive Information in R Packages

Allow sharing sensitive information, for example passwords, 'API' keys, etc., in R packages, using public key cryptography.

pkgdepends — by Gábor Csárdi, 8 months ago

Package Dependency Resolution and Downloads

Find recursive dependencies of 'R' packages from various sources. Solve the dependencies to obtain a consistent set of packages to install. Download packages, and install them. It supports packages on 'CRAN', 'Bioconductor' and other 'CRAN-like' repositories, 'GitHub', package 'URLs', and local package trees and files. It caches metadata and package files via the 'pkgcache' package, and performs all 'HTTP' requests, downloads, builds and installations in parallel. 'pkgdepends' is the workhorse of the 'pak' package.

available — by Gábor Csárdi, 4 years ago

Check if the Title of a Package is Available, Appropriate and Interesting

Check if a given package name is available to use. It checks the name's validity. Checks if it is used on 'GitHub', 'CRAN' and 'Bioconductor'. Checks for unintended meanings by querying 'Wiktionary' and Wikipedia.

urlchecker — by Gábor Csárdi, 4 years ago

Run CRAN URL Checks from Older R Versions

Provide the URL checking tools available in R 4.1+ as a package for earlier versions of R. Also uses concurrent requests so can be much faster than the serial versions.

cranlike — by Gábor Csárdi, 2 years ago

Tools for 'CRAN'-Like Repositories

A set of functions to manage 'CRAN'-like repositories efficiently.

disposables — by Gábor Csárdi, 9 years ago

Create Disposable R Packages for Testing

Create disposable R packages for testing. You can create, install and load multiple R packages with a single function call, and then unload, uninstall and destroy them with another function call. This is handy when testing how some R code or an R package behaves with respect to other packages.

liteq — by Gábor Csárdi, 7 years ago

Lightweight Portable Message Queue Using 'SQLite'

Temporary and permanent message queues for R. Built on top of 'SQLite' databases. 'SQLite' provides locking, and makes it possible to detect crashed consumers. Crashed jobs can be automatically marked as "failed", or put in the queue again, potentially a limited number of times.

rstack — by Gábor Csárdi, 2 years ago

Stack Data Type as an 'R6' Class

An extremely simple stack data type, implemented with 'R6' classes. The size of the stack increases as needed, and the amortized time complexity is O(1). The stack may contain arbitrary objects.