Package knnp. R topics documented: July 1, Version Date

Size: px
Start display at page:

Download "Package knnp. R topics documented: July 1, Version Date"

Transcription

1 Version Date Package knnp Jul 1, 2018 Title Time Series Preiction using K-Nearest Neighbors Algorithm (Parallel) Depens R (>= 3.3.3) Imports paralleldist, forecast, stats, utils, oparallel, foreach Two main functionalities are provie. One of them is preicting values with k-nearest neighbors algorithm an the other is optimizing the parameters k an of the algorithm. These are carrie out in parallel using multiple threas. License AGPL-3 RoxgenNote URL BugReports NeesCompilation no Author Daniel Bastarrica Lacalle [aut], Javier Berecio Trigueros [aut, cre] Maintainer Javier Berecio Trigueros <javierbereciot@gmail.com> Repositor CRAN Date/Publication :00:02 UTC R topics ocumente: knn_istances knn_elements knn_next knn_optim knn_optim_parallel knn_optim_parallel knn_optim_parallelf knn_past Inex 12 1

2 2 knn_istances knn_istances Distances matrixes computation an saving in files with a maximum of columns Calculates one istances matrix per each for the given time series an then save them in files. Each file will contain a maximum of cols number of columns from the corresponing istances matrix. knn_istances(,, istance_metric = "eucliean", threas = NULL, file, cols = 1) s of s to be analze. istance_metric Tpe of metric to evaluate the istance between points. Man metrics are supporte: eucliean, manhattan, namic time warping, canberra an others. For more information about the supporte metrics check the values that metho argument of function pardist (from paralleldist package) can take as this is the function use to calculate the istances. Link to the package info: https: //cran.r-project.org/package=paralleldist. Some of the values that this argument can take are "eucliean", "manhattan", "tw", "canberra", "chor". threas file cols Number of threas to be use when parallelizing istances calculation, efault is number of cores etecte - 1 or 1 if there is onl one core. Path an i of the files where the istances matrixes will be save. Number of columns per file. knn_istances(airpassengers, 1:3, threas = 2, file = "AirPassengers", cols = 2) knn_istances(lakehuron, 1:6, threas = 2, file = "LakeHuron", cols = 10)

3 knn_elements 3 knn_elements Elements matrix computation Creates a matrix to be use for calculating istances. The most recent element is put in the first row of the matrix, the secon most recent element in the secon row an so on. Therefore, the olest element is put in the last row. knn_elements(, ) A matrix. Length of each of the elements. A matrix to be use for calculating istances. knn_next Next value preiction Preicts next value of the time series using k-nearest neighbors algorithm. knn_next(, k,, v = 1, istance_metric = "eucliean", weight = "proximit", threas = NULL) k v Number of neighbors. Length of each of the elements. Variable to be preicte if given multivariate time series.

4 4 knn_optim istance_metric Tpe of metric to evaluate the istance between points. Man metrics are supporte: eucliean, manhattan, namic time warping, canberra an others. For more information about the supporte metrics check the values that metho argument of function pardist (from paralleldist package) can take as this is the function use to calculate the istances. Link to the package info: https: //cran.r-project.org/package=paralleldist. Some of the values that this argument can take are "eucliean", "manhattan", "tw", "canberra", "chor". weight threas The preicte value. Tpe of weight to be use at the time of calculating the preicte value with a weighte mean. Three supporte: proximit, same, linear. proximit the weight assigne to each neighbor is proportional to its istance same all neighbors are assigne with the same weight linear nearest neighbor is assigne with weight k, secon closest neighbor with weight k-1, an so on until the least nearest neighbor which is assigne with a weight of 1. Number of threas to be use when parallelizing istances calculation, efault is number of cores etecte - 1 or 1 if there is onl one core. knn_next(airpassengers, 5, 2, threas = 2) knn_next(lakehuron, 3, 6, threas = 2) knn_optim k an optimization Optimizes the values of k an for a given time series. First, values corresponing to instants from init + 1 to the last one are preicte. The first value preicte, which correspons to instant init + 1, is calculate using instants from 1 to instant init; the secon value preicte, which correspons to instant init + 2, is preicte using instants from 1 to instant init + 1; an so on until the last value, which correspons to instant n (length of the given time series), is preicte using instants from 1 to instant n - 1. Finall, the error is evaluate between the preicte values an the real values of the series. This version of the optimization function onl uses one threa except for the istances matrixes calculation, for which the number of threas to be use can be specifie. knn_optim(, k,, v = 1, init = NULL, istance_metric = "eucliean", error_metric = "MAE", weight = "proximit", threas = NULL)

5 knn_optim 5 k v init s of k s to be analze. s of s to be analze. Variable to be preicte if given multivariate time series. Variable that etermines the limit of the known past for the first instant preicte. istance_metric Tpe of metric to evaluate the istance between points. Man metrics are supporte: eucliean, manhattan, namic time warping, canberra an others. For more information about the supporte metrics check the values that metho argument of function pardist (from paralleldist package) can take as this is the function use to calculate the istances. Link to the package info: https: //cran.r-project.org/package=paralleldist. Some of the values that this argument can take are "eucliean", "manhattan", "tw", "canberra", "chor". error_metric weight threas Tpe of metric to evaluate the preiction error. Five metrics supporte: ME Mean Error RMSE Root Mean Square Error MAE Mean Absolute Error MPE Mean Percentage Error MAPE Mean Absolute Percentage Error Tpe of weight to be use at the time of calculating the preicte value with a weighte mean. Three supporte: proximit, same, linear. proximit the weight assigne to each neighbor is proportional to its istance same all neighbors are assigne with the same weight linear nearest neighbor is assigne with weight k, secon closest neighbor with weight k-1, an so on until the least nearest neighbor which is assigne with a weight of 1. Number of threas to be use when parallelizing, efault is number of cores etecte - 1 or 1 if there is onl one core. A matrix of errors, optimal k an. knn_optim(airpassengers, 1:5, 1:3, threas = 2) knn_optim(lakehuron, 1:10, 1:6, threas = 2)

6 6 knn_optim_parallel knn_optim_parallel Parallel k an optimization Optimizes the values of K an D for a given time series. First, values corresponing to instants from init + 1 to the last one are preicte. The first value preicte, which correspons to instant init + 1, is calculate using instants from 1 to instant init; the secon value preicte, which correspons to instant init + 2, is preicte using instants from 1 to instant init + 1; an so on until the last value, which correspons to instant n (length of the given time series), is preicte using instants from 1 to instant n - 1. Finall, the error is evaluate between the preicte values an the real values of the series. This version of the optimization function uses a parallelize istances calculation function, an the computation of the preicte values is one parallelizing b the number of s an the number of instants to be preicte. knn_optim_parallel(, k,, v = 1, init = NULL, istance_metric = "eucliean", error_metric = "MAE", weight = "proximit", threas = NULL) k v s of k s to be analze. s of s to be analze. Variable to be preicte if given multivariate time series. init Variable that etermines the limit of the known past for the first instant preicte. istance_metric Tpe of metric to evaluate the istance between points. Man metrics are supporte: eucliean, manhattan, namic time warping, canberra an others. For more information about the supporte metrics check the values that metho argument of function pardist (from paralleldist package) can take as this is the function use to calculate the istances. Link to the package info: https: //cran.r-project.org/package=paralleldist. Some of the values that this argument can take are "eucliean", "manhattan", "tw", "canberra", "chor". error_metric weight Tpe of metric to evaluate the preiction error. Five metrics supporte: ME Mean Error RMSE Root Mean Square Error MAE Mean Absolute Error MPE Mean Percentage Error MAPE Mean Absolute Percentage Error Tpe of weight to be use at the time of calculating the preicte value with a weighte mean. Three supporte: proximit, same, linear.

7 knn_optim_parallel2 7 threas proximit the weight assigne to each neighbor is proportional to its istance same all neighbors are assigne with the same weight linear nearest neighbor is assigne with weight k, secon closest neighbor with weight k-1, an so on until the least nearest neighbor which is assigne with a weight of 1. Number of threas to be use when parallelizing, efault is number of cores etecte - 1 or 1 if there is onl one core. A matrix of errors, optimal k an. knn_optim_parallel(airpassengers, 1:5, 1:3, threas = 2) knn_optim_parallel(lakehuron, 1:10, 1:6, threas = 2) knn_optim_parallel2 Parallel k an optimization Optimizes the values of k an for a given time series. First, values corresponing to instants from init + 1 to the last one are preicte. The first value preicte, which correspons to instant init + 1, is calculate using instants from 1 to instant init; the secon value preicte, which correspons to instant init + 2, is preicte using instants from 1 to instant init + 1; an so on until the last value, which correspons to instant n (length of the given time series), is preicte using instants from 1 to instant n - 1. Finall, the error is evaluate between the preicte values an the real values of the series. This version of the optimization function uses a parallelize istances calculation function, an the computation of the preicte values is one parallelizing b the number of s. knn_optim_parallel2(, k,, v = 1, init = NULL, istance_metric = "eucliean", error_metric = "MAE", weight = "proximit", threas = NULL) k v init s of k s to be analze. s of s to be analze. Variable to be preicte if given multivariate time series. Variable that etermines the limit of the known past for the first instant preicte.

8 8 knn_optim_parallelf istance_metric Tpe of metric to evaluate the istance between points. Man metrics are supporte: eucliean, manhattan, namic time warping, canberra an others. For more information about the supporte metrics check the values that metho argument of function pardist (from paralleldist package) can take as this is the function use to calculate the istances. Link to the package info: https: //cran.r-project.org/package=paralleldist. Some of the values that this argument can take are "eucliean", "manhattan", "tw", "canberra", "chor". error_metric weight threas A matrix of errors, optimal k an. Tpe of metric to evaluate the preiction error. Five metrics supporte: ME Mean Error RMSE Root Mean Square Error MAE Mean Absolute Error MPE Mean Percentage Error MAPE Mean Absolute Percentage Error Tpe of weight to be use at the time of calculating the preicte value with a weighte mean. Three supporte: proximit, same, linear. proximit the weight assigne to each neighbor is proportional to its istance same all neighbors are assigne with the same weight linear nearest neighbor is assigne with weight k, secon closest neighbor with weight k-1, an so on until the least nearest neighbor which is assigne with a weight of 1. Number of threas to be use when parallelizing, efault is number of cores etecte - 1 or 1 if there is onl one core. knn_optim_parallel2(airpassengers, 1:5, 1:3, threas = 2) knn_optim_parallel2(lakehuron, 1:10, 1:6, threas = 2) knn_optim_parallelf Parallel k an optimization reaing from files Optimizes the values of k an for a given time series. First, values corresponing to instants from init + 1 to the last one are preicte. The first value preicte, which correspons to instant init + 1, is calculate using instants from 1 to instant init; the secon value preicte, which correspons to instant init + 2, is preicte using instants from 1 to instant init + 1; an so on until the last value, which correspons to instant n (length of the given time series), is preicte using instants from 1 to instant n - 1. Finall, the error is evaluate between the preicte values an the real values of the series. This version of the optimization function uses a parallelize istances calculation

9 knn_optim_parallelf 9 function, an the computation of the preicte values is one parallelizing b the number of s an the number of instants to be preicte. Each threa that calculates preicte values reas onl the part of the corresponing istances matrix in which the information use to preict is containe. knn_optim_parallelf(, k,, v = 1, init = NULL, error_metric = "MAE", weight = "proximit", threas = NULL, file, cols) k v init error_metric weight threas file cols s of k;s to be analze. s of s to be analze. Variable to be preicte if given multivariate time series. Variable that etermines the limit of the known past for the first instant preicte. Tpe of metric to evaluate the preiction error. Five metrics supporte: ME Mean Error RMSE Root Mean Square Error MAE Mean Absolute Error MPE Mean Percentage Error MAPE Mean Absolute Percentage Error Tpe of weight to be use at the time of calculating the preicte value with a weighte mean. Three supporte: proximit, same, linear. proximit the weight assigne to each neighbor is proportional to its istance same all neighbors are assigne with the same weight linear nearest neighbor is assigne with weight k, secon closest neighbor with weight k-1, an so on until the least nearest neighbor which is assigne with a weight of 1. Number of threas to be use when parallelizing, efault is number of cores etecte - 1 or 1 if there is onl one core. Path an i of the files where the istances matrixes are. Number of columns per file. A matrix of errors, optimal k an. knn_istances(airpassengers, 1:3, file = "AirPassengers", cols = 2, threas = 2) knn_optim_parallelf(airpassengers, 1:5, 1:3, file = "AirPassengers", cols = 2, threas = 2) knn_istances(lakehuron, 1:6, file = "LakeHuron", cols = 10, threas = 2) knn_optim_parallelf(lakehuron, 1:10, 1:6, file = "LakeHuron", cols = 10, threas = 2)

10 10 knn_past knn_past Past time preiction Preicts values of the time series using k-nearest neighbors algorithm. s corresponing to instants from init + 1 to the last one are preicte. The first value preicte, which correspons to instant init + 1, is calculate using instants from 1 to instant init; the secon value preicte, which correspons to instant init + 2, is preicte using instants from 1 to instant init + 1; an so on until the last value, which correspons to instant n (length of the given time series), is preicte using instants from 1 to instant n - 1. knn_past(, k,, v = 1, init = NULL, istance_metric = "eucliean", weight = "proximit", threas = NULL) k v Number of neighbors. Length of each of the elements. Variable to be preicte if given multivariate time series. init Variable that etermines the limit of the known past for the first instant preicte. istance_metric Tpe of metric to evaluate the istance between points. Man metrics are supporte: eucliean, manhattan, namic time warping, canberra an others. For more information about the supporte metrics check the values that metho argument of function pardist (from paralleldist package) can take as this is the function use to calculate the istances. Link to the package info: https: //cran.r-project.org/package=paralleldist. Some of the values that this argument can take are "eucliean", "manhattan", "tw", "canberra", "chor". weight threas The preicte values. Tpe of weight to be use at the time of calculating the preicte value with a weighte mean. Three supporte: proximit, same, linear. proximit the weight assigne to each neighbor is proportional to its istance same all neighbors are assigne with the same weight linear nearest neighbor is assigne with weight k, secon closest neighbor with weight k-1, an so on until the least nearest neighbor which is assigne with a weight of 1. Number of threas to be use when parallelizing, efault is number of cores etecte - 1 or 1 if there is onl one core.

11 knn_past 11 knn_past(airpassengers, 5, 2, threas = 2) knn_past(lakehuron, 3, 6, threas = 2)

12 Inex knn_istances, 2 knn_elements, 3 knn_next, 3 knn_optim, 4 knn_optim_parallel, 6 knn_optim_parallel2, 7 knn_optim_parallelf, 8 knn_past, 10 12

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 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 robets. March 6, Type Package

Package robets. March 6, Type Package Type Package Package robets March 6, 2018 Title Forecasting Time Series with Robust Exponential Smoothing Version 1.4 Date 2018-03-06 We provide an outlier robust alternative of the function ets() in the

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 rucrdtw. October 13, 2017

Package rucrdtw. October 13, 2017 Package rucrdtw Type Package Title R Bindings for the UCR Suite Version 0.1.3 Date 2017-10-12 October 13, 2017 BugReports https://github.com/pboesu/rucrdtw/issues URL https://github.com/pboesu/rucrdtw

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

Package dissutils. August 29, 2016 Type Package Package dissutils August 29, 2016 Title Utilities for making pairwise comparisons of multivariate data Version 1.0 Date 2012-12-06 Author Benjamin N. Taft Maintainer Benjamin N. Taft

More information

Package dbx. July 5, 2018

Package dbx. July 5, 2018 Type Package Title A Fast, Easy-to-Use Database Interface Version 0.1.0 Date 2018-07-05 Package dbx July 5, 2018 Provides select, insert, update, upsert, and delete database operations. Supports 'PostgreSQL',

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

Package frequencyconnectedness Type Package Package frequencyconnectedness September 24, 2018 Title Spectral Decomposition of Connectedness Measures Version 0.2.1 Date 2018-09-24 Accompanies a paper (Barunik, Krehlik (2018) )

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 subplex. April 5, 2018

Package subplex. April 5, 2018 Package subplex April 5, 2018 Version 1.5-4 Date 2018-04-04 Title Unconstrained Optimization using the Subplex Algorithm License GPL-3 Depends R(>= 2.5.1) URL https://github.com/kingaa/subplex/ BugReports

More information

Package available. November 17, 2017

Package available. November 17, 2017 Package available November 17, 2017 Title Check if the Title of a Package is Available, Appropriate and Interesting Version 1.0.0 Check if a given package is available to use. It checks the 's validity.

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 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 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 areaplot. October 18, 2017

Package areaplot. October 18, 2017 Version 1.2-0 Date 2017-10-18 Package areaplot October 18, 2017 Title Plot Stacked Areas and Confidence Bands as Filled Polygons Imports graphics, grdevices, stats Suggests MASS Description Plot stacked

More information

Package shinyhelper. June 21, 2018

Package shinyhelper. June 21, 2018 Package shinyhelper June 21, 2018 Type Package Title Easily Add Markdown Help Files to 'shiny' App Elements Version 0.3.0 BugReports https://github.com/cwthom/shinyhelper/issues Creates a lightweight way

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

Package rbraries. April 18, 2018 Title Interface to the 'Libraries.io' API Package rbraries April 18, 2018 Interface to the 'Libraries.io' API (). 'Libraries.io' indexes data from 36 different package managers

More information

Package repec. August 31, 2018

Package repec. August 31, 2018 Type Package Title Access RePEc Data Through API Version 0.1.0 Package repec August 31, 2018 Utilities for accessing RePEc (Research Papers in Economics) through a RESTful API. You can request a and get

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

Package sfc. August 29, 2016 Type Package Title Substance Flow Computation Version 0.1.0 Package sfc August 29, 2016 Description Provides a function sfc() to compute the substance flow with the input files --- ``data'' and ``model''.

More information

CS 106 Winter 2016 Craig S. Kaplan. Module 01 Processing Recap. Topics

CS 106 Winter 2016 Craig S. Kaplan. Module 01 Processing Recap. Topics CS 106 Winter 2016 Craig S. Kaplan Moule 01 Processing Recap Topics The basic parts of speech in a Processing program Scope Review of syntax for classes an objects Reaings Your CS 105 notes Learning Processing,

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 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 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 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 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 ecoseries. R topics documented: September 27, 2017

Package ecoseries. R topics documented: September 27, 2017 Package ecoseries September 27, 2017 Title An R Interface to Brazilian Central Bank and Sidra APIs and the IPEA Data Version 0.1.5 Date 2017-09-27 Maintainer Fernando Teixeira

More information

Package IATScore. January 10, 2018

Package IATScore. January 10, 2018 Package IATScore January 10, 2018 Type Package Title Scoring Algorithm for the Implicit Association Test (IAT) Version 0.1.1 Author Daniel Storage [aut, cre] Maintainer Daniel Storage

More information

Package clustering.sc.dp

Package clustering.sc.dp Type Package Package clustering.sc.dp May 4, 2015 Title Optimal Distance-Based Clustering for Multidimensional Data with Sequential Constraint Version 1.0 Date 2015-04-28 Author Tibor Szkaliczki [aut,

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 rtsplot. September 15, 2018

Package rtsplot. September 15, 2018 Tpe Package Title Time Series Plot Version 0.1.1 Package rtsplot September 15, 2018 A fast and elegant time series visualization package. In addition to the standard R plot tpes, this package supports

More information

Package sigqc. June 13, 2018

Package sigqc. June 13, 2018 Title Quality Control Metrics for Gene Signatures Version 0.1.20 Package sigqc June 13, 2018 Description Provides gene signature quality control metrics in publication ready plots. Namely, enables the

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 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 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 MatchIt. April 18, 2017

Package MatchIt. April 18, 2017 Version 3.0.1 Date 2017-04-18 Package MatchIt April 18, 2017 Title Nonparametric Preprocessing for Parametric Casual Inference Selects matched samples of the original treated and control groups with similar

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

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 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 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 NORTARA. February 19, 2015

Package NORTARA. February 19, 2015 Package NORTARA February 19, 2015 Title Generation of Multivariate Data with Arbitrary Marginals Version 1.0.0 Description An implementation of a specific method for generating n-dimensional random vectors

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

Package clusterrepro Version 0.9 Date 2018-10-10 Package clusterrepro Title Reproducibility of Gene Expression Clusters October 15, 2018 Author Amy Kapp and Rob Tibshirani Maintainer

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

Package calibrar. August 29, 2016 Version 0.2.0 Package calibrar August 29, 2016 Title Automated Parameter Estimation for Complex (Ecological) Models Automated parameter estimation for complex (ecological) models in R. This package allows

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

1 Surprises in high dimensions

1 Surprises in high dimensions 1 Surprises in high imensions Our intuition about space is base on two an three imensions an can often be misleaing in high imensions. It is instructive to analyze the shape an properties of some basic

More information

Package censusr. R topics documented: June 14, Type Package Title Collect Data from the Census API Version 0.0.

Package censusr. R topics documented: June 14, Type Package Title Collect Data from the Census API Version 0.0. Type Package Title Collect Data from the Census API Version 0.0.3 Date 2017-06-13 Package censusr June 14, 2017 Use the US Census API to collect summary data tables for SF1 and ACS datasets at arbitrary

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

Package ibm. August 29, 2016 Version 0.1.0 Title Individual Based Models in R Package ibm August 29, 2016 Implementation of some (simple) Individual Based Models and methods to create new ones, particularly for population dynamics

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 taxizedb. June 21, 2017

Package taxizedb. June 21, 2017 Type Package Package taxizedb June 21, 2017 Title Tools for Working with 'Taxonomic' Databases Tools for working with 'taxonomic' databases, including utilities for downloading databases, loading them

More information

Package enpls. May 14, 2018

Package enpls. May 14, 2018 Package enpls May 14, 2018 Type Package Title Ensemble Partial Least Squares Regression Version 6.0 Maintainer Nan Xiao An algorithmic framework for measuring feature importance, outlier detection,

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 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 grec. R topics documented: August 13, Type Package

Package grec. R topics documented: August 13, Type Package Type Package Package grec August 13, 2017 Title GRadient-Based RECognition of Spatial Patterns in Environmental Data Version 1.1.1 Date 2017-08-13 URL https://github.com/luislaum/grec BugReports https://github.com/luislaum/grec/issues

More information

Package NFP. November 21, 2016

Package NFP. November 21, 2016 Type Package Title Network Fingerprint Framework in R Version 0.99.2 Date 2016-11-19 Maintainer Yang Cao Package NFP November 21, 2016 An implementation of the network fingerprint

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

Package TestDataImputation Type Package Package TestDataImputation August 11, 2016 Title Missing Item Responses Imputation for Test and Assessment Data Version 1.0 Date 2016-08-10 Author Shenghai Dai [aut, cre], Xiaolin Wang [aut],

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

filtering LETTER An Improved Neighbor Selection Algorithm in Collaborative Taek-Hun KIM a), Student Member and Sung-Bong YANG b), Nonmember

filtering LETTER An Improved Neighbor Selection Algorithm in Collaborative Taek-Hun KIM a), Student Member and Sung-Bong YANG b), Nonmember 107 IEICE TRANS INF & SYST, VOLE88 D, NO5 MAY 005 LETTER An Improve Neighbor Selection Algorithm in Collaborative Filtering Taek-Hun KIM a), Stuent Member an Sung-Bong YANG b), Nonmember SUMMARY Nowaays,

More information

Package loggit. April 9, 2018

Package loggit. April 9, 2018 Title Effortless Exception Logging Package loggit April 9, 2018 A very simple and easy-to-use set of suspiciously-familiar functions. 'loggit' provides a set of wrappings for base R's message(), warning(),

More information

Package aws.transcribe

Package aws.transcribe Type Package Title Client for 'AWS Transcribe' Version 0.1.2 Date 2018-04-09 Package aws.transcribe April 9, 2018 Client for 'AWS Transcribe' , a cloud

More information

Package CorporaCoCo. R topics documented: November 23, 2017

Package CorporaCoCo. R topics documented: November 23, 2017 Encoding UTF-8 Type Package Title Corpora Co-Occurrence Comparison Version 1.1-0 Date 2017-11-22 Package CorporaCoCo November 23, 2017 A set of functions used to compare co-occurrence between two corpora.

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 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 NNLM. June 18, 2018

Package NNLM. June 18, 2018 Type Package Package NNLM June 18, 2018 Title Fast and Versatile Non-Negative Matrix Factorization Description This is a package for Non-Negative Linear Models (NNLM). It implements fast sequential coordinate

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

Package FastKNN. February 19, 2015

Package FastKNN. February 19, 2015 Pacage FastKNN February 19, 2015 Type Pacage Title Fast -Nearest Neighbors Version 0.0.1 Date 2015-02-11 Author Gaston Besanson Maintainer Gaston Besanson Compute labels for a test

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 ClusterBootstrap

Package ClusterBootstrap Package ClusterBootstrap June 26, 2018 Title Analyze Clustered Data with Generalized Linear Models using the Cluster Bootstrap Date 2018-06-26 Version 1.0.0 Provides functionality for the analysis of clustered

More information

Package oec. R topics documented: May 11, Type Package

Package oec. R topics documented: May 11, Type Package Type Package Package oec May 11, 2018 Title Observatory of Economic Complexity API Wrapper and Utility Program Version 2.7.8 Date 2018-06-11 Maintainer Mauricio Vargas S. URL https://cran.r-project.org/package=oec

More information

Package combiter. December 4, 2017

Package combiter. December 4, 2017 Type Package Title Combinatorics Iterators Version 1.0.3 Package combiter December 4, 2017 Provides iterators for combinations, permutations, subsets, and Cartesian product, which allow one to go through

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

Cloud Search Service Product Introduction. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Cloud Search Service Product Introduction. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. 1.3.15 Issue 01 Date 2018-11-21 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Lt. 2019. All rights reserve. No part of this ocument may be reprouce or transmitte in any form or by any

More information

Package PCADSC. April 19, 2017

Package PCADSC. April 19, 2017 Type Package Package PCADSC April 19, 2017 Title Tools for Principal Component Analysis-Based Data Structure Comparisons Version 0.8.0 A suite of non-parametric, visual tools for assessing differences

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 fusionclust. September 19, 2017

Package fusionclust. September 19, 2017 Package fusionclust September 19, 2017 Title Clustering and Feature Screening using L1 Fusion Penalty Version 1.0.0 Provides the Big Merge Tracker and COSCI algorithms for convex clustering and feature

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 longclust. March 18, 2018

Package longclust. March 18, 2018 Package longclust March 18, 2018 Type Package Title Model-Based Clustering and Classification for Longitudinal Data Version 1.2.2 Date 2018-03-18 Author Paul D. McNicholas [aut, cre], K. Raju Jampani [aut]

More information