Package rucrdtw. October 13, 2017

Size: px
Start display at page:

Download "Package rucrdtw. October 13, 2017"

Transcription

1 Package rucrdtw Type Package Title R Bindings for the UCR Suite Version Date October 13, 2017 BugReports URL R bindings for functions from the UCR Suite by Rakthanmanon et al. (2012) <DOI: / >, which enables ultrafast subsequence search for a best match under Dynamic Time Warping and Euclidean Distance. License Apache License LazyData TRUE LinkingTo Rcpp Depends R (>= 2.10) Imports Rcpp SystemRequirements C++11 RoxygenNote Suggests testthat, knitr, rmarkdown, dtw, rbenchmark VignetteBuilder knitr NeedsCompilation yes Author Philipp Boersch-Supan [aut, cre] ( ), Thanawin Rakthanmanon [aut], Bilson Campana [aut], Abdullah Mueen [aut], Gustavo Batista [aut], Eamonn Keogh [aut] Maintainer Philipp Boersch-Supan <pboesu@gmail.com> Repository CRAN Date/Publication :44:50 UTC 1

2 2 rucrdtw R topics documented: rucrdtw summary.ucrdtw summary.ucred synthetic_control ucrdtw_ff ucrdtw_fv ucrdtw_mv ucrdtw_vv ucred_ff ucred_fv ucred_mv ucred_vv Index 14 rucrdtw rucrdtw: Fast time series subsequence search in R Dynamic Time Warping (DTW) methods provide algorithms to optimally map a given time series onto all or part of another time series. The remaining cumulative distance between the series after the alignement is a useful distance metric in time series mining applications for tasks such as classification, clustering, and anomaly detection. A broad suite of DTW algorithms is implemented in R in the dtw package (Giorgino 2009). Calculating a DTW alignment is computationally relatively expensive, and as a consequence DTW is often a bottleneck in time series mining applications. The UCR Suite (Rakthanmanon et al. 2012) provides a highly optimized algorithm for best-match subsequence searches that avoids unnecessary distance computations and thereby enables fast DTW and Euclidean Distance queries even in sets containing trillions of observations. The rucrdtw package provides R bindings for the UCR Suite. In addition to queries and stored in text files, rucrdtw also implements methods for queries and/or that are held in memory as R objects, as well as a method to do fast similarity searches against reference libraries of time series. The following table gives a quick overview over the different methods provided by rucrdtw: DTW method ED method format format Use case ucrdtw_ff ucred_ff text file text file sets that are too large to keep in memory ucrdtw_fv ucred_fv text file numeric vector sets that are too large to keep in memory ucrdtw_vv ucred_vv numeric vector numeric vector sets that fit into memory ucrdtw_mv ucred_mv numeric matrix numeric vector compare to a set of reference sequences of equal len of the functionality in this package are provided in the rucrdtw vignette: vignette("using_rucrdtw", package = "rucrdtw")

3 summary.ucrdtw 3 References Rakthanmanon, Thanawin, Bilson Campana, Abdullah Mueen, Gustavo Batista, Brandon Westover, Qiang Zhu, Jesin Zakaria, and Eamonn Keogh Searching and Mining Trillions of Time Series Subsequences Under Dynamic Time Warping. In Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, ACM. doi: / Giorgino, Toni (2009). Computing and Visualizing Dynamic Time Warping Alignments in R: The dtw Package. Journal of Statistical Software, 31(7), 1-24, doi: /jss.v031.i07. UCR Suite Website: See Also dtw-package summary.ucrdtw Summarize subsequence search Summary method for class ucrdtw ## S3 method for class 'ucrdtw' summary(object,...) object an object of class ucrdtw... further arguments passed to or from methods An unlisted version of the object is returned.

4 4 synthetic_control summary.ucred Summarize subsequence search Summary method for class ucred ## S3 method for class 'ucred' summary(object,...) object an object of class ucred... further arguments passed to or from methods An unlisted version of the object is returned. synthetic_control Synthetic Control Chart Time Series Data Set Format Details This set contains 600 examples of control charts synthetically generated by the process in Alcock and Manolopoulos (1999) and obtained from the UCI Machine Learning Repository http: //archive.ics.uci.edu/ml/sets/synthetic+control+chart+time+series. A matrix with 600 rows (series) and 60 columns (timepoints) There are six different classes of control charts: 1. Normal (Rows 1-100) 2. Cyclic (Rows ) 3. Increasing trend (Rows ) 4. Decreasing trend (Rows ) 5. Upward shift (Rows ) 6. Downward shift (Rows )

5 ucrdtw_ff 5 References Alcock R.J. and Manolopoulos Y. Time-Series Similarity Queries Employing a Feature-Based Approach. 7th Hellenic Conference on Informatics. August Ioannina, Greece ucrdtw_ff UCR DTW Algorithm file-file method Sliding-window similarity search using DTW distance. This implementation is very close to the UCR Suite command line utility, in that it takes files as inputs for both and ucrdtw_ff(,, qlength, dtwwindow) qlength dtwwindow character; path to file character; path to file integer; length of the (number of points), usually this should be equivalent to length(), but it can be shorter. double; Size of the warping window size (as a proportion of length). The DTW calculation in rucrdtw uses a symmetric Sakoe-Chiba band. See Giorgino (2009) for a general coverage of warping window constraints. a ucrdtw object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size length(), in the. Note that location starts from 1. distance: The DTW distance between the nearest neighbor and the. prunedkim: Percentage of subsequences that were pruned based on the LB-Kim prunedkeogh: Percentage of subsequences that were pruned based on the LB-Keogh-EQ prunedkeogh2: Percentage of subsequences that were pruned based on the LB-Keogh-EC dtwcalc: Percentage of subsequences for which the full DTW distance was calculated. For an explanation of the pruning criteria see Rakthanmanon et al. (2012).

6 6 ucrdtw_fv References Rakthanmanon, Thanawin, Bilson Campana, Abdullah Mueen, Gustavo Batista, Brandon Westover, Qiang Zhu, Jesin Zakaria, and Eamonn Keogh Searching and Mining Trillions of Time Series Subsequences Under Dynamic Time Warping. In Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, ACM. doi: / Giorgino, Toni (2009). Computing and Visualizing Dynamic Time Warping Alignments in R: The dtw Package. Journal of Statistical Software, 31(7), 1-24, doi: /jss.v031.i07. #locate example file f <- system.file("ext/col_sc.txt", package="rucrdtw") #locate example file f <- system.file("ext/mid_sc.txt", package="rucrdtw") #determine length of file qlength <- length(scan(f)) #run ucrdtw_ff(f, f, qlength, 0.05) ucrdtw_fv UCR DTW Algorithm file-vector method Sliding-window similarity search using DTW distance. This implementation of the UCR Suite command line utility, takes a file as input and an R numeric vector for the ucrdtw_fv(,, dtwwindow) dtwwindow character; path to file numeric vector containing the. The length is set to the length of this object. double; Size of the warping window size (as a proportion of length). The DTW calculation in rucrdtw uses a symmetric Sakoe-Chiba band. See Giorgino (2009) for a general coverage of warping window constraints.

7 ucrdtw_mv 7 a ucrdtw object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size length(), in the. Note that location starts from 1. distance: The DTW distance between the nearest neighbor and the. prunedkim: Percentage of subsequences that were pruned based on the LB-Kim prunedkeogh: Percentage of subsequences that were pruned based on the LB-Keogh-EQ prunedkeogh2: Percentage of subsequences that were pruned based on the LB-Keogh-EC dtwcalc: Percentage of subsequences for which the full DTW distance was calculated. For an explanation of the pruning criteria see Rakthanmanon et al. (2012). References Rakthanmanon, Thanawin, Bilson Campana, Abdullah Mueen, Gustavo Batista, Brandon Westover, Qiang Zhu, Jesin Zakaria, and Eamonn Keogh Searching and Mining Trillions of Time Series Subsequences Under Dynamic Time Warping. In Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, ACM. doi: / Giorgino, Toni (2009). Computing and Visualizing Dynamic Time Warping Alignments in R: The dtw Package. Journal of Statistical Software, 31(7), 1-24, doi: /jss.v031.i07. #locate example file f <- system.file("ext/col_sc.txt", package="rucrdtw") #load example set ("synthetic_control") #extract first row as <- synthetic_control[1,] #run ucrdtw_fv(f,, 0.05) ucrdtw_mv UCR DTW Algorithm matrix-vector method This implementation of the UCR Suite command line utility, takes an R numeric matrix as input and an R numeric vector for the. The default behaviour differs from the other methods, in that it does not perform a sliding window search for a match. Instead it is designed to find a best match for a in a reference set of time-series of the same length as the. This is useful, for example, when comparing a time-series of undetermined class to a labelled reference set of classified time-series.

8 8 ucrdtw_mv ucrdtw_mv(,, dtwwindow, epoch = 1e+05, skip = TRUE, byrow = FALSE) dtwwindow epoch skip byrow numeric matrix containing numeric vector containing the. This determines the length. double; Size of the warping window size (as a proportion of length). The DTW calculation in rucrdtw uses a symmetric Sakoe-Chiba band. See Giorgino (2009) for a general coverage of warping window constraints. int defaults to 1e5, should be 1e6. This is the size of the chunk that is processed at once. All cumulative values in the algorithm will be restarted after epoch iterations to reduce floating point errors in these values. boolean; defaults to TRUE. If TRUE bound calculations and if necessary, distance calculations, are only performed on non-overlapping segments of the (i.e. multiples of length()). This is useful if is a set of multiple reference time series, each of length length(). The location returned when skipping is the index of the subsequence. logical; If TRUE rows in represent time-series, columns time-points a ucrdtw object. A list containing the following elements References location: The row or column number of the nearest neighbor of the given in the set. distance: The DTW distance between the nearest neighbor and the. prunedkim: Percentage of subsequences that were pruned based on the LB-Kim prunedkeogh: Percentage of subsequences that were pruned based on the LB-Keogh-EQ prunedkeogh2: Percentage of subsequences that were pruned based on the LB-Keogh-EC dtwcalc: Percentage of subsequences for which the full DTW distance was calculated. Giorgino, Toni (2009). Computing and Visualizing Dynamic Time Warping Alignments in R: The dtw Package. Journal of Statistical Software, 31(7), 1-24, doi: /jss.v031.i07. #load example ("synthetic_control") <- synthetic_control[5,] #run ucrdtw_mv(synthetic_control,, 0.05, byrow = TRUE)

9 ucrdtw_vv 9 ucrdtw_vv UCR DTW Algorithm vector-vector method Sliding-window similarity search using DTW distance. This implementation of the UCR Suite command line utility, takes an R numeric vector as input and an R numeric vector for the ucrdtw_vv(,, dtwwindow, epoch = L, skip = FALSE) dtwwindow epoch skip numeric vector containing numeric vector containing the. The length of this vector determines the length. double; Size of the warping window size (as a proportion of length). The DTW calculation in rucrdtw uses a symmetric Sakoe-Chiba band. See Giorgino (2009) for a general coverage of warping window constraints. int defaults to 1e5, should be 1e6. This is the size of the chunk that is processed at once. All cumulative values in the algorithm will be restarted after epoch iterations to reduce floating point errors in these values. bool defaults to FALSE. If TRUE bound calculations and if necessary, distance calculations, are only performed on non-overlapping segments of the (i.e. multiples of qlength). This is useful if is a set of multiple reference time series, each of length qlength. The location returned when skipping is the index of the subsequence. a ucrdtw object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size length(), in the. Note that location starts from 1. distance: The DTW distance between the nearest neighbor and the. prunedkim: Percentage of subsequences that were pruned based on the LB-Kim prunedkeogh: Percentage of subsequences that were pruned based on the LB-Keogh-EQ prunedkeogh2: Percentage of subsequences that were pruned based on the LB-Keogh-EC dtwcalc: Percentage of subsequences for which the full DTW distance was calculated. For an explanation of the pruning criteria see Rakthanmanon et al. (2012).

10 10 ucred_ff References Rakthanmanon, Thanawin, Bilson Campana, Abdullah Mueen, Gustavo Batista, Brandon Westover, Qiang Zhu, Jesin Zakaria, and Eamonn Keogh Searching and Mining Trillions of Time Series Subsequences Under Dynamic Time Warping. In Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, ACM. doi: / Giorgino, Toni (2009). Computing and Visualizing Dynamic Time Warping Alignments in R: The dtw Package. Journal of Statistical Software, 31(7), 1-24, doi: /jss.v031.i07. #read example into vector v <- scan(system.file("ext/col_sc.txt", package="rucrdtw")) #read example into vector <- scan(system.file("ext/first_sc.txt", package="rucrdtw")) #execute ucrdtw_vv(v,, 0.05) ucred_ff UCR ED Algorithm file-file method Sliding-window similarity search using euclidean distance. This implementation is very close to the UCR Suite command line utility, in that it takes files as inputs for both and ucred_ff(,, qlength) qlength character; path to file character; path to file integer; length of (n points). Usually the length of the contained in, but it can be shorter. a ucred object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size qlength, in the. Note that location starts from 1. distance: The euclidean distance between the nearest neighbor and the.

11 ucred_fv 11 #locate example file f <- system.file("ext/col_sc.txt", package="rucrdtw") #locate example file f <- system.file("ext/mid_sc.txt", package="rucrdtw") #determine length of file qlength <- length(scan(f)) #run ucred_ff(f, f, qlength) ucred_fv UCR ED Algorithm file-vector method Sliding-window similarity search using Euclidean Distance. This implementation of the UCR Suite command line utility, takes a file as input and an R numeric vector for the. ucred_fv(, ) character; path to file numeric vector containing a ucred object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size length(), in the. Note that location starts from 1. distance: The Euclidean Distance between the nearest neighbor and the. #locate example file f <- system.file("ext/col_sc.txt", package="rucrdtw") #read example file into vector <- scan(system.file("ext/mid_sc.txt", package="rucrdtw")) #run ucred_fv(f, )

12 12 ucred_mv ucred_mv UCR ED Algorithm matrix-vector method This implementation of the UCR Suite command line utility, takes an R numeric matrix as input and an R numeric vector for the. The default behaviour differs from the other methods, in that it does not perform a sliding window search for a match. Instead it is designed to find a best match for a in a reference set of time-series of the same length as the. This is useful, for example, when comparing a time-series of undetermined class to a labelled reference set of classified time-series. ucred_mv(,, skip = TRUE, byrow = FALSE) skip byrow numeric matrix containing numeric vector containing the. This determines the length. boolean; defaults to TRUE. If TRUE bound calculations and if necessary, distance calculations, are only performed on non-overlapping segments of the (i.e. multiples of length()). This is useful if is a set of multiple reference time series, each of length length(). The location returned when skipping is the index of the subsequence. logical; If TRUE rows in represent time-series, columns time-points a ucred object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size qlength, in the. Note that location starts from 1. distance: The euclidean distance between the nearest neighbor and the. #load example matrix ("synthetic_control") #use on arbitrary row as <- synthetic_control[5,] #run ucred_mv(synthetic_control,, byrow=true)

13 ucred_vv 13 ucred_vv UCR ED Algorithm vector-vector method Sliding-window similarity search using Euclidean Distance. This implementation of the UCR Suite Euclidean Distance command line utility takes an R numeric vector as input and an R numeric vector for the. ucred_vv(,, skip = FALSE) skip numeric vector containing numeric vector containing bool defaults to TRUE. If TRUE bound calculations and if necessary, distance calculations, are only performed on non-overlapping segments of the (i.e. multiples of length()). This is useful if is a set of multiple reference time series, each of length length(). The location returned when skipping is the index of the subsequence. a ucred object. A list with the following elements location: The starting location of the nearest neighbor of the given, of size length(), in the. Note that location starts from 1. distance: The Euclidean Distance between the nearest neighbor and the. #read example file into vector f <- scan(system.file("ext/col_sc.txt", package="rucrdtw")) #read example file into vector <- scan(system.file("ext/mid_sc.txt", package="rucrdtw")) #run ucred_vv(f, )

14 Index Topic synthetic_control, 4 dtw-package, 3 rucrdtw, 2 rucrdtw-package (rucrdtw), 2 summary.ucrdtw, 3 summary.ucred, 4 synthetic_control, 4 ucrdtw_ff, 2, 5 ucrdtw_fv, 2, 6 ucrdtw_mv, 2, 7 ucrdtw_vv, 2, 9 ucred_ff, 2, 10 ucred_fv, 2, 11 ucred_mv, 2, 12 ucred_vv, 2, 13 14

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 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 nmslibr. April 14, 2018

Package nmslibr. April 14, 2018 Type Package Title Non Metric Space (Approximate) Library Version 1.0.1 Date 2018-04-14 Package nmslibr April 14, 2018 Maintainer Lampros Mouselimis BugReports https://github.com/mlampros/nmslibr/issues

More information

Package triebeard. August 29, 2016

Package triebeard. August 29, 2016 Type Package Title 'Radix' Trees in 'Rcpp' Version 0.3.0 Package beard August 29, 2016 Author Oliver Keyes [aut, cre], Drew Schmidt [aut], Yuuki Takano [cph] Maintainer Oliver Keyes

More information

Package Numero. November 24, 2018

Package Numero. November 24, 2018 Package Numero November 24, 2018 Type Package Title Statistical Framework to Define Subgroups in Complex Datasets Version 1.1.1 Date 2018-11-21 Author Song Gao [aut], Stefan Mutter [aut], Aaron E. Casey

More information

Finding Multidimensional Patterns in Multidimensional Time Series

Finding Multidimensional Patterns in Multidimensional Time Series MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Finding Multidimensional Patterns in Multidimensional Time Series Laftchiev, E.; Liu, Y. TR2018-044 June 30, 2018 Abstract Exact pattern matching

More information

Package milr. June 8, 2017

Package milr. June 8, 2017 Type Package Package milr June 8, 2017 Title Multiple-Instance Logistic Regression with LASSO Penalty Version 0.3.0 Date 2017-06-05 The multiple instance data set consists of many independent subjects

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 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 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 semver. January 6, 2017

Package semver. January 6, 2017 Type Package Title 'Semantic Versioning V2.0.0' Parser Version 0.2.0 Package semver January 6, 2017 Tools and functions for parsing, rendering and operating on semantic version strings. Semantic versioning

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 diffusr. May 17, 2018

Package diffusr. May 17, 2018 Type Package Title Network Diffusion Algorithms Version 0.1.4 Date 2018-04-20 Package diffusr May 17, 2018 Maintainer Simon Dirmeier Implementation of network diffusion algorithms

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

High Dimensional Time Series Generators

High Dimensional Time Series Generators High Dimensional Time Series Generators Jörg P. Bachmann and Johann-Christoph Freytag arxiv:.v [cs.lg] Apr Abstract joerg.bachmann@informatik.hu-berlin.de freytag@informatik.hu-berlin.de, Humboldt-Universität

More information

Package elmnnrcpp. July 21, 2018

Package elmnnrcpp. July 21, 2018 Type Package Title The Extreme Learning Machine Algorithm Version 1.0.1 Date 2018-07-21 Package elmnnrcpp July 21, 2018 BugReports https://github.com/mlampros/elmnnrcpp/issues URL https://github.com/mlampros/elmnnrcpp

More information

Package mixsqp. November 14, 2018

Package mixsqp. November 14, 2018 Encoding UTF-8 Type Package Version 0.1-79 Date 2018-11-05 Package mixsqp November 14, 2018 Title Sequential Quadratic Programming for Fast Maximum-Likelihood Estimation of Mixture Proportions URL https://github.com/stephenslab/mixsqp

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 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 gtrendsr. October 19, 2017

Package gtrendsr. October 19, 2017 Type Package Title Perform and Display Google Trends Queries Version 1.4.0 Date 2017-10-19 Package gtrendsr October 19, 2017 An interface for retrieving and displaying the information returned online by

More information

Package reconstructr

Package reconstructr Type Package Title Session Reconstruction and Analysis Version 2.0.2 Date 2018-07-26 Author Oliver Keyes Package reconstructr July 26, 2018 Maintainer Oliver Keyes Functions to reconstruct

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 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 SEMrushR. November 3, 2018

Package SEMrushR. November 3, 2018 Type Package Title R Interface to Access the 'SEMrush' API Version 0.1.0 Package SEMrushR November 3, 2018 Implements methods for querying SEO (Search Engine Optimization) and SEM (Search Engine Marketing)

More information

Package crossrun. October 8, 2018

Package crossrun. October 8, 2018 Version 0.1.0 Package crossrun October 8, 2018 Title Joint Distribution of Number of Crossings and Longest Run Joint distribution of number of crossings and the longest run in a series of independent Bernoulli

More information

Package weco. May 4, 2018

Package weco. May 4, 2018 Package weco May 4, 2018 Title Western Electric Company Rules (WECO) for Shewhart Control Chart Version 1.2 Author Chenguang Wang [aut, cre], Lingmin Zeng [aut], Zheyu Wang [aut], Wei Zhao1 [aut], Harry

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 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 glcm. August 29, 2016

Package glcm. August 29, 2016 Version 1.6.1 Date 2016-03-08 Package glcm August 29, 2016 Title Calculate Textures from Grey-Level Co-Occurrence Matrices (GLCMs) Maintainer Alex Zvoleff Depends R (>= 2.10.0)

More information

Package Rtsne. April 14, 2017

Package Rtsne. April 14, 2017 Type Package Package Rtsne April 14, 2017 Title T-Distributed Stochastic Neighbor Embedding using a Barnes-Hut Implementation Version 0.13 Description An R wrapper around the fast T-distributed Stochastic

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 bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files Version 0.1.3 Date 2018-08-12 Title Read Large Text Files Package bigreadr August 13, 2018 Read large text s by splitting them in smaller s. License GPL-3 Encoding UTF-8 LazyData true ByteCompile true

More information

Package strat. November 23, 2016

Package strat. November 23, 2016 Type Package Package strat November 23, 2016 Title An Implementation of the Stratification Index Version 0.1 An implementation of the stratification index proposed by Zhou (2012) .

More information

Package wrswor. R topics documented: February 2, Type Package

Package wrswor. R topics documented: February 2, Type Package Type Package Package wrswor February 2, 2018 Title Weighted Random Sampling without Replacement Version 1.1 Date 2018-02-02 Description A collection of implementations of classical and novel algorithms

More information

Package SimilaR. June 21, 2018

Package SimilaR. June 21, 2018 Version 1.0.2 Date 2018-06-21 Title R Source Code Similarity Evaluation Package SimilaR June 21, 2018 Description An Implementation of a novel method to determine similarity of R functions based on program

More information

Package farver. November 20, 2018

Package farver. November 20, 2018 Type Package Package farver November 20, 2018 Title Vectorised Colour Conversion and Comparison Version 1.1.0 Date 2018-11-20 Maintainer Thomas Lin Pedersen The encoding of colour

More information

Package rcba. May 27, 2018

Package rcba. May 27, 2018 Package rcba May 27, 2018 Title CBA Classifier for R Version 0.4.2 Author Jaroslav Kuchar [aut, cre], Tomas Kliegr [ctb] Maintainer Jaroslav Kuchar URL https://github.com/jaroslav-kuchar/rcba

More information

Package ezknitr. September 16, 2016

Package ezknitr. September 16, 2016 Package ezknitr September 16, 2016 Title Avoid the Typical Working Directory Pain When Using 'knitr' Version 0.6 An extension of 'knitr' that adds flexibility in several ways. One common source of frustration

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 ompr. November 18, 2017

Package ompr. November 18, 2017 Type Package Package ompr November 18, 2017 Title Model and Solve Mixed Integer Linear Programs Version 0.7.0 Model mixed integer linear programs in an algebraic way directly in R. The is solver-independent

More information

Package coga. May 8, 2018

Package coga. May 8, 2018 Title Convolution of Gamma Distributions Version 1.0.0 Date 2018-05-08 Package coga May 8, 2018 Evaluation for density and distribution function of convolution of gamma distributions in R. Two related

More information

Package gtrendsr. August 4, 2018

Package gtrendsr. August 4, 2018 Type Package Title Perform and Display Google Trends Queries Version 1.4.2 Date 2018-08-03 Package gtrendsr August 4, 2018 An interface for retrieving and displaying the information returned online by

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 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 eply. April 6, 2018

Package eply. April 6, 2018 Type Package Title Apply a Function Over Expressions Version 0.1.2 Package eply April 6, 2018 Evaluate a function over a data frame of expressions. License GPL-3 Depends R (>= 3.0.0) Imports magrittr,

More information

Benchmarking Univariate Time Series Classifiers

Benchmarking Univariate Time Series Classifiers Einreichung für: Konferenz, Geplant als Veröffentlichung innerhalb der Lecture Notes in Informatics (LNI) Benchmarking Univariate Time Series Classifiers Patrick Schäfer 1 and Ulf Leser 1 Abstract: Time

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 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 queuecomputer

Package queuecomputer Package queuecomputer Title Computationally Efficient Queue Simulation Version 0.8.2 November 17, 2017 Implementation of a computationally efficient method for simulating queues with arbitrary arrival

More information

Package embed. November 19, 2018

Package embed. November 19, 2018 Version 0.0.2 Package embed November 19, 2018 Title Extra Recipes for Encoding Categorical Predictors Description Factor predictors can be converted to one or more numeric representations using simple

More information

Package PUlasso. April 7, 2018

Package PUlasso. April 7, 2018 Type Package Package PUlasso April 7, 2018 Title High-Dimensional Variable Selection with Presence-Only Data Version 3.1 Date 2018-4-4 Efficient algorithm for solving PU (Positive and Unlabelled) problem

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 patentsview. July 12, 2017

Package patentsview. July 12, 2017 Type Package Title An R Client to the PatentsView API Version 0.1.0 Encoding UTF-8 Package patentsview July 12, 2017 Provides functions to simplify the PatentsView API ()

More information

Package clipr. June 23, 2018

Package clipr. June 23, 2018 Type Package Title Read and Write from the System Clipboard Version 0.4.1 Package clipr June 23, 2018 Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards. Imports utils

More information

Package geogrid. August 19, 2018

Package geogrid. August 19, 2018 Package geogrid August 19, 2018 Title Turn Geospatial Polygons into Regular or Hexagonal Grids Version 0.1.0.1 Turn irregular polygons (such as geographical regions) into regular or hexagonal grids. This

More information

Package tiler. June 9, 2018

Package tiler. June 9, 2018 Version 0.2.0 Package tiler June 9, 2018 Title Create Geographic and Non-Geographic Map Tiles Creates geographic map tiles from geospatial map files or nongeographic map tiles from simple image files.

More information

Package deductive. June 2, 2017

Package deductive. June 2, 2017 Package deductive June 2, 2017 Maintainer Mark van der Loo License GPL-3 Title Data Correction and Imputation Using Deductive Methods LazyData no Type Package LazyLoad yes Attempt

More information

Package waver. January 29, 2018

Package waver. January 29, 2018 Type Package Title Calculate Fetch and Wave Energy Version 0.2.1 Package waver January 29, 2018 Description Functions for calculating the fetch (length of open water distance along given directions) and

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 ramcmc. May 29, 2018

Package ramcmc. May 29, 2018 Title Robust Adaptive Metropolis Algorithm Version 0.1.0-1 Date 2018-05-29 Author Jouni Helske Package ramcmc May 29, 2018 Maintainer Jouni Helske Function for adapting the shape

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 readobj. November 2, 2017

Package readobj. November 2, 2017 Type Package Package readobj November 2, 2017 Title Fast Reader for 'Wavefront' OBJ 3D Scene Files Version 0.3 Wraps 'tiny_obj_loader' C++ library for reading the 'Wavefront' OBJ 3D file format including

More information

Package WordR. September 7, 2017

Package WordR. September 7, 2017 Type Package Package WordR September 7, 2017 Title Rendering Word Documents with R Inline Code Version 0.2.2 Author Tomas Hovorka Maintainer Tomas Hovorka Serves for rendering

More information

Package sparsehessianfd

Package sparsehessianfd Type Package Package sparsehessianfd Title Numerical Estimation of Sparse Hessians Version 0.3.3.3 Date 2018-03-26 Maintainer Michael Braun March 27, 2018 URL http://www.smu.edu/cox/departments/facultydirectory/braunmichael

More information

Package skm. January 23, 2017

Package skm. January 23, 2017 Type Package Title Selective k-means Version 0.1.5.4 Author Guang Yang Maintainer Guang Yang Package skm January 23, 2017 Algorithms for solving selective k-means problem, which is

More information

Package goodpractice

Package goodpractice Title Advice on R Package Building Version 1.0.2 Package goodpractice May 2, 2018 Give advice about good practices when building R packages. Advice includes functions and syntax to avoid, package structure,

More information

Package KernelKnn. January 16, 2018

Package KernelKnn. January 16, 2018 Type Package Title Kernel k Nearest Neighbors Version 1.0.8 Date 2018-01-16 Package KernelKnn January 16, 2018 Author Lampros Mouselimis Maintainer Lampros Mouselimis

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 arc. April 18, 2018

Package arc. April 18, 2018 Title Association Rule Classification Version 1.2 Date 2018-04-13 Author Tomas Kliegr [aut, cre] Maintainer Tomas Kliegr Package arc April 18, 2018 Implements the Classification-based

More information

Package RSpectra. May 23, 2018

Package RSpectra. May 23, 2018 Type Package Package RSpectra May 23, 2018 Title Solvers for Large-Scale Eigenvalue and SVD Problems Version 0.13-1 Date 2018-05-22 Description R interface to the 'Spectra' library

More information

Package RODBCext. July 31, 2017

Package RODBCext. July 31, 2017 Version 0.3.1 Package RODBCext July 31, 2017 Title Parameterized Queries Extension for RODBC An extension for RODBC package adding support for parameterized queries. URL https://github.com/zozlak/rodbcext

More information

Package packcircles. April 28, 2018

Package packcircles. April 28, 2018 Package packcircles April 28, 2018 Type Package Version 0.3.2 Title Circle Packing Simple algorithms for circle packing. Date 2018-04-28 URL https://github.com/mbedward/packcircles BugReports https://github.com/mbedward/packcircles/issues

More information

Package liftr. R topics documented: May 14, Type Package

Package liftr. R topics documented: May 14, Type Package Type Package Package liftr May 14, 2018 Title Containerize R Markdown Documents for Continuous Reproducibility Version 0.9 Maintainer Nan Xiao Persistent reproducible reporting by containerization

More information

Package redlistr. May 11, 2018

Package redlistr. May 11, 2018 Package redlistr May 11, 2018 Title Tools for the IUCN Red List of Ecosystems and Species Version 1.0.1 A toolbox created by members of the International Union for Conservation of Nature (IUCN) Red List

More information

Package colf. October 9, 2017

Package colf. October 9, 2017 Type Package Package colf October 9, 2017 Title Constrained Optimization on Linear Function Version 0.1.3 URL https://github.com/lyzander/colf BugReports https://github.com/lyzander/colf/issues Depends

More information

Package internetarchive

Package internetarchive Type Package Title An API Client for the Internet Archive Package internetarchive December 8, 2016 Search the Internet Archive, retrieve metadata, and download files. Version 0.1.6 Date 2016-12-08 License

More information

Package SNPediaR. April 9, 2019

Package SNPediaR. April 9, 2019 Title Query data from SNPedia Version 1.8.0 Date 2015-09-26 Package SNPediaR April 9, 2019 Description SNPediaR provides some tools for downloading and parsing data from the SNPedia web site .

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 optimus. March 24, 2017

Package optimus. March 24, 2017 Type Package Package optimus March 24, 2017 Title Model Based Diagnostics for Multivariate Cluster Analysis Version 0.1.0 Date 2017-03-24 Maintainer Mitchell Lyons Description

More information

Package understandbpmn

Package understandbpmn Type Package Package understandbpmn June 8, 2018 Title Calculator of Understandability Metrics for BPMN Version 1.1.0 Author Jonas Lieben Maintainer Jonas Lieben Calculate several

More information

Package textrank. December 18, 2017

Package textrank. December 18, 2017 Package textrank December 18, 2017 Type Package Title Summarize Text by Ranking Sentences and Finding Keywords Version 0.2.0 Maintainer Jan Wijffels Author Jan Wijffels [aut, cre,

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 paralleldist

Package paralleldist Type Package Package paralleldist December 5, 2017 Title Parallel Distance Matrix Computation using Multiple Threads Version 0.2.1 Author Alexander Eckert [aut, cre] Maintainer Alexander Eckert

More information

Package vinereg. August 10, 2018

Package vinereg. August 10, 2018 Type Package Title D-Vine Quantile Regression Version 0.5.0 Package vinereg August 10, 2018 Maintainer Thomas Nagler Description Implements D-vine quantile regression models with parametric

More information

Package geneslope. October 26, 2016

Package geneslope. October 26, 2016 Type Package Package geneslope October 26, 2016 Title Genome-Wide Association Study with SLOPE Version 0.37.0 Date 2016-10-26 Genome-wide association study (GWAS) performed with SLOPE, short for Sorted

More information

Package geoops. March 19, 2018

Package geoops. March 19, 2018 Type Package Package geoops March 19, 2018 Title 'GeoJSON' Topology Calculations and Operations Tools for doing calculations and manipulations on 'GeoJSON', a 'geospatial' data interchange format ().

More information

Package ezsummary. August 29, 2016

Package ezsummary. August 29, 2016 Type Package Title Generate Data Summary in a Tidy Format Version 0.2.1 Package ezsummary August 29, 2016 Functions that simplify the process of generating print-ready data summary using 'dplyr' syntax.

More information

Package ECOSolveR. February 18, 2018

Package ECOSolveR. February 18, 2018 Package ECOSolveR Type Package Title Embedded Conic Solver in R Version 0.4 Date 2018-02-16 VignetteBuilder knitr SystemRequirements GNU make February 18, 2018 URL https://github.com/bnaras/ecosolver BugReports

More information

Package rmi. R topics documented: August 2, Title Mutual Information Estimators Version Author Isaac Michaud [cre, aut]

Package rmi. R topics documented: August 2, Title Mutual Information Estimators Version Author Isaac Michaud [cre, aut] Title Mutual Information Estimators Version 0.1.1 Author Isaac Michaud [cre, aut] Pacage rmi August 2, 2018 Maintainer Isaac Michaud Provides mutual information estimators based on

More information

Package Cubist. December 2, 2017

Package Cubist. December 2, 2017 Type Package Package Cubist December 2, 2017 Title Rule- And Instance-Based Regression Modeling Version 0.2.1 Date 2017-12-01 Maintainer Max Kuhn Description Regression modeling using

More information

Package virustotal. May 1, 2017

Package virustotal. May 1, 2017 Title R Client for the VirusTotal API Version 0.2.1 Maintainer Gaurav Sood Package virustotal May 1, 2017 Use VirusTotal, a Google service that analyzes files and URLs for viruses,

More information

Package attrcusum. December 28, 2016

Package attrcusum. December 28, 2016 Type Package Package attrcusum December 28, 2016 Title Tools for Attribute VSI CUSUM Control Chart Version 0.1.0 An implementation of tools for design of attribute variable sampling interval cumulative

More information

Package knitrprogressbar

Package knitrprogressbar Type Package Title Provides Progress Bars in 'knitr' Version 1.1.0 Package knitrprogressbar February 20, 2018 Provides a progress bar similar to 'dplyr' that can write progress out to a variety of locations,

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 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 ggrepel. September 30, 2017

Package ggrepel. September 30, 2017 Version 0.7.0 Package ggrepel September 30, 2017 Title Repulsive Text and Label Geoms for 'ggplot2' Description Provides text and label geoms for 'ggplot2' that help to avoid overlapping text labels. Labels

More information

Package Rsomoclu. January 3, 2019

Package Rsomoclu. January 3, 2019 Package Rsomoclu Version 1.7.5.3 Date 2019-01-03 Title Somoclu Imports kohonen January 3, 2019 Suggests Description Somoclu is a massively parallel implementation of self-organizing maps. It exploits multicore

More information

Package intcensroc. May 2, 2018

Package intcensroc. May 2, 2018 Type Package Package intcensroc May 2, 2018 Title Fast Spline Function Based Constrained Maximum Likelihood Estimator for AUC Estimation of Interval Censored Survival Data Version 0.1.1 Date 2018-05-03

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 timechange. April 26, 2018

Package timechange. April 26, 2018 Title Efficient Changing of Date-Times Version 0.0.1 Package timechange April 26, 2018 Description Efficient routines for manipulation of date-time objects while accounting for time-zones and daylight

More information