Package narray. January 28, 2018

Size: px
Start display at page:

Download "Package narray. January 28, 2018"

Transcription

1 Package narray January 28, 2018 Title Subset- And Name-Aware Array Utility Functions Version Author Michael Schubert Maintainer Michael Schubert Stacking arrays according to dimension names, subset-aware splitting and mapping of functions, intersecting arbitrary dimensions, converting to and from data.frames, and many other helper functions. URL BugReports Depends R (>= 3.0.2) Imports reshape2, stats, stringr, utils License Apache License (== 2.0) file LICENSE LazyData true Encoding UTF-8 Suggests knitr, testthat VignetteBuilder knitr RoygenNote NeedsCompilation no Repository CRAN Date/Publication :13:00 UTC R topics documented: bind collect construct dim dimnames

2 2 bind _if filter flatten guess_structure intersect intersect_list lambda like map map_simple mask match melt named_dots rep restore_null_dimnames split stack subset translate vectors_to_row_or_col which %or% Inde 17 bind Binds arrays together disregarding names Binds arrays together disregarding names bind(..., = length(dim(arraylist[[1]])) + 1)... N-dimensional arrays, or a list thereof Along which ais to bind them together (default: new ais) A joined array

3 collect 3 collect Converts a logical matri to a list of character vectors This currently only supports with only one non-zero element collect(, = 2) A logical matri Which ais to spread mask on A character vector or list thereof construct A wrapper around reshape2::acast using a more intuitive formula synta The construct() function can be called either with the data.frame as the first argument or the formula and then specify data=<data.frame> construct(data, formula = guess_structure(data), fill = NA, name_aes = TRUE) data A data frame formula A formula: value ~ ais1 [+ ais2 + ais n..] fill name_aes A structured array to fill array with if undefined Keep column names of data as ais names

4 4 dimnames dim base::dim, but returning 1 for vector base::dim, but returning 1 for vector dim() Object to get dimensions on dimnames Return dimension names of an array respecting the number of dimensions Act on each element if is a list dimnames(, = TRUE, null_as_integer = FALSE, =!identical(, TRUE)) An n-dimensional array Limit to dimension (default: all) null_as_integer Whether nameless dimensions should be NULL or numbered Drop list of only one ais requested (default: if not returning all dimensions) A list of dimension names with length length(ndim(x))

5 _if 5 _if Drop unused dims if flag is TRUE Drop unused dims if flag is TRUE _if(, flag) flag An array object Whether to unused dimensions The object in full or with ped dimensions filter Function to discard subsets of an array (NA or ) Function to discard subsets of an array (NA or ) filter(x,, FUN, subsets = base::rep(1, dim(x)[]), na.rm = FALSE) X FUN subsets na.rm An n-dimensional array Along which ais to apply FUN Function to apply, needs to return TRUE (keep) or FALSE Subsets that should be used when applying FUN Whether to omit columns and rows with NAs An array where filtered values are NA or ped

6 6 guess_structure flatten Flattens an array an ais Flattens an array an ais flatten(, = -1, name_sep = NA) name_sep Array Along which ais to bind them together (default: last) Which character to use for naming new arrays [default: NA, do not touch names] An array with n-1 dimensions guess_structure Infer array structure from data.frame Infer array structure from data.frame guess_structure(df, verbose = TRUE) df verbose A data.frame with ordered aes, value field last Print message with inferred structure (default: TRUE) A formula describing this structure

7 intersect 7 intersect Intersects all passed arrays a give dimension, and modifies them in place TODO: accept =c(1,2,1,1...) [maybe list w/ vectors as well?] TODO: accept data=env/list arg? [sig-comb/drug-tissue/assocs.r#62-65] intersect(..., = 1, envir = parent.frame(), = FALSE, fail_if_empty = TRUE)... Arrays that should be intersected The ais which to intersect envir A list or environment to act upon Drop unused dimensions on result fail_if_empty Stop if intersection yields empty set intersect_list Intersects a lits of arrays for common dimension names Intersects a lits of arrays for common dimension names intersect_list(l., = 1, = FALSE, fail_if_empty = TRUE) l. List of arrays to perform operations on The ais which to intersect Drop unused dimensions on result fail_if_empty Stop if intersection yields empty set

8 8 like lambda Lambda synta for array iteration Lambda synta for array iteration lambda(fml,, group = c(), simplify = TRUE, envir = parent.frame()) fml group simplify envir A call prefied with a tilde A named vector which objects to subset (eg: c(=1)) Not implemented Return array instead of inde+result if scalar Environment where variables can be found like Reshapes to be like like, including dimension names Reshapes to be like like, including dimension names like(, like) like An n-dimensional array An n-dimensional array whose form X should inherit An array with values of X and structure of like

9 map 9 map Maps a function an array preserving its structure Maps a function an array preserving its structure map(x,, FUN, subsets = base::rep(1, dim(x)[]), = TRUE,...) X An n-dimensional array Along which ais to apply the function FUN A function that maps a vector to the same length or a scalar subsets Whether to apply FUN the whole ais or subsets thereof Remove unused dimensions after mapping; default: TRUE... Other arguments passed to FUN An array where FUN has been applied map_simple Apply function that preserves order of dimensions Apply function that preserves order of dimensions map_simple(x,, FUN, = TRUE,...) X An n-dimensional array Along which ais to apply the function FUN A function that maps a vector to the same length or a scalar Remove unused dimensions after mapping; default: TRUE... passed to the function An array where FUN has been applied

10 10 match mask Converts a list of character vectors to a logical matri Converts a list of character vectors to a logical matri mask(, = 2) A list of character vectors Which ais to spread mask on A logical occurrence matri match match() function with etended functionality match() function with etended functionality match(, from, to, filter_from = NULL, filter_to = NULL, data = parent.frame(), fuzzy_level = 0, table = FALSE, na_rm = FALSE, warn =!table && fuzzy_level > 0) from to filter_from filter_to data fuzzy_level table na_rm warn Vector of identifiers that should be mapped Vector of identifiers that can be mapped Matched mapping for all identifiers Restrict matching to a subset from from Restrict matching to a subset from to List containing the data from and to reference 0 for eact, 1 punctuation, and 2 closest character Return a matching table instead of just the matches Flag to remove items that can not be mapped Display warning for all fuzzy matches

11 melt 11 Mapped values melt Function to melt data.frame from one or multiple arrays Function to melt data.frame from one or multiple arrays melt(..., dimnames = NULL, na_rm = TRUE)... Array[s] or data.frame[s] to be melted dimnames List of names the dimensions (instead of VarX ) na_rm Remove rows with NAs named_dots Return a list of named dot-arguments Return a list of named dot-arguments named_dots(...)... Function arguments Named function arguments

12 12 restore_null_dimnames rep Repeats an array an arbitrary ais Repeats an array an arbitrary ais rep(, n, = 1) crep(, n) rrep(, n) An array object n Integer, how often to repeat Along which ais to repeat (default: 1) An array that is repeated n times on ais restore_null_dimnames If no dimnames, return NULL and not list of NULLs If no dimnames, return NULL and not list of NULLs restore_null_dimnames() An array object The object with NULL if no dimnames

13 split 13 split Splits and array a given ais, either totally or only subsets Splits and array a given ais, either totally or only subsets split(x,, subsets = c(1:dim(x)[]), = NULL) X subsets An array that should be split Along which ais to split; use -1 for highest dimension Whether to split each element or keep some together Remove unused dimensions after mapping default: if all resulting arrays have same number of dimensions A list of arrays that combined make up the input array stack Stacks arrays while respecting names in each dimension Stacks arrays while respecting names in each dimension stack(..., = length(dim(arraylist[[1]])) + 1, fill = NA, = FALSE, keep_empty = FALSE, fail_if_empty = TRUE)... N-dimensional arrays, or a list thereof fill keep_empty fail_if_empty Which ais arrays should be stacked on (default: new ais) for unknown values (default: NA) Drop unused dimensions (default: FALSE) Keep empty elements when stacking (default: FALSE) Stop if no arrays left after removing empty elements

14 14 translate A stacked array, either n or n+1 dimensional subset Subsets an array using a list with indices or names Subsets an array using a list with indices or names subset(x, inde, = -1, = FALSE) X inde The array to subset A list of vectors to use for subsetting, or vector if is given Along which dimension to subset if inde is a vector; default is last dimension; argument is ignored if X is a vector Remove unused dimensions after mapping; default: TRUE The subset of the array translate Translate an ais between two sets of identifiers Translate an ais between two sets of identifiers translate(, = 1, to, from = dimnames()[[]],..., FUN) A matri Along which ais to summarize to Names that this dimension should be summarized to from Names that match the dimension... Parameters passed to match FUN Which function to apply, default is throwing error on aggregation

15 vectors_to_row_or_col 15 A summarized matri as defined by from, to vectors_to_row_or_col Converts vectors in a list to row- or column vectors Converts vectors in a list to row- or column vectors vectors_to_row_or_col(list, ) list List of array-like elements and vectors Along which dimension vectors should be aligned List where vectors are replaced by row- or col vectors (2d) which A multidimensional which function A multidimensional which function which(, = TRUE) N-dimensional logical array Return a vector if called on a vector A matri with indices where A == TRUE

16 16 %or% %or% Operator for array-like logical operations Operator for array-like logical operations a %or% b a b First vector Second vector TRUE/FALSE for each element

17 Inde %or%, 16 bind, 2 collect, 3 construct, 3 crep (rep), 12 dim, 4 dimnames, 4 _if, 5 filter, 5 flatten, 6 guess_structure, 6 intersect, 7 intersect_list, 7 lambda, 8 like, 8 map, 9 map_simple, 9 mask, 10 match, 10 melt, 11 named_dots, 11 rep, 12 restore_null_dimnames, 12 rrep (rep), 12 split, 13 stack, 13 subset, 14 translate, 14 vectors_to_row_or_col, 15 which, 15 17

Package dat. January 20, 2018

Package dat. January 20, 2018 Package dat Type Package Title Tools for Data Manipulation Version 0.4.0 January 20, 2018 BugReports https://github.com/wahani/dat/issues An implementation of common higher order functions with syntactic

More information

Package fastdummies. January 8, 2018

Package fastdummies. January 8, 2018 Type Package Package fastdummies January 8, 2018 Title Fast Creation of Dummy (Binary) Columns and Rows from Categorical Variables Version 1.0.0 Description Creates dummy columns from columns that have

More information

Package kdtools. April 26, 2018

Package kdtools. April 26, 2018 Type Package Package kdtools April 26, 2018 Title Tools for Working with Multidimensional Data Version 0.3.1 Provides various tools for working with multidimensional data in R and C++, including etremely

More information

Package stapler. November 27, 2017

Package stapler. November 27, 2017 Version 0.6.3 Package stapler November 27, 2017 Title Simultaneous Truth and Performance Level Estimation An implementation of Simultaneous Truth and Performance Level Estimation (STAPLE) .

More information

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3.

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3. Type Package Title GeoJSON to Simple Feature Converter Version 1.3.0 Date 2019-01-11 Package geojsonsf January 11, 2019 Converts Between GeoJSON and simple feature objects. License GPL-3 Encoding UTF-8

More information

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features Type Package Version 0.0.2 Title Encode Categorical Features Package cattonum May 2, 2018 Functions for dummy encoding, frequency encoding, label encoding, leave-one-out encoding, mean encoding, median

More information

Package slam. December 1, 2016

Package slam. December 1, 2016 Version 0.1-40 Title Sparse Lightweight Arrays and Matrices Package slam December 1, 2016 Data structures and algorithms for sparse arrays and matrices, based on inde arrays and simple triplet representations,

More information

Package slam. February 15, 2013

Package slam. February 15, 2013 Package slam February 15, 2013 Version 0.1-28 Title Sparse Lightweight Arrays and Matrices Data structures and algorithms for sparse arrays and matrices, based on inde arrays and simple triplet representations,

More information

Package catenary. May 4, 2018

Package catenary. May 4, 2018 Type Package Title Fits a Catenary to Given Points Version 1.1.2 Date 2018-05-04 Package catenary May 4, 2018 Gives methods to create a catenary object and then plot it and get properties of it. Can construct

More information

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7 Title Use Image in 'ggplot2' Version 0.0.7 Package ggimage November 1, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package assertive.code

Package assertive.code Type Package Title Assertions to Check Properties of Code Version 0.0-1 Date 2015-10-06 Author Richard Cotton [aut, cre] Package assertive.code August 29, 2016 Maintainer Richard Cotton

More information

Package Matrix.utils

Package Matrix.utils Package Matrix.utils August 28, 2017 Title Data.frame-Like Operations on Sparse and Dense Matrix Objects Version 0.9.6 Author Craig Varrichio Maintainer Craig Varrichio

More information

Package messaging. May 27, 2018

Package messaging. May 27, 2018 Type Package Package messaging May 27, 2018 Title Conveniently Issue Messages, Warnings, and Errors Version 0.1.0 Description Provides tools for creating and issuing nicely-formatted text within R diagnostic

More information

Package keyholder. May 19, 2018

Package keyholder. May 19, 2018 Title Store Data About Rows Version 0.1.2 Package keyholder May 19, 2018 Tools for keeping track of information, named ``keys'', about rows of data frame like objects. This is done by creating special

More information

Package spark. July 21, 2017

Package spark. July 21, 2017 Title 'Sparklines' in the 'R' Terminal Version 2.0.0 Author Gábor Csárdi Package spark July 21, 2017 Maintainer Gábor Csárdi A 'sparkline' is a line chart, without axes and labels.

More information

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0 Title Use Image in 'ggplot2' Version 0.1.0 Package ggimage December 5, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Package gggenes November 7, 2018 Provides a 'ggplot2' geom and helper functions for drawing gene arrow maps. Depends R (>= 3.3.0) Imports grid (>=

More information

Package condformat. October 19, 2017

Package condformat. October 19, 2017 Type Package Title Conditional Formatting in Data Frames Version 0.7.0 Date 2017-10-19 URL http://github.com/zeehio/condformat Package condformat October 19, 2017 BugReports http://github.com/zeehio/condformat/issues

More information

Package rgho. R topics documented: January 18, 2017

Package rgho. R topics documented: January 18, 2017 Package rgho January 18, 2017 Title Access WHO Global Health Observatory Data from R Version 1.0.1 Author Antoine Filipovic-Pierucci [aut,cre] Maintainer Antoine Filipovic-Pierucci

More information

Package splithalf. March 17, 2018

Package splithalf. March 17, 2018 Type Package Package splithalf March 17, 2018 Title Calculate Task Split Half Reliability Estimates Version 0.3.1 Maintainer Sam Parsons A series of functions to calculate the

More information

Package jdx. R topics documented: January 9, Type Package Title 'Java' Data Exchange for 'R' and 'rjava'

Package jdx. R topics documented: January 9, Type Package Title 'Java' Data Exchange for 'R' and 'rjava' Type Package Title 'Java' Data Exchange for 'R' and 'rjava' Package jdx January 9, 2018 Description Simplifies and extends data exchange between 'R' and 'Java'. Version 0.1.0 License GPL (>= 2 BSD_3_clause

More information

Package docxtools. July 6, 2018

Package docxtools. July 6, 2018 Title Tools for R Markdown to Docx Documents Version 0.2.0 Language en-us Package docxtools July 6, 2018 A set of helper functions for using R Markdown to create documents in docx format, especially documents

More information

Package hypercube. December 15, 2017

Package hypercube. December 15, 2017 Type Package Title Organizing Data in a Hyper Version 0.1.0 Author Michael Scholz Package hyper December 15, 2017 Maintainer Provides methods for organizing data in a hyper (i.e. a multi-dimensional ).

More information

Package validara. October 19, 2017

Package validara. October 19, 2017 Type Package Title Validate Brazilian Administrative Registers Version 0.1.1 Package validara October 19, 2017 Maintainer Gustavo Coelho Contains functions to validate administrative

More information

Package crossword.r. January 19, 2018

Package crossword.r. January 19, 2018 Date 2018-01-13 Type Package Title Generating s from Word Lists Version 0.3.5 Author Peter Meissner Package crossword.r January 19, 2018 Maintainer Peter Meissner Generate crosswords

More information

Package kirby21.base

Package kirby21.base Type Package Package kirby21.base October 11, 2017 Title Example Data from the Multi-Modal MRI 'Reproducibility' Resource Version 1.6.0 Date 2017-10-10 Author John Muschelli Maintainer

More information

Package labelvector. July 28, 2018

Package labelvector. July 28, 2018 Title Label Attributes for Atomic Vectors Version 0.1.0 Package labelvector July 28, 2018 Labels are a common construct in statistical software providing a human readable description of a variable. While

More information

Package smoothr. April 4, 2018

Package smoothr. April 4, 2018 Type Package Title Smooth and Tidy Spatial Features Version 0.1.0 Package smoothr April 4, 2018 Tools for smoothing and tidying spatial features (i.e. lines and polygons) to make them more aesthetically

More information

Package canvasxpress

Package canvasxpress Version 1.18.2 Package canvasxpress Title Visualization Package for CanvasXpress in R January 19, 2018 Enables creation of visualizations using the CanvasXpress framework in R. CanvasXpress is a standalone

More information

Package labelled. December 19, 2017

Package labelled. December 19, 2017 Package labelled December 19, 2017 Type Package Title Manipulating Labelled Data Version 1.0.1 Date 2017-12-19 Maintainer Joseph Larmarange Work with labelled data imported from

More information

Package lumberjack. R topics documented: July 20, 2018

Package lumberjack. R topics documented: July 20, 2018 Package lumberjack July 20, 2018 Maintainer Mark van der Loo License GPL-3 Title Track Changes in Data LazyData no Type Package LazyLoad yes A function composition ('pipe') operator

More information

Package utf8. May 24, 2018

Package utf8. May 24, 2018 Version 1.1.4 Title Unicode Text Processing Depends R (>= 2.10) Suggests knitr, rmarkdown, testthat Package utf8 May 24, 2018 Process and print 'UTF- 8' encoded international text (Unicode). Input, validate,

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

Package robotstxt. November 12, 2017

Package robotstxt. November 12, 2017 Date 2017-11-12 Type Package Package robotstxt November 12, 2017 Title A 'robots.txt' Parser and 'Webbot'/'Spider'/'Crawler' Permissions Checker Version 0.5.2 Provides functions to download and parse 'robots.txt'

More information

Package zebu. R topics documented: October 24, 2017

Package zebu. R topics documented: October 24, 2017 Type Package Title Local Association Measures Version 0.1.2 Date 2017-10-21 Author Olivier M. F. Martin [aut, cre], Michel Ducher [aut] Package zebu October 24, 2017 Maintainer Olivier M. F. Martin

More information

Package statar. July 6, 2017

Package statar. July 6, 2017 Package statar July 6, 2017 Title Tools Inspired by 'Stata' to Manipulate Tabular Data Version 0.6.5 A set of tools inspired by 'Stata' to eplore data.frames ('summarize', 'tabulate', 'tile', 'pctile',

More information

Package reval. May 26, 2015

Package reval. May 26, 2015 Package reval May 26, 2015 Title Repeated Function Evaluation for Sensitivity Analysis Version 2.0.0 Date 2015-05-25 Author Michael C Koohafkan [aut, cre] Maintainer Michael C Koohafkan

More information

Package calpassapi. August 25, 2018

Package calpassapi. August 25, 2018 Title R Interface to Access CalPASS API Version 0.0.1 Package calpassapi August 25, 2018 Description Implements methods for querying data from CalPASS using its API. CalPASS Plus. MMAP API V1. .

More information

Package meme. November 2, 2017

Package meme. November 2, 2017 Title Create Meme Version 0.0.7 Package meme November 2, 2017 The word 'Meme' was originated from the book, 'The Selfish Gene', authored by Richard Dawkins (1976). It is a unit of culture that is passed

More information

Package qualmap. R topics documented: September 12, Type Package

Package qualmap. R topics documented: September 12, Type Package Type Package Package qualmap September 12, 2018 Title Opinionated Approach for Digitizing Semi-Structured Qualitative GIS Data Version 0.1.1 Provides a set of functions for taking qualitative GIS data,

More information

Package crochet. January 8, 2018

Package crochet. January 8, 2018 Version 2.0.1 License MIT + file LICENSE Package crochet January 8, 2018 Title Implementation Helper for [ and [

More information

Package widyr. August 14, 2017

Package widyr. August 14, 2017 Type Package Title Widen, Process, then Re-Tidy Data Version 0.1.0 Package widyr August 14, 2017 Encapsulates the pattern of untidying data into a wide matrix, performing some processing, then turning

More information

Package Rspc. July 30, 2018

Package Rspc. July 30, 2018 Type Package Title Nelson Rules for Control Charts Version 1.2.2 Package Rspc July 30, 2018 Maintainer Stanislav Matousek (MSD) Implementation of Nelson rules for control charts in 'R'.

More information

Package projector. February 27, 2018

Package projector. February 27, 2018 Package projector February 27, 2018 Title Project Dense Vectors Representation of Texts on a 2D Plan Version 0.0.2 Date 2018-02-27 Maintainer Michaël Benesty Display dense vector representation

More information

Package diagis. January 25, 2018

Package diagis. January 25, 2018 Type Package Package diagis January 25, 2018 Title Diagnostic Plot and Multivariate Summary Statistics of Weighted Samples from Importance Sampling Version 0.1.3-1 Date 2018-01-25 Author Jouni Helske Maintainer

More information

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2 Title Finding Files in Project Subdirectories Version 1.3-2 Package rprojroot January 3, 2018 Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a

More information

Package tidyimpute. March 5, 2018

Package tidyimpute. March 5, 2018 Title Imputation the Tidyverse Way Version 0.1.0 Date 2018-02-01 Package tidyimpute March 5, 2018 URL https://github.com/decisionpatterns/tidyimpute Functions and methods for imputing missing values (NA)

More information

Package rsppfp. November 20, 2018

Package rsppfp. November 20, 2018 Package rsppfp November 20, 2018 Title R's Shortest Path Problem with Forbidden Subpaths Version 1.0.3 Maintainer Melina Vidoni An implementation of functionalities

More information

Package ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

Package CUFF. May 28, 2018

Package CUFF. May 28, 2018 Note -*- Encoding: utf-8 -*- Type Package Title Charles's Utility Function using Formula Version 1.5 Date 2018-05-27 Author Package CUFF May 28, 2018 Maintainer Depends R (>= 3.2.2)

More information

Package incidence. August 24, Type Package

Package incidence. August 24, Type Package Type Package Package incidence August 24, 2018 Title Compute, Handle, Plot and Model Incidence of Dated Events Version 1.4.1 Provides functions and classes to compute, handle and visualise incidence from

More information

Package postgistools

Package postgistools Type Package Package postgistools March 28, 2018 Title Tools for Interacting with 'PostgreSQL' / 'PostGIS' Databases Functions to convert geometry and 'hstore' data types from 'PostgreSQL' into standard

More information

Package dostats. R topics documented: August 29, Version Date Title Compute Statistics Helper Functions

Package dostats. R topics documented: August 29, Version Date Title Compute Statistics Helper Functions Version 1.3.2 Date 2015-05-28 Title Compute Statistics Helper Functions Package dostats August 29, 2016 Author Andrew Redd Maintainer Andrew Redd URL

More information

Package svalues. July 15, 2018

Package svalues. July 15, 2018 Type Package Package svalues July 15, 2018 Title Measures of the Sturdiness of Regression Coefficients Version 0.1.6 Author Carlos Cinelli Maintainer Carlos Cinelli Implements

More information

Package datasets.load

Package datasets.load Title Interface for Loading Datasets Version 0.1.0 Package datasets.load December 14, 2016 Visual interface for loading datasets in RStudio from insted (unloaded) s. Depends R (>= 3.0.0) Imports shiny,

More information

Package states. May 4, 2018

Package states. May 4, 2018 Type Package Title Create Panels of Independent States Version 0.2.1 Package states May 4, 2018 Maintainer Andreas Beger Create panel data consisting of independent states from 1816

More information

Package condusco. November 8, 2017

Package condusco. November 8, 2017 Type Package Package condusco November 8, 2017 Title Query-Driven Pipeline Execution and Query Templates Version 0.1.0 Author Roland Stevenson Maintainer Roland Stevenson Description

More information

Package pdfsearch. July 10, 2018

Package pdfsearch. July 10, 2018 Type Package Version 0.2.3 License MIT + file LICENSE Title Search Tools for PDF Files Package pdfsearch July 10, 2018 Includes functions for keyword search of pdf files. There is also a wrapper that includes

More information

Package rtext. January 23, 2019

Package rtext. January 23, 2019 Title R6 Objects for Text and Data Date 2019-01-21 Version 0.1.21 Package January 23, 2019 For natural language processing and analysis of qualitative text coding structures which provide a way to bind

More information

Package redux. May 31, 2018

Package redux. May 31, 2018 Title R Bindings to 'hiredis' Version 1.1.0 Package redux May 31, 2018 A 'hiredis' wrapper that includes support for transactions, pipelining, blocking subscription, serialisation of all keys and values,

More information

Package infer. July 11, Type Package Title Tidy Statistical Inference Version 0.3.0

Package infer. July 11, Type Package Title Tidy Statistical Inference Version 0.3.0 Type Package Title Tidy Statistical Inference Version 0.3.0 Package infer July 11, 2018 The objective of this package is to perform inference using an epressive statistical grammar that coheres with the

More information

Package easysdctable

Package easysdctable Type Package Package easysdctable January 15, 2018 Title Easy Interface to the Statistical Disclosure Control Package 'sdctable' Version 0.3.1 Date 2018-01-15 Author Øyvind Langsrud Maintainer Øyvind Langsrud

More information

Package raker. October 10, 2017

Package raker. October 10, 2017 Title Easy Spatial Microsimulation (Raking) in R Version 0.2.1 Date 2017-10-10 Package raker October 10, 2017 Functions for performing spatial microsimulation ('raking') in R. Depends R (>= 3.4.0) License

More information

Package customlayout

Package customlayout Type Package Package customlayout October 31, 2018 Title Arrange Elements on the R's Drawing Area or Inside the PowerPoint's Slide Version 0.3.0 Maintainer Zygmunt Zawadzki Create complicated

More information

Package ruler. February 23, 2018

Package ruler. February 23, 2018 Title Tidy Data Validation Reports Version 0.1.2 Package ruler February 23, 2018 Tools for creating data validation pipelines and tidy reports. This package offers a framework for exploring and validating

More information

Package stringb. November 1, 2016

Package stringb. November 1, 2016 Title Convenient Base R String Handling Date 2016-11-01 Version 0.1.13 Package b November 1, 2016 Base R already ships with handling capabilities 'outof-the-box' but lacks streamlined function names and

More information

Package fastrtext. December 10, 2017

Package fastrtext. December 10, 2017 Type Package Package fastrtext December 10, 2017 Title 'fasttext' Wrapper for Text Classification and Word Representation Version 0.2.4 Date 2017-12-09 Maintainer Michaël Benesty Learning

More information

Package readxl. April 18, 2017

Package readxl. April 18, 2017 Title Read Excel Files Version 1.0.0 Package readxl April 18, 2017 Import excel files into R. Supports '.xls' via the embedded 'libxls' C library and '.xlsx'

More information

Package meme. December 6, 2017

Package meme. December 6, 2017 Title Create Meme Version 0.1.1 Package meme December 6, 2017 The word 'Meme' was originated from the book, 'The Selfish Gene', authored by Richard Dawkins (1976). It is a unit of culture that is passed

More information

Package GetoptLong. June 10, 2018

Package GetoptLong. June 10, 2018 Type Package Package GetoptLong June 10, 2018 Title Parsing Command-Line and Variable Interpolation Version 0.1.7 Date 2018-6-9 Author Zuguang Gu Maintainer Depends R (>= 3.0.0) Suggests testthat (>= 1.0.0),

More information

Package elasticsearchr

Package elasticsearchr Type Package Version 0.2.2 Package elasticsearchr March 29, 2018 Title A Lightweight Interface for Interacting with Elasticsearch from R Date 2018-03-29 Author Alex Ioannides Maintainer Alex Ioannides

More information

Package preprosim. July 26, 2016

Package preprosim. July 26, 2016 Package preprosim July 26, 2016 Type Package Title Lightweight Data Quality Simulation for Classification Version 0.2.0 Date 2016-07-26 Data quality simulation can be used to check the robustness of data

More information

Package datapasta. January 24, 2018

Package datapasta. January 24, 2018 Title R Tools for Data Copy-Pasta Version 3.0.0 Package datapasta January 24, 2018 RStudio addins and R functions that make copy-pasting vectors and tables to text painless. Depends R (>= 3.3.0) Suggests

More information

Package filematrix. R topics documented: February 27, Type Package

Package filematrix. R topics documented: February 27, Type Package Type Package Package filematrix February 27, 2018 Title File-Backed Matrix Class with Convenient Read and Write Access Version 1.3 Date 2018-02-26 Description Interface for working with large matrices

More information

Package librarian. R topics documented:

Package librarian. R topics documented: Package librarian July 8, 2018 Title Install, Update, Load Packages from CRAN and 'GitHub' in One Step Version 1.3.0 Automatically install, update, and load 'CRAN' and 'GitHub' packages in a single function

More information

Package reticulate. November 24, 2017

Package reticulate. November 24, 2017 Type Package Title R Interface to Python Version 1.3.1 Package reticulate November 24, 2017 R interface to Python modules, classes, and functions. When calling into Python R data types are automatically

More information

Package gcite. R topics documented: February 2, Type Package Title Google Citation Parser Version Date Author John Muschelli

Package gcite. R topics documented: February 2, Type Package Title Google Citation Parser Version Date Author John Muschelli Type Package Title Google Citation Parser Version 0.9.2 Date 2018-02-01 Author John Muschelli Package gcite February 2, 2018 Maintainer John Muschelli Scrapes Google Citation pages

More information

Package WhiteStripe. April 19, 2018

Package WhiteStripe. April 19, 2018 Type Package Package WhiteStripe April 19, 2018 Title White Matter Normalization for Magnetic Resonance Images using WhiteStripe Version 2.3.1 Date 2018-04-18 Author R. Taki Shinohara, John Muschelli Maintainer

More information

Package postal. July 27, 2018

Package postal. July 27, 2018 Type Package Title United States Postal Service API Interface Version 0.1.0 Package postal July 27, 2018 Author Amanda Dobbyn Maintainer Amanda Dobbyn

More information

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0 Type Package Title Power Analysis for AB Testing Version 0.1.0 Package pwrab June 6, 2017 Maintainer William Cha Power analysis for AB testing. The calculations are based

More information

Package nonlinearicp

Package nonlinearicp Package nonlinearicp July 31, 2017 Type Package Title Invariant Causal Prediction for Nonlinear Models Version 0.1.2.1 Date 2017-07-31 Author Christina Heinze- Deml , Jonas

More information

Package restorepoint

Package restorepoint Package restorepoint Type Package Title Debugging with Restore Points Version 0.2 Date 2018-12-20 January 3, 2019 URL https://github.com/skranz/restorepoint Author Sebastian Kranz [aut, cre], Roman Zenka

More information

Package keep. R topics documented: December 16, 2015

Package keep. R topics documented: December 16, 2015 Package keep December 16, 2015 Type Package Title Arrays with Better Control over Dimension Dropping Version 1.0 Date 2015-12-11 Author Paavo Jumppanen Maintainer Paavo Jumppanen

More information

Package githubinstall

Package githubinstall Type Package Version 0.2.2 Package githubinstall February 18, 2018 Title A Helpful Way to Install R Packages Hosted on GitHub Provides an helpful way to install packages hosted on GitHub. URL https://github.com/hoxo-m/githubinstall

More information

Package zoomgrid. January 3, 2019

Package zoomgrid. January 3, 2019 Package zoomgrid January 3, 2019 Type Package Title Grid Search Algorithm with a Zoom Version 1.0.0 Description Provides the grid search algorithm with a zoom. The grid search algorithm with a zoom aims

More information

Package bazar. October 7, 2018

Package bazar. October 7, 2018 Type Package Title Miscellaneous Basic Functions Version 1.0.10 Date 2018-10-03 Package bazar October 7, 2018 A collection of miscellaneous functions for copying objects to the clipboard ('Copy'); manipulating

More information

Package balance. October 12, 2018

Package balance. October 12, 2018 Title Visualize Balances of Compositional Data Version 0.1.6 URL http://github.com/tpq/balance Package balance October 12, 2018 BugReports http://github.com/tpq/balance/issues Balances have become a cornerstone

More information

Package rollply. R topics documented: August 29, Title Moving-Window Add-on for 'plyr' Version 0.5.0

Package rollply. R topics documented: August 29, Title Moving-Window Add-on for 'plyr' Version 0.5.0 Title Moving-Window Add-on for 'plyr' Version 0.5.0 Package rollply August 29, 2016 Author ``Alexandre Genin [aut, cre]'' Maintainer Alexandre Genin Apply a function

More information

Package gifti. February 1, 2018

Package gifti. February 1, 2018 Type Package Package gifti February 1, 2018 Title Reads in 'Neuroimaging' 'GIFTI' Files with Geometry Information Version 0.7.5 Author John Muschelli Maintainer John Muschelli Functions

More information

Package autocogs. September 22, Title Automatic Cognostic Summaries Version 0.1.1

Package autocogs. September 22, Title Automatic Cognostic Summaries Version 0.1.1 Title Automatic Cognostic Summaries Version 0.1.1 Package autocogs September 22, 2018 Automatically calculates cognostic groups for plot objects and list column plot objects. Results are returned in a

More information

Package barcoder. October 26, 2018

Package barcoder. October 26, 2018 Package barcoder October 26, 2018 Title Labelling, Tracking, and Collecting Data from Biological Samples Version 0.1.0 Maintainer Robert Colautti Tools to generate unique identifiers

More information

Package lvec. May 24, 2018

Package lvec. May 24, 2018 Package lvec May 24, 2018 Type Package Title Out of Memory Vectors Version 0.2.2 Date 2018-05-23 Author Jan van der Laan Maintainer Jan van der Laan Core functionality

More information

Package nngeo. September 29, 2018

Package nngeo. September 29, 2018 Type Package Title k-nearest Neighbor Join for Spatial Data Version 0.2.2 Package nngeo September 29, 2018 K-nearest neighbor search for projected and non-projected 'sf' spatial layers. Nearest neighbor

More information

Package mgc. April 13, 2018

Package mgc. April 13, 2018 Type Package Title Multiscale Graph Correlation Version 1.0.1 Date 2018-04-12 Package mgc April 13, 2018 Maintainer Multiscale Graph Correlation (MGC) is a framework developed by Shen

More information

Package modules. July 22, 2017

Package modules. July 22, 2017 Title Self Contained Units of Source Code Version 0.6.0 Date 2017-07-18 Package modules July 22, 2017 Description Provides modules as an organizational unit for source code. Modules enforce to be more

More information

Package io. January 15, 2018

Package io. January 15, 2018 Type Package Package io January 15, 2018 Title A Unified Framework for Input-Output Operations in R Version 0.3.0 Date 2018-01-15 Author David J. H. Shih Maintainer David J. H. Shih

More information

Package jstree. October 24, 2017

Package jstree. October 24, 2017 Package jstree October 24, 2017 Title Create Interactive Trees with the 'jquery' 'jstree' Plugin Version 1.0.1 Date 2017-10-23 Maintainer Jonathan Sidi Create and customize interactive

More information

Package rcmdcheck. R topics documented: November 10, 2018

Package rcmdcheck. R topics documented: November 10, 2018 Package rcmdcheck November 10, 2018 Title Run 'R CMD check' from 'R' and Capture Results Version 1.3.2 Author Gábor Csárdi Maintainer Gábor Csárdi Run 'R CMD check' from 'R' programmatically,

More information

Package fitur. March 11, 2018

Package fitur. March 11, 2018 Title Fit Univariate Distributions Version 0.5.25 Package fitur March 11, 2018 Wrapper for computing parameters for univariate distributions using MLE. It creates an object that stores d, p, q, r functions

More information

Package dkanr. July 12, 2018

Package dkanr. July 12, 2018 Title Client for the 'DKAN' API Version 0.1.2 Package dkanr July 12, 2018 Provides functions to facilitate access to the 'DKAN' API (), including

More information