Package bupar. March 21, 2018

Size: px
Start display at page:

Download "Package bupar. March 21, 2018"

Transcription

1 Type Package Title Business Process Analysis in R Version Date Package bupar March 21, 2018 Comprehensive Business Process Analysis toolkit. Creates S3-class for event log objects, and related handler functions. Imports related packages for filtering event data, computation of descriptive statistics, handling of 'Petri Net' objects and visualization of process maps. See also packages 'edear','processmapr', 'eventdatar' and 'processmonitr'. License MIT + file LICENSE Encoding UTF-8 LazyData true RoxygenNote Imports magrittr, dplyr, data.table, shiny, miniui, purrr, tidyr, glue, forcats, rlang, eventdatar (>= 0.2.0) URL Suggests testthat NeedsCompilation no Author Gert Janssenswillen [aut, cre] Maintainer Gert Janssenswillen <gert.janssenswillen@uhasselt.be> Repository CRAN Date/Publication :35:09 UTC R topics documented: activities activities_to_ activity_id activity_instance_id activity_labels act_collapse

2 2 activities act_recode act_unite bupar cases case_id case_labels case_list durations filter_attributes group_by_activity group_by_activity_instance group_by_case group_by_resource group_by_resource_activity lifecycle_id mapping n_activities n_activity_instances n_cases n_events n_resources n_traces print print._mapping resources resource_id resource_labels re_map simple_ summary timestamp traces trace_list ungroup_ Index 29 activities Activities Returns a tbl_df containing a list of all activity types in the event log, with their absolute and relative frequency

3 activities_to_ 3 activities() activities() ## S3 method for class 'grouped_' activities() The event log to be used. An object of class. : Generate activity list for grouped_: Generate activity list for grouped activity_id,activity_instance_id, activities_to_ Create event log from list of activity instances Create event log from list of activity instances activities_to_(activity_log, case_id, activity_id, resource_id, timestamps) activity_log case_id activity_id resource_id timestamps A data.frame where each row is an activity instances Column name of the case identifier Column name of the activity identifier Column name of the resource identifier A vector of column names containing different timestamp. To column names will be transformed to lifecycle identifiers

4 4 activity_instance_id activity_id Activity classifier Get the activity classifier of an object of class. activity_id(x) activity_id(x) ## S3 method for class '_mapping' activity_id(x) x An of _mapping : Retrieve activity identifier from _mapping: Retrieve activity identifier from mapping, mapping Other Eventlog classifiers: activity_instance_id, case_id, lifecycle_id, mapping, resource_id, timestamp activity_instance_id Activity instance classifier Get the activity instance classifier of an object of class.

5 activity_labels 5 activity_instance_id(x) activity_instance_id(x) ## S3 method for class '_mapping' activity_instance_id(x) x An of _mapping : Retrieve activity instance identifier from _mapping: Retrieve activity instance identifier from mapping Other Eventlog classifiers: activity_id, case_id, lifecycle_id, mapping, resource_id, timestamp activity_labels Get vector of activity labels Retrieve a vector containing all unique activity labels activity_labels() activity_labels() Eventlog : Retrieve activity labels from

6 6 act_recode act_collapse Collapse activity labels of a sub process into a single activity Collapse activity labels of a sub process into a single activity act_collapse(,...) act_collapse(,...) An object... A series of named character vectors. The activity labels in each vector will be collapsed into one activity with the name of the vector. : Collapse activity labels of a subprocess into a single activity Other Activity processing functions: act_recode, act_unite act_recode Recode activity labels Recode one or more activity labels through specifying their old and new label act_recode(,...) act_recode(,...)

7 act_unite 7 An object of class.... A sequence of named character vectors of length one where the names gives the new label and the value gives the old label. Labels not mentioned will be left unchanged. : Recode activity labels of event log, activity_id, act_unite Other Activity processing functions: act_collapse, act_unite act_unite Unite activity labels Recode two or different more activity labels two a uniform activity label act_unite(,...) act_unite(,...) An object of class.... A series of named character vectors. The activity labels in each vector will be replaced with the name. : Unite activity labels in event log, activity_id, act_recode Other Activity processing functions: act_collapse, act_recode

8 8 cases bupar bupar - Business Process Analysis in R Functionalities for process analysis in R. This packages implements an S3-class for event log objects, and related handler functions. Imports related packages for subsetting event data, computation of descriptive statistics, handling of Petri Net objects and visualization of process maps. cases Cases Provides a fine-grained summary of an event log with characteristics for each case: the number of events, the number of activity types, the timespan, the trace, the duration and the first and last event type. cases() cases() An object.. : Constructy list of cases in an

9 case_id 9 case_id Case classifier Get the case classifier of an object of class case_id(x) case_id(x) ## S3 method for class '_mapping' case_id(x) x An of _mapping : Retrieve case identifier from _mapping: Retrieve case identifier from mapping, mapping Other Eventlog classifiers: activity_id, activity_instance_id, lifecycle_id, mapping, resource_id, timestamp case_labels Get vector of case labels Retrieve a vector containing all unique case labels case_labels() case_labels()

10 10 durations Eventlog : Retrieve case labels from case_list Case list Construct list of cases case_list() case_list() Eventlog object : Return case list durations Durations Computes the throughput times of each case. Throughput time is defined as the interval between the start of the first event and the completion of the last event. durations(, units) durations(, units = "days")

11 11 units The event log to be used. An object of class. The time unit in which the throughput times should be reported. : Compute durations from Eventlog A function to instantiate an object of class by specifying a data.frame or tbl_df and appropriate case, activity and timestamp classifiers. (, case_id = NULL, activity_id = NULL, activity_instance_id = NULL, lifecycle_id = NULL, timestamp = NULL, resource_id = NULL, order = "auto") i() case_id The data object to be used as event log. This can be a data.frame or tbl_df. The case classifier of the event log. A character vector containing variable names of length 1 or more. activity_id The activity classifier of the event log. A character vector containing variable names of length 1 or more. activity_instance_id The activity instance classifier of the event log. lifecycle_id timestamp resource_id order The life cycle classifier of the event log. The timestamp of the event log. Should refer to a Date or POSIXct field. The resource identifier of the event log. A character vector containing variable names of length 1 or more. Configure how to handle sort events with equal timestamps: auto will use the order in the original data, alphabetical will sort the activity labels by alpabath, providing a column name will use this column for ordering (can be numeric of character). The latter will never overrule timestamp orderings. case_id, activity_id, activity_instance_id,lifecycle_id, timestamp

12 12 filter_attributes Examples ## Not run: data <- data.frame(case = rep("a",5), activity_id = c("a","b","c","d","e"), activity_instance_id = 1:5, lifecycle_id = rep("complete",5), timestamp = 1:5, resource = rep("resource 1", 5)) (data,case_id = "case", activity_id = "activity_id", activity_instance_id = "activity_instance_id", lifecycle_id = "lifecycle_id", timestamp = "timestamp", resource_id = "resource") ## End(Not run) filter_attributes Generic filter function for Generic filter function for filter_attributes(,...) filter_attributes(,...) ## S3 method for class 'grouped_' filter_attributes(,...) Eventlog object... Filter conditions : Filter using attributes grouped_: Filter grouped using attributes

13 group_by_activity 13 group_by_activity Group event log on activity id Group an event log by activity identifier group_by_activity() group_by_activity() Eventlog : Group on activity identifier group_by_activity_instance Group event log on activity instance id Group an event log by activity instance identifier group_by_activity_instance() group_by_activity_instance() Eventlog : Group on activity instance identifier

14 14 group_by_resource group_by_case Group event log on case id Group an event log by case identifier group_by_case() group_by_case() Eventlog : Group on case identifier group_by_resource Group event log on resource id Group an event log by resource identifier group_by_resource() group_by_resource() Eventlog : Group on resource identifier

15 group_by_resource_activity 15 group_by_resource_activity Group event log on resource and activity id Group an event log by resource and activity identifier group_by_resource_activity() group_by_resource_activity() Eventlog : Group an event log by resource and activity identifier lifecycle_id Life cycle classifier Get the life_cycle_id of an object of class lifecycle_id(x) lifecycle_id(x) ## S3 method for class '_mapping' lifecycle_id(x) x An of _mapping

16 16 mapping : Retrieve lifecycle identifier from _mapping: Retrieve lifecycle identifier from mapping Other Eventlog classifiers: activity_id, activity_instance_id, case_id, mapping, resource_id, timestamp mapping Mapping Prints the mapping of an event log object. mapping() mapping() The event log to be used. An object of class. : Retrieve identifier mapping from Other Eventlog classifiers: activity_id, activity_instance_id, case_id, lifecycle_id, resource_id, timestamp

17 n_activities 17 n_activities n_activities Returns the number of activities in an event log n_activities() n_activities() ## S3 method for class 'grouped_' n_activities() The event log to be used. An object of class. : Count the number of activities in an event log grouped_: Count the number of activities for a grouped event log Other Eventlog count functions: n_activity_instances, n_cases, n_events, n_resources, n_traces n_activity_instances n_activity_instances Returns the number of activity instances in an event log n_activity_instances() n_activity_instances() ## S3 method for class 'grouped_' n_activity_instances()

18 18 n_cases The event log to be used. An object of class. Other Eventlog count functions: n_activities, n_cases, n_events, n_resources, n_traces n_cases n_cases Returns the number of cases in an event log n_cases() n_cases() ## S3 method for class 'grouped_' n_cases() The event log to be used. An object of class. : Count number of cases for grouped_: Count number of cases for grouped Other Eventlog count functions: n_activities, n_activity_instances, n_events, n_resources, n_traces

19 n_events 19 n_events n_events Returns the number of events in an event log n_events() n_events() ## S3 method for class 'grouped_' n_events() The event log to be used. An object of class. : Count number of resources in grouped_: Count number of resource in Other Eventlog count functions: n_activities, n_activity_instances, n_cases, n_resources, n_traces n_resources n_resources Returns the number of resources in an event log n_resources() n_resources() ## S3 method for class 'grouped_' n_resources()

20 20 n_traces The event log to be used. An object of class. : Count number of resources in grouped_: Count number of resources in grouped Other Eventlog count functions: n_activities, n_activity_instances, n_cases, n_events, n_traces n_traces n_traces Returns the number of traces in an event log n_traces() n_traces() ## S3 method for class 'grouped_' n_traces() The event log to be used. An object of class. : Count number of traces for grouped_: Count number of traces for grouped Other Eventlog count functions: n_activities, n_activity_instances, n_cases, n_events, n_resources

21 print. 21 print. Generic print function for Generic print function for print(x,...) x Eventlog object... Additional print._mapping Generic print function for _mapping Generic print function for _mapping ## S3 method for class '_mapping' print(x,...) x Eventlog mapping object... Additional

22 22 resource_id resources Resources Returns a tbl_df containing a list of all resources in the event log, with there absolute and relative frequency resources() resources() ## S3 method for class 'grouped_' resources() The event log to be used. An object of class. : Generate resource list for grouped_: Generate resource list for grouped resource_id, resource_id Resource classifier Get the resource classifier of an object of class. resource_id(x) resource_id(x) ## S3 method for class '_mapping' resource_id(x)

23 resource_labels 23 x An of _mapping : Retrieve resource identifier from _mapping: Retrieve resource identifier from mapping, mapping Other Eventlog classifiers: activity_id, activity_instance_id, case_id, lifecycle_id, mapping, timestamp resource_labels Get vector of resource labels Retrieve a vector containing all unique resource labels resource_labels() resource_labels() Eventlog : Retrieve resource labels from

24 24 simple_ re_map Re map Construct and using an existing mapping. re_map(, _mapping) The event log data to be used. _mapping An existing mapping created by the mapping function simple_ Simple Eventlog A function to instantiate an object of class by specifying a data.frame or tbl_df and the minimally required case identifier, activity identifier and timestamp simple_(, case_id = NULL, activity_id = NULL, timestamp = NULL, order = "auto") isimple_() case_id activity_id timestamp order The data object to be used as event log. This can be a data.frame or tbl_df. The case classifier of the event log. The activity classifier of the event log. The timestamp of the event log. Configure how to handle sort events with equal timestamps: auto will use the order in the original data, alphabetical will sort the activity labels by alpabath, providing a column name will use this column for ordering (can be numeric of character). The latter will never overrule timestamp orderings.

25 summary. 25,case_id, activity_id, activity_instance_id,lifecycle_id, timestamp Examples ## Not run: data <- data.frame(case = rep("a",5), activity_id = c("a","b","c","d","e"), timestamp = date_decimal(1:5)) simple_(data,case_id = "case", activity_id = "activity_id", timestamp = "timestamp") ## End(Not run) summary. Generic summary function for class Generic summary function for class summary(object,...) ## S3 method for class 'grouped_' summary(object,...) object Eventlog object... Additional grouped_: Summary of grouped event log

26 26 traces timestamp Timestamp classifier Get the timestamp classifier of an object of class timestamp(x) timestamp(x) ## S3 method for class '_mapping' timestamp(x) x An of _mapping : Retrieve timestamp identifier from _mapping: Retrieve timestamp identifier from mapping, mapping Other Eventlog classifiers: activity_id, activity_instance_id, case_id, lifecycle_id, mapping, resource_id traces Traces traces computes the different activity sequences of an event log together with their absolute and relative frequencies. Activity sequences are based on the start timestamp of activities.

27 trace_list 27 traces(,...) traces(,...) ## S3 method for class 'grouped_' traces(,...) The event log to be used. An object of class.... Deprecated arguments : Construct traces list for grouped_: Construct list of traces for grouped cases, trace_list Trace list Construct trace list trace_list() trace_list() Eventlog object : Construct trace list for event log

28 28 ungroup_ ungroup_ Ungroup event log Remove groups from event log ungroup_() ungroup_() Eventlog : Remove groups from event log

29 Index act_collapse, 6, 7 act_recode, 6, 6, 7 act_unite, 6, 7, 7 activities, 2 activities_to_, 3 activity_id, 3, 4, 5, 7, 9, 11, 16, 23, 25, 26 activity_instance_id, 3, 4, 4, 9, 11, 16, 23, 25, 26 activity_labels, 5 bupar, 8 bupar-package (bupar), 8 case_id, 4, 5, 9, 11, 16, 23, 25, 26 case_labels, 9 case_list, 10 cases, 8, 27 durations, 10, 3, 4, 7, 9, 11, 22, 23, n_resources, 17 19, 19, 20 n_traces, 17 20, 20 print., 21 print._mapping, 21 re_map, 24 resource_id, 4, 5, 9, 16, 22, 22, 26 resource_labels, 23 resources, 22 simple_, 24 summary., 25 summary.grouped_ (summary.), 25 timestamp, 4, 5, 9, 11, 16, 23, 25, 26 trace_list, 27 traces, 26 ungroup_, 28 filter_attributes, 12 group_by_activity, 13 group_by_activity_instance, 13 group_by_case, 14 group_by_resource, 14 group_by_resource_activity, 15 i (), 11 isimple_ (simple_), 24 lifecycle_id, 4, 5, 9, 11, 15, 16, 23, 25, 26 mapping, 4, 5, 9, 16, 16, 23, 26 n_activities, 17, n_activity_instances, 17, 17, n_cases, 17, 18, 18, 19, 20 n_events, 17, 18, 19, 20 29

Package edear. March 22, 2018

Package edear. March 22, 2018 Type Package Package edear March 22, 2018 Title Exploratory and Descriptive Event-Based Data Analysis Version 0.8.0 Date 2018-03-22 Exploratory and descriptive analysis of event based data. Provides methods

More information

Package processanimater

Package processanimater Type Package Package processanimater Title Process Map Token Replay Animation Version 0.3.0 October 5, 2018 Token replay animation for process maps created with 'processmapr' by using SVG animations ('SMIL')

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 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 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 jpmesh. December 4, 2017

Package jpmesh. December 4, 2017 Type Package Title Utilities for Japanese Mesh Code Version 1.0.1 Package jpmesh December 4, 2017 Maintainer Shinya Uryu Helpful functions for using mesh code (80km to 125m) data

More information

Package tidyimpute. March 5, 2018

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

More information

Package comparedf. February 11, 2019

Package comparedf. February 11, 2019 Type Package Package comparedf February 11, 2019 Title Do a Git Style Diff of the Rows Between Two Dataframes with Similar Structure Version 1.7.1 Date 2019-02-11 Compares two dataframes which have the

More information

Package facerec. May 14, 2018

Package facerec. May 14, 2018 Package facerec Type Package Title An Interface for Face Recognition Version 0.1.0 Date 2018-05-14 May 14, 2018 URL https://github.com/methodds/facerec BugReports https://github.com/methodds/facerec/issues

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 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 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 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 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 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 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 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 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 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 crossword.r. January 19, 2018

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

More information

Package 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 dkanr. July 12, 2018

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

More information

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption Version 0.2.0 Title Create s for Human Consumption Package humanize April 4, 2018 An almost direct port of the 'python' 'humanize' package . This package contains utilities

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 opencage. January 16, 2018

Package opencage. January 16, 2018 Package opencage January 16, 2018 Type Package Title Interface to the OpenCage API Version 0.1.4 Tool for accessing the OpenCage API, which provides forward geocoding (from placename to longitude and latitude)

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

Package editdata. October 7, 2017 Type Package Title 'RStudio' Addin for Editing a 'data.frame' Version 0.1.2 Package editdata October 7, 2017 Imports shiny (>= 0.13, miniui (>= 0.1.1, rstudioapi (>= 0.5, DT, tibble An 'RStudio' addin

More information

Package postal. July 27, 2018

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

More information

Package 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 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 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 darksky. September 20, 2017

Package darksky. September 20, 2017 Type Package Title Tools to Work with the 'Dark Sky' 'API' Version 1.3.0 Date 2017-09-20 Maintainer Bob Rudis Package darksky September 20, 2017 Provides programmatic access to the 'Dark Sky'

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 keyholder. May 19, 2018

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

More information

Package tidytransit. March 4, 2019

Package tidytransit. March 4, 2019 Type Package Package tidytransit March 4, 2019 Title Read, Validate, Analyze, and Map Files in the General Transit Feed Specification Version 0.3.8 Read General Transit Feed Specification (GTFS) zipfiles

More information

Package fastqcr. April 11, 2017

Package fastqcr. April 11, 2017 Type Package Title Quality Control of Sequencing Data Version 0.1.0 Date 2017-04-12 Package fastqcr April 11, 2017 'FASTQC' is the most widely used tool for evaluating the quality of high throughput sequencing

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 d3plus. September 25, 2017

Package d3plus. September 25, 2017 Type Package Title Seamless 'D3Plus' Integration Version 0.1.0 Author Mauricio Vargas [aut,cre], Joshua Kunst [aut], Dave Landry [ctb], Datawheel [cph] Package d3plus September 25, 2017 Maintainer Mauricio

More information

Package tidylpa. March 28, 2018

Package tidylpa. March 28, 2018 Type Package Title Easily Carry Out Latent Profile Analysis Version 0.1.3 Package tidylpa March 28, 2018 An interface to the 'mclust' package to easily carry out latent profile analysis (``LPA''). Provides

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 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 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 tidyselect. October 11, 2018

Package tidyselect. October 11, 2018 Title Select from a Set of Strings Version 0.2.5 Package tidyselect October 11, 2018 A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your

More information

Package githubinstall

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

More information

Package slickr. March 6, 2018

Package slickr. March 6, 2018 Version 0.2.4 Date 2018-01-17 Package slickr March 6, 2018 Title Create Interactive Carousels with the JavaScript 'Slick' Library Create and customize interactive carousels using the 'Slick' JavaScript

More information

Package lumberjack. R topics documented: July 20, 2018

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

More information

Package 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 fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health Type Package Version 0.1.7 Title Fingertips Data for Public Health Package fingertipsr May 25, 2018 Fingertips () contains data for many indicators of public health in England.

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 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 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 rsppfp. November 20, 2018

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

More information

Package 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 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 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 fst. June 7, 2018

Package fst. June 7, 2018 Type Package Package fst June 7, 2018 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows for random

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 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 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 mdftracks. February 6, 2017

Package mdftracks. February 6, 2017 Type Package Title Read and Write 'MTrackJ Data Files' Version 0.2.0 Package mdftracks February 6, 2017 'MTrackJ' is an 'ImageJ' plugin for motion tracking and analysis (see ).

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

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 splithalf. March 17, 2018

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

More information

Package influxdbr. January 10, 2018

Package influxdbr. January 10, 2018 Type Package Title R Interface to InfluxDB Version 0.14.2 Date 2018-01-10 Package influxdbr January 10, 2018 An R interface to the InfluxDB time series database . This package

More information

Package autoshiny. June 25, 2018

Package autoshiny. June 25, 2018 Package autoshiny June 25, 2018 Title Automatic Transformation of an 'R' Function into a 'shiny' App Version 0.0.2 Description Static code compilation of a 'shiny' app given an R function (into 'ui.r'

More information

Package tibble. August 22, 2017

Package tibble. August 22, 2017 Encoding UTF-8 Version 1.3.4 Title Simple Data Frames Package tibble August 22, 2017 Provides a 'tbl_df' class (the 'tibble') that provides stricter checking and better formatting than the traditional

More information

Package driftr. June 14, 2018

Package driftr. June 14, 2018 Type Package Title Drift Correcting Water Quality Data Version 1.1.0 Package driftr June 14, 2018 A tidy implementation of equations that correct for instrumental drift in continuous water quality monitoring

More information

Package c14bazaar. October 28, Title Download and Prepare C14 Dates from Different Source Databases Version 1.0.2

Package c14bazaar. October 28, Title Download and Prepare C14 Dates from Different Source Databases Version 1.0.2 Package c14bazaar October 28, 2018 Title Download and Prepare C14 Dates from Different Source Databases Version 1.0.2 URL https://github.com/isaakiel/c14bazaar Date 2018-09-19 Query different C14 date

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 anomalize. April 17, 2018

Package anomalize. April 17, 2018 Type Package Title Tidy Anomaly Detection Version 0.1.1 Package anomalize April 17, 2018 The 'anomalize' package enables a ``tidy'' workflow for detecting anomalies in data. The main functions are time_decompose(),

More information

Package fitbitscraper

Package fitbitscraper Title Scrapes Data from Fitbit Version 0.1.8 Package fitbitscraper April 14, 2017 Author Cory Nissen [aut, cre] Maintainer Cory Nissen Scrapes data from Fitbit

More information

Package rgho. R topics documented: January 18, 2017

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

More information

Package pmatch. October 19, 2018

Package pmatch. October 19, 2018 Type Package Title Pattern Matching Version 0.1.4 Package pmatch October 19, 2018 Implements type constructions and pattern matching. Using this package, you can specify a type of object and write functions

More information

Package fst. December 18, 2017

Package fst. December 18, 2017 Type Package Package fst December 18, 2017 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows

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 assertr. R topics documented: February 23, Type Package

Package assertr. R topics documented: February 23, Type Package Type Package Package assertr February 23, 2018 Title Assertive Programming for R Analysis Pipelines Version 2.5 Provides functionality to assert conditions that have to be met so that errors in data used

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 cli. November 5, 2017

Package cli. November 5, 2017 Package cli November 5, 2017 Title Helpers for Developing Command Line Interfaces Version 1.0.0 A suite of tools designed to build attractive command line interfaces ('CLIs'). Includes tools for drawing

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 quickreg. R topics documented:

Package quickreg. R topics documented: Package quickreg September 28, 2017 Title Build Regression Models Quickly and Display the Results Using 'ggplot2' Version 1.5.0 A set of functions to extract results from regression models and plot the

More information

Package wikitaxa. December 21, 2017

Package wikitaxa. December 21, 2017 Title Taxonomic Information from 'Wikipedia' Package wikitaxa December 21, 2017 'Taxonomic' information from 'Wikipedia', 'Wikicommons', 'Wikispecies', and 'Wikidata'. Functions included for getting taxonomic

More information

Package exifr. October 15, 2017

Package exifr. October 15, 2017 Type Package Title EXIF Image Data in R Version 0.2.1 Date 2017-10-14 Package exifr October 15, 2017 Maintainer Dewey Dunnington Reads EXIF data using ExifTool

More information

Package data.world. April 5, 2018

Package data.world. April 5, 2018 Package data.world April 5, 2018 Title Functions and Add-Ins for Working with 'data.world' Data Sets and Projects Version 1.2.2 High-level tools for working with 'data.world' data sets. 'data.world' is

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 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 tfruns. February 18, 2018

Package tfruns. February 18, 2018 Type Package Title Training Run Tools for 'TensorFlow' Version 1.3 Package tfruns February 18, 2018 Create and manage unique directories for each 'TensorFlow' training run. Provides a unique, time stamped

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 ether. September 22, 2018

Package ether. September 22, 2018 Type Package Title Interaction with the 'Ethereum' Blockchain Version 0.1.5 Package ether September 22, 2018 Interacts with the open-source, public 'Ethereum' blockchain. It

More information

Package skynet. December 12, 2018

Package skynet. December 12, 2018 Type Package Version 1.3.0 Title Generates Networks from BTS Data Package skynet December 12, 2018 Maintainer Filipe Teieira URL https://github.com/filipeamteieira/skynet

More information

Package TrafficBDE. March 1, 2018

Package TrafficBDE. March 1, 2018 Type Package Package TrafficBDE March 1, 2018 Title Traffic Status Prediction in Urban Places using Neural Network Models Version 0.1.0 Date 2018-02-26 Estimate and return either the traffic speed or the

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 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 rcv. August 11, 2017

Package rcv. August 11, 2017 Type Package Title Ranked Choice Voting Version 0.2.1 Package rcv August 11, 2017 A collection of ranked choice voting data and functions to manipulate, run elections with, and visualize this data and

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 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 linkspotter. July 22, Type Package

Package linkspotter. July 22, Type Package Type Package Package linkspotter July 22, 2018 Title Bivariate Correlations Calculation and Visualization Version 1.2.0 Date 2018-07-18 Compute and visualize using the 'visnetwork' package all the bivariate

More information

Package glue. March 12, 2019

Package glue. March 12, 2019 Package glue March 12, 2019 Title Interpreted String Literals Version 1.3.1 An implementation of interpreted string literals, inspired by Python's Literal String Interpolation

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