r-leaflet
|
public |
Create and customize interactive maps using the 'Leaflet' JavaScript library and the 'htmlwidgets' package. These maps can be used directly from the R console, from 'RStudio', in Shiny apps and R Markdown documents.
|
2023-06-16 |
r-jpeg
|
public |
This package provides an easy and simple way to read, write and display bitmap images stored in the JPEG format. It can read and write both files and in-memory raw vectors.
|
2023-06-16 |
r-iterators
|
public |
Support for iterators, which allow a programmer to traverse through all the elements of a vector, list, or other collection of data.
|
2023-06-16 |
r-hmisc
|
public |
Contains many functions useful for data analysis, high-level graphics, utility operations, functions for computing sample size and power, importing and annotating datasets, imputing missing values, advanced table making, variable clustering, character string manipulation, conversion of R objects to LaTeX and html code, and recoding variables.
|
2023-06-16 |
r-evaluate
|
public |
Parsing and evaluation tools that make it easy to recreate the command line behaviour of R.
|
2023-06-16 |
r-bindr
|
public |
Provides a simple interface for creating active bindings where the bound function accepts additional arguments.
|
2023-06-16 |
r-assertthat
|
public |
assertthat is an extension to stopifnot() that makes it easy to declare the pre and post conditions that you code should satisfy, while also producing friendly error messages so that your users know what they've done wrong.
|
2023-06-16 |
nlopt-static
|
public |
nonlinear optimization library
|
2023-06-16 |
r-rocr
|
public |
ROC graphs, sensitivity/specificity curves, lift charts, and precision/recall plots are popular examples of trade-off visualizations for specific pairs of performance measures. ROCR is a flexible tool for creating cutoff-parameterized 2D performance curves by freely combining two from over 25 performance measures (new performance measures can be added using a standard interface). Curves from different cross-validation or bootstrapping runs can be averaged by different methods, and standard deviations, standard errors or box plots can be used to visualize the variability across the runs. The parameterization can be visualized by printing cutoff values at the corresponding curve positions, or by coloring the curve according to cutoff. All components of a performance plot can be quickly adjusted using a flexible parameter dispatching mechanism. Despite its flexibility, ROCR is easy to use, with only three commands and reasonable default values for all optional parameters.
|
2023-06-16 |
r-rclient-broken
|
public |
A free, community-supported, data science tool for high performance analytics
|
2023-06-16 |
r-mlmrev
|
public |
Data and examples from a multilevel modelling software review as well as other well-known data sets from the multilevel modelling literature.
|
2023-06-16 |
r-miniui
|
public |
Provides UI widget and layout functions for writing Shiny apps that work well on small screens.
|
2023-06-16 |
r-lmtest
|
public |
A collection of tests, data sets, and examples for diagnostic checking in linear regression models. Furthermore, some generic tools for inference in parametric models are provided.
|
2023-06-16 |
r-lahman
|
public |
Provides the tables from the 'Sean Lahman Baseball Database' as a set of R data.frames. It uses the data on pitching, hitting and fielding performance and other tables from 1871 through 2015, as recorded in the 2016 version of the database.
|
2023-06-16 |
r-kernlab
|
public |
Kernel-based machine learning methods for classification, regression, clustering, novelty detection, quantile regression and dimensionality reduction. Among other methods 'kernlab' includes Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes and a QP solver.
|
2023-06-16 |
r-gower
|
public |
Compute Gower's distance (or similarity) coefficient between records. Compute the top-n matches between records. Core algorithms are executed in parallel on systems supporting OpenMP.
|
2023-06-16 |
r-glue
|
public |
An implementation of interpreted string literals, inspired by Python's Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/> and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted String Literals <https://docs.julialang.org/en/stable/manual/strings/#triple-quoted-string-literals>.
|
2023-06-16 |
r-git2r
|
public |
Interface to the 'libgit2' library, which is a pure C implementation of the 'Git' core methods. Provides access to 'Git' repositories to extract data and running some basic 'Git' commands.
|
2023-06-16 |
r-fwdselect
|
public |
A simple method to select the best model or best subset of variables using different types of data (binary, Gaussian or Poisson) and applying it in different contexts (parametric or non-parametric).
|
2023-06-16 |
r-dplyr
|
public |
A fast, consistent tool for working with data frame like objects, both in memory and out of memory.
|
2023-06-16 |
r-ctv
|
public |
Infrastructure for task views to CRAN-style repositories: Querying task views and installing the associated packages (client-side tools), generating HTML pages and storing task view information in the repository (server-side tools).
|
2023-06-16 |
r-classint
|
public |
Selected commonly used methods for choosing univariate class intervals for mapping or other graphics purposes.
|
2023-06-16 |
r-bit64
|
public |
Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- active data exploration and manipulation and optionally leverage caching.
|
2023-06-16 |
r-bit
|
public |
bitmapped vectors of booleans (no NAs), coercion from and to logicals, integers and integer subscripts; fast boolean operators and fast summary statistics. With 'bit' vectors you can store true binary booleans {FALSE,TRUE} at the expense of 1 bit only, on a 32 bit architecture this means factor 32 less RAM and ~ factor 32 more speed on boolean operations. Due to overhead of R calls, actual speed gain depends on the size of the vector: expect gains for vectors of size > 10000 elements. Even for one-time boolean operations it can pay-off to convert to bit, the pay-off is obvious, when such components are used more than once. Reading from and writing to bit is approximately as fast as accessing standard logicals - mostly due to R's time for memory allocation. The package allows to work with pre-allocated memory for return values by calling .Call() directly: when evaluating the speed of C-access with pre-allocated vector memory, coping from bit to logical requires only 70% of the time for copying from logical to logical; and copying from logical to bit comes at a performance penalty of 150%. the package now contains further classes for representing logical selections: 'bitwhich' for very skewed selections and 'ri' for selecting ranges of values for chunked processing. All three index classes can be used for subsetting 'ff' objects (ff-2.1-0 and higher).
|
2023-06-16 |
r-backports
|
public |
Implementations of functions which have been introduced in R since version 3.0.0. The backports are conditionally exported which results in R resolving the function names to the version shipped with R (if available) and uses the implemented backports as fallback. This way package developers can make use of the new functions without worrying about the minimum required R version.
|
2023-06-16 |
r-ape
|
public |
Functions for reading, writing, plotting, and manipulating phylogenetic trees, analyses of comparative data in a phylogenetic framework, ancestral character analyses, analyses of diversification and macroevolution, computing distances from DNA sequences, reading and writing nucleotide sequences as well as importing from BioConductor, and several tools such as Mantel's test, generalized skyline plots, graphical exploration of phylogenetic data (alex, trex, kronoviz), estimation of absolute evolutionary rates and clock-like trees using mean path lengths and penalized likelihood, dating trees with non-contemporaneous sequences, translating DNA into AA sequences, and assessing sequence alignments. Phylogeny estimation can be done with the NJ, BIONJ, ME, MVR, SDM, and triangle methods, and several methods handling incomplete distance matrices (NJ*, BIONJ*, MVR*, and the corresponding triangle method). Some functions call external applications (PhyML, Clustal, T-Coffee, Muscle) whose results are returned into R.
|
2023-06-16 |
r-rook
|
public |
This package contains the Rook specification and convenience software for building and running Rook applications. To get started, be sure and read the 'Rook' help file first.
|
2023-06-16 |
r-robustbase
|
public |
"Essential" Robust Statistics. Tools allowing to analyze data with robust methods. This includes regression methodology including model selections and multivariate statistics where we strive to cover the book "Robust Statistics, Theory and Methods" by 'Maronna, Martin and Yohai'; Wiley 2006.
|
2023-06-16 |
r-repr
|
public |
String and binary representations of objects for several formats / mime types.
|
2023-06-16 |
r-raster
|
public |
Reading, writing, manipulating, analyzing and modeling of gridded spatial data. The package implements basic and high-level functions. Processing of very large files is supported.
|
2023-06-16 |
r-randomforest
|
public |
Classification and regression based on a forest of trees using random inputs.
|
2023-06-16 |
r-quantmod
|
public |
Specify, build, trade, and analyse quantitative financial trading strategies.
|
2023-06-16 |
r-mvtnorm
|
public |
Computes multivariate normal and t probabilities, quantiles, random deviates and densities.
|
2023-06-16 |
r-profilemodel
|
public |
profileModel provides tools that can be used to calculate, evaluate, plot and use for inference the profiles of *arbitrary* inference functions for *arbitrary* 'glm'-like fitted models with linear predictors.
|
2023-06-16 |
r-markdown
|
public |
Provides R bindings to the 'Sundown' 'Markdown' rendering library (https://github.com/vmg/sundown). 'Markdown' is a plain-text formatting syntax that can be converted to 'XHTML' or other formats. See http://en.wikipedia.org/wiki/Markdown for more information about 'Markdown'.
|
2023-06-16 |
r-processx
|
public |
Portable tools to run system processes in the background. It can check if a background process is running; wait on a background process to finish; get the exit status of finished processes; kill background processes and their children; restart processes. It can read the standard output and error of the processes, using non-blocking connections. 'processx' can poll a process for standard output or error, with a timeout. It can also poll several processes at once.
|
2023-06-16 |
r-lazyeval
|
public |
An alternative approach to non-standard evaluation using formulas. Provides a full implementation of LISP style 'quasiquotation', making it easier to generate code with other code.
|
2023-06-16 |
r-pool
|
public |
Enables the creation of object pools, which make it less computationally expensive to fetch a new object. Currently the only supported pooled objects are 'DBI' connections.
|
2023-06-16 |
r-janeaustenr
|
public |
Full texts for Jane Austen's 6 completed novels, ready for text analysis. These novels are "Sense and Sensibility", "Pride and Prejudice", "Mansfield Park", "Emma", "Northanger Abbey", and "Persuasion".
|
2023-06-16 |
r-numderiv
|
public |
Methods for calculating (usually) accurate numerical first and second order derivatives. Accurate calculations are done using 'Richardson''s' extrapolation or, when applicable, a complex step derivative is available. A simple difference method is also provided. Simple difference is (usually) less accurate but is much quicker than 'Richardson''s' extrapolation and provides a useful cross-check. Methods are provided for real scalar and vector valued functions.
|
2023-06-16 |
r-htmlwidgets
|
public |
A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown' documents, and 'Shiny' web applications.
|
2023-06-16 |
r-misctools
|
public |
Miscellaneous small tools and utilities. Many of them facilitate the work with matrices, e.g. inserting rows or columns, creating symmetric matrices, or checking for semidefiniteness. Other tools facilitate the work with regression models, e.g. extracting the standard errors, obtaining the number of (estimated) parameters, or calculating R-squared values.
|
2023-06-16 |
r-functional
|
public |
Curry, Compose, and other higher-order functions
|
2023-06-16 |
r-microbenchmark
|
public |
Provides infrastructure to accurately measure and compare the execution time of R expressions.
|
2023-06-16 |
r-formula
|
public |
Infrastructure for extended formulas with multiple parts on the right-hand side and/or multiple responses on the left-hand side (see <DOI:10.18637/jss.v034.i01>).
|
2023-06-16 |
r-maxlik
|
public |
Functions for Maximum Likelihood (ML) estimation and non-linear optimization, and related tools. It includes a unified way to call different optimizers, and classes and methods to handle the results from the ML viewpoint. It also includes a number of convenience tools for testing and developing your own models.
|
2023-06-16 |
r-matrixmodels
|
public |
Modelling with sparse and dense 'Matrix' matrices, using modular prediction and response module classes.
|
2023-06-16 |
r-foreach
|
public |
Support for the foreach looping construct. Foreach is an idiom that allows for iterating over elements in a collection, without the use of an explicit loop counter. This package in particular is intended to be used for its return value, rather than for its side effects. In that sense, it is similar to the standard lapply function, but doesn't require the evaluation of a function. Using foreach without side effects also facilitates executing the loop in parallel.
|
2023-06-16 |
r-httpuv
|
public |
Provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc. (See LICENSE file for libuv and http-parser license information.)
|
2023-06-16 |
r-dichromat
|
public |
Collapse red-green or green-blue distinctions to simulate the effects of different types of color-blindness.
|
2023-06-16 |