About Anaconda Help Download Anaconda

kite-eating-tree / packages

Package Name Access Summary Updated
r-vars public Estimation, lag selection, diagnostic testing, forecasting, causality analysis, forecast error variance decomposition and impulse response functions of VAR models and estimation of SVAR and SVEC models. 2023-06-16
r-sandwich public Model-robust standard error estimators for cross-sectional, time series, clustered, panel, and longitudinal data. 2023-06-16
r-rvest public Wrappers around the 'xml2' and 'httr' packages to make it easy to download, then manipulate, HTML and XML. 2023-06-16
r-rstan public User-facing R functions are provided to parse, compile, test, estimate, and analyze Stan models by accessing the header-only Stan library provided by the 'StanHeaders' package. The Stan project develops a probabilistic programming language that implements full Bayesian statistical inference via Markov Chain Monte Carlo, rough Bayesian inference via 'variational' approximation, and (optionally penalized) maximum likelihood estimation via optimization. In all three cases, automatic differentiation is used to quickly and accurately evaluate gradients without burdening the user with the need to derive the partial derivatives. 2023-06-16
r-zoo public An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics. 2023-06-16
r-xml2 public Work with XML files using a simple, consistent interface. Built on top of the 'libxml2' C library. 2023-06-16
r-rzmq public Interface to the 'ZeroMQ' lightweight messaging kernel (see <http://www.zeromq.org/> for more information). 2023-06-16
r-rstudioapi public Access the RStudio API (if available) and provide informative error messages when it's not. 2023-06-16
r-rprojroot public Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a directory that matches a certain criterion, e.g., it contains a certain regular file. 2023-06-16
rwinlib public No Summary 2023-06-16
r-viridislite public Port of the new 'matplotlib' color maps ('viridis' - the default -, 'magma', 'plasma' and 'inferno') to 'R'. 'matplotlib' <http://matplotlib.org/ > is a popular plotting library for 'python'. These color maps are designed in such a way that they will analytically be perfectly perceptually-uniform, both in regular form and also when converted to black-and-white. They are also designed to be perceived by readers with the most common form of color blindness. This is the 'lite' version of the more complete 'viridis' package that can be found at <https://cran.r-project.org/package=viridis>. 2023-06-16
r-urca public Unit root and cointegration tests encountered in applied econometric analysis are implemented. 2023-06-16
r-sparsem public Some basic linear algebra functionality for sparse matrices is provided: including Cholesky decomposition and backsolving as well as standard R subsetting and Kronecker products. 2023-06-16
r-xml public Many approaches for both reading and creating XML (and HTML) documents (including DTDs), both local and accessible via HTTP or FTP. Also offers access to an 'XPath' "interpreter". 2023-06-16
r-utf8 public Processing and printing 'UTF-8' encoded international text (Unicode). Functions to input, validate, normalize, encode, format, and display. 2023-06-16
r-ttr public Functions and data to construct technical trading rules with R. 2023-06-16
r-tm public A framework for text mining applications within R. 2023-06-16
r-tkrgl public TK widget tools for rgl package 2023-06-16
r-tidytext public Text mining for word processing and sentiment analysis using 'dplyr', 'ggplot2', and other tidy tools. 2023-06-16
r-tidyr public An evolution of 'reshape2'. It's designed specifically for data tidying (not general reshaping or aggregating) and works well with 'dplyr' data pipelines. 2023-06-16
r-threejs public Create interactive 3D scatter plots, network plots, and globes using the 'three.js' visualization library (<https://threejs.org>). 2023-06-16
r-tfruns public Create and manage unique directories for each 'TensorFlow' training run. Provides a unique, time stamped directory for each run along with functions to retrieve the directory of the latest run or latest several runs. 2023-06-16
r-stringi public Allows for fast, correct, consistent, portable, as well as convenient character string/text processing in every locale and any native encoding. Owing to the use of the ICU library, the package provides R users with platform-independent functions known to Java, Perl, Python, PHP, and Ruby programmers. Available features include: pattern searching (e.g., with ICU Java-like regular expressions or the Unicode Collation Algorithm), random string generation, case mapping, string transliteration, concatenation, Unicode normalization, date-time formatting and parsing, etc. 2023-06-16
r-stabledist public Density, Probability and Quantile functions, and random number generation for (skew) stable distributions, using the parametrizations of Nolan. 2023-06-16
r-seacarb public Calculates parameters of the seawater carbonate system and assists the design of ocean acidification perturbation experiments. 2023-06-16
r-withr public A set of functions to run code 'with' safely and temporarily modified global state. Many of these functions were originally a part of the 'devtools' package, this provides a simple package with limited dependencies to provide access to these functions. 2023-06-16
r-weatherdata public Functions that help in fetching weather data from websites. Given a location and a date range, these functions help fetch weather data (temperature, pressure etc.) for any weather related analysis. 2023-06-16
r-testit public Provides two convenience functions assert() and test_pkg() to facilitate testing R packages. 2023-06-16
r-runit public R functions implementing a standard Unit Testing framework, with additional code inspection and report generation tools 2023-06-16
r-rsqlite public Embeds the 'SQLite' database engine in R and provides an interface compliant with the 'DBI' package. The source for the 'SQLite' engine (version 3.8.8.2) is included. 2023-06-16
r-uuid public Tools for generating and handling of UUIDs (Universally Unique Identifiers). 2023-06-16
r-units public Support for measurement units in R vectors, matrices and arrays: automatic propagation, conversion, derivation and simplification of units; raising errors in case of unit incompatibility. Compatible with the POSIXct, Date and difftime classes. Uses the UNIDATA udunits library and unit database for unit compatibility checking and conversion. 2023-06-16
r-stringdist public Implements an approximate string matching version of R's native 'match' function. Can calculate various string distances based on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment), qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro, Jaro-Winkler). An implementation of soundex is provided as well. Distances can be computed between character vectors while taking proper care of encoding or between integer vectors representing generic sequences. 2023-06-16
r-rversions public Query the main 'R' 'SVN' repository to find the versions 'r-release' and 'r-oldrel' refer to, and also all previous 'R' versions and their release dates. 2023-06-16
r-rjava public Low-level interface to Java VM very much like .C/.Call and friends. Allows creation of objects, calling methods and accessing fields. 2023-06-16
r-rappdirs public An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' (\url{https://github.com/ActiveState/appdirs}) to R. 2023-06-16
r-pryr public Useful tools to pry back the covers of R and understand the language at a deeper level. 2023-06-16
r-plotly public Easily translate 'ggplot2' graphs to an interactive web-based version and/or create custom web-based visualizations directly from R. Once uploaded to a 'plotly' account, 'plotly' graphs (and the data behind them) can be viewed and modified in a web browser. 2023-06-16
r-pbdzmq public 'ZeroMQ' is a well-known library for high-performance asynchronous messaging in scalable, distributed applications. This package provides high level R wrapper functions to easily utilize 'ZeroMQ'. We mainly focus on interactive client/server programming frameworks. For convenience, a minimal 'ZeroMQ' library (4.2.2) is shipped with 'pbdZMQ', which can be used if no system installation of 'ZeroMQ' is available. A few wrapper functions compatible with 'rzmq' are also provided. 2023-06-16
r-odbc public A DBI-compatible interface to ODBC databases. 2023-06-16
r-nycflights13 public Airline on-time data for all flights departing NYC in 2013. Also includes useful 'metadata' on airlines, airports, weather, and planes. 2023-06-16
r-modelr public Functions for modelling that help you seamlessly integrate modelling into a pipeline of data manipulation and visualisation. 2023-06-16
r-modelmetrics public Collection of metrics for evaluating models written in C++ using 'Rcpp'. 2023-06-16
r-matrix public A rich hierarchy of matrix classes, including triangular, symmetric, and diagonal matrices, both dense and sparse and with pattern, logical and numeric entries. Numerous methods for and operations on these matrices, using 'LAPACK' and 'SuiteSparse' libraries. 2023-06-16
r-lintr public Checks adherence to a given style, syntax errors and possible semantic issues. Supports on the fly checking of R code edited with 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text' and 'Atom'. 2023-06-16
r-leaps public Regression subset selection, including exhaustive search. 2023-06-16
r-latticeextra public Building on the infrastructure provided by the lattice package, this package provides several new high-level functions and methods, as well as additional utilities such as panel and axis annotation functions. 2023-06-16
r-labeling public Provides a range of axis labeling algorithms 2023-06-16
r-irlba public Fast and memory efficient methods for truncated singular value decomposition and principal components analysis of large sparse and dense matrices. 2023-06-16
r-gtools public Functions to assist in R programming, including: - assist in developing, updating, and maintaining R and R packages ('ask', 'checkRVersion', 'getDependencies', 'keywords', 'scat'), - calculate the logit and inverse logit transformations ('logit', 'inv.logit'), - test if a value is missing, empty or contains only NA and NULL values ('invalid'), - manipulate R's .Last function ('addLast'), - define macros ('defmacro'), - detect odd and even integers ('odd', 'even'), - convert strings containing non-ASCII characters (like single quotes) to plain ASCII ('ASCIIfy'), - perform a binary search ('binsearch'), - sort strings containing both numeric and character components ('mixedsort'), - create a factor variable from the quantiles of a continuous variable ('quantcut'), - enumerate permutations and combinations ('combinations', 'permutation'), - calculate and convert between fold-change and log-ratio ('foldchange', 'logratio2foldchange', 'foldchange2logratio'), - calculate probabilities and generate random numbers from Dirichlet distributions ('rdirichlet', 'ddirichlet'), - apply a function over adjacent subsets of a vector ('running'), - modify the TCP\_NODELAY ('de-Nagle') flag for socket objects, - efficient 'rbind' of data frames, even if the column names don't match ('smartbind'), - generate significance stars from p-values ('stars.pval'), - convert characters to/from ASCII codes. 2023-06-16

© 2024 Anaconda, Inc. All Rights Reserved. (v4.0.6) Legal | Privacy Policy