Package platetools. R topics documented: June 25, Title Tools and Plots for Multi-Well Plates Version 0.1.1

Size: px
Start display at page:

Download "Package platetools. R topics documented: June 25, Title Tools and Plots for Multi-Well Plates Version 0.1.1"

Transcription

1 Title Tools and Plots for Multi-Well Plates Version Package platetools June 25, 2018 Collection of functions for working with multi- microtitre plates, mainly 96, 384 and 1536 plates. Depends R (>= 3.1.0) License MIT + file LICENSE URL BugReports Encoding UTF-8 LazyData true Imports dplyr, plyr, RColorBrewer, ggplot2 Suggests testthat, viridis RoxygenNote NeedsCompilation no Author Scott Warchal [aut, cre] Maintainer Scott Warchal <s.warchal@sms.ed.ac.uk> Repository CRAN Date/Publication :03:45 UTC R topics documented: bhit_map b_grid b_map b_score check_plate_input dist_map fill_plate hit_grid hit_map

2 2 bhit_map is_ list_to_frame med_smooth missing_s num_to_ pchit_grid pchit_map pc_grid pc_map plate_effect plate_map plate_map_grid plate_map_grid_scale plate_map_multiple plate_map_scale plate_matrix plt plt plt raw_grid raw_map readmap_ read_map rotate_plate set_block _to_num z_grid z_map Index 27 bhit_map Platemap to identify hits following a B-score normalisation Produces a platemap with colours indicating s above or below selected threshold after normalising for systematic plate effects via B-score smooth. The threshold is definined calculated from a z-score, i.e plus or minus standard deviations from the plate mean. bhit_map(,, plate = 96, threshold = 2, palette = "Spectral")

3 b_grid 3 Vector of numerical values Vector of identifiers, e.g "A01" plate Number of s in whole plate (96, 384 or 1536) threshold Standard deviations from the plate average to indicate a hit. default is set to +/- 2 SD. palette ggplot plot RColorBrewer palette df <-.frame(vals = rnorm(384), = num_to_(1:384, plate = 384)) bhit_map( = df$vals, = df$, plate = 384, threshold = 3) b_grid Plots multiple b-scored normalised platemaps Transforms numerical values using the b-score normalisation process to account for row and column effects. Uses and plate labels to plot the normalised values in the form of microtitre plates. Works for 96, 384 and 1536 plates. b_grid(,, plate_id, plate = 96) plate_id Numerical values to be plotted Vector of identifiers e.g "A01" Vector of plate identifiers e.g "Plate_1" plate Number of s in complete plate (96, 384 or 1536) ggplot plot

4 4 b_map df01 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 1) df02 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 2) df <- rbind(df01, df02) b_grid( = df$vals, = df$, plate_id = df$plate, plate = 96) b_map Plots a heatmap of b-score normalised values in a plate layout Transforms numerical values using the b-score normalisation process to account for row and column effects. Uses labels to plot the normalised values in the form of a microtitre plate. Works for 96, 384 or 1536 plates b_map(,, normalise = FALSE, plate = 96) normalise Numerical values in the form of a vector to be normalised Vector of identifiers, e.g "A01" Not currently used plate integer, 96, 384 or 1536 ggplot plot df <-.frame( = num_to_(1:96), vals = rnorm(96)) b_map( = df$vals, = df$, plate = 96)

5 b_score 5 df_384 <-.frame( = num_to_(1:384, plate = 384), vals = rnorm(384)) b_map( = df_384$vals, = df_384$, plate = 384) b_score 2 way median polish 2 way median polish to remove plate effects such as row/column/edge effects. Given a frame containing alpha-numeric IDs and numerical values, this b_score will return a frame of the same structure after a two-way median smooth. b_score(,, plate) numeric, either a vector or frame column alpha-numeric IDs. e.g A01 plate numeric, number of s within a plate, either 96 or 384 df <-.frame( = num_to_(1:96), vals = rnorm(96)) b_score( = df$vals, = df$, plate = 96)

6 6 dist_map check_plate_input checks plate input for dodgy plate combinations checks plate input for dodgy plate combinations check_plate_input(, plate) plate vector of labels integer, number of s in full plate dist_map Plots distributions per in a plate layout Produces distribution plots facetted in a plate-layout format. dist_map(, ) vector of alphanumeric IDs e.g A01 numeric vector ggplot plot

7 fill_plate 7 fill_plate Fill in missing s Fills in missing s with rows of NA values. Useful for any functions that require a complete plate such as b_score. fill_plate(df,, plate = 96) df frame Column containing identifiers i.e "A01" plate Number of s in complete plate (96, 384 or 1536) frame vals <- rnorm(96) ; s <- num_to_(1:96) df <-.frame(s, vals) df_missing <- df[-c(1:10), ] fill_plate(df_missing, "s") hit_grid Plots multiple platemaps with and identifies hits Converts numerical values and labels into hits in the form of multiple plate maps. Hits are calculated as s above or below a specified number of standard deviations from the overall average hit_grid(,, plate_id, threshold = 2, ncols = 2, plate = 96, each = FALSE, palette = "Spectral")

8 8 hit_map plate_id threshold ncols Numerical values to be scaled and plotted Vector of identifiers. e.g "A01" Vector of plate identifiers e.g "Plate_1" Numerical value of standard deviations from the mean for a to be classified as a hit. Default it +/- 2 SD Number of columns in the grid of plates plate Number of s in the complete plates (96, 384 or 1536) each palette ggplot plot boolean, if true scales each plate individually, if false will scale the pooled values of RColorBrewer palette df01 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 1) df02 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 2) df <- rbind(df01, df02) hit_grid( = df$vals, = df$, plate_id = df$plate, plate = 96, each = FALSE) hit_map Platemap to identify hits in a screen Produces a plot in the form of a micro-titre layout, with colours indicating s above or below a nominated threshold. hit_map(,, plate = 96, threshold = 2, palette = "Spectral")

9 is_ Vector of numerical values to score Vector of identifiers e.g "A01" plate Number of s in complete plate (96, 384 or 1536) threshold palette Numerical value of standard deviations from the mean for a to be classified as a hit. Default it +/- 2 SD RColorBrewer palette ggplot plot df <-.frame(vals = rnorm(1:384), = num_to_(1:384, plate = 384)) hit_map( = df$vals, = df$, plate = 384, threshold = 3) is_1536 internal 1536 plate function for plate_map internal 1536 plate function for plate_map is_1536() vector of alphanumeric labels

10 10 med_smooth list_to_frame Converts list to a frame in a sensible way Given a list of frames with the same columns, this function will row bind them together, and if passed a col_name arguement, will produce a column containing their original element name list_to_frame(l, col_name = NULL) l col_name list of frames to be converted into single frame (optional) name of column to put element names under frame med_smooth 2-way median smooth Given a platemap produced by plate_map, will return a frame with after values have been transformed into a matrix mirroring the plate structure and undergoing a 2-way median polish to remove row or column effects med_smooth(platemap, plate) platemap frame produced by plate_map plate numeric, number of s in plate, either 96 or 384 A frame consisting of two column, ID and polished numeric values

11 missing_s 11 missing_s Returns s that are missing from a complete plate Returns a vector of s that are missing from a complete plate. missing_s(df,, plate = 96) df frame Column containing identifiers i.e "A01" plate Number of s in complete plate (96 or 384) vector of missing s vals <- rnorm(96) ; s <- num_to_(1:96) df <-.frame(vals, s) df_missing <- df[-c(1:10), ] missing_s(df_missing, "s") num_to_ Converts numbers to labels Converts numerical values to corresponding alpha-numeric labels for 96, 384 or 1536 plates. num_to_(x, plate = 96) x Vector of numbers to be converted plate Number of s in complete plate (96 or 384)

12 12 pchit_grid Vector of alpha-numeric labels num_to_(1:96) num_to_(1:96, plate = 384) nums <- c(1:10, 20:40, 60:96) num_to_(nums) pchit_grid Plots multiple heatmaps identifying hits from the first principal component Converts numerical values, labels, and plate labels into multiple heatmaps of plates, with z- scored principal components coloured dependent on a specified threshold of standard deviations above or below the average. pchit_grid(,, plate_id,...) plate_id Numerical values, either a frame or a matrix Vector of identifers e.g "A01" Vector of plate identifiers e.g "Plate_1"... additional arguments to platetools::hit_grid() ggplot plot df01 <-.frame( = num_to_(1:96), plate = 1, vals1 = rnorm(1:96), vals2 = rnorm(1:96)) df02 <-.frame( = num_to_(1:96), plate = 2, vals1 = rnorm(1:96),

13 pchit_map 13 vals2 = rnorm(1:96)) df <- rbind(df01, df02) pchit_grid( = df[,3:4], = df$, plate_id = df$plate, plate = 96) pchit_map Plots a heatmap identifying hits from the first principal component Converts numerical values and plate labels intoa plate heatmap with z-scored principal components coloured dependent on a specified threshold of standard deviations above or below the average. pchit_map(,, plate = 96, threshold = 2, palette = "Spectral") Numerical values, either a frame or a matrix Vector of identifers e.g "A01" plate Number of s in complete plate (96, 384 or 1536) threshold Threshold of +/- standard deviations form the average to determine a hit palette RColorBrewer palette ggplot plot v1 <- rnorm(1:96) v2 <- rnorm(1:96) v3 <- rnorm(1:96) s <- num_to_(1:96) df <-.frame(s, v1, v2, v3) pchit_map( = df[, 2:4], = df$s, threshold = 1.5)

14 14 pc_grid pc_grid Plots multiple platemaps as a heatmap of the first principal component. Converts multivariate and labels into a heatmap of the first principal component in the form of a grid of platemaps. pc_grid(,, plate_id, ncols = 2, plate = 96,...) plate_id ncols Numerical values be transformed, scaled and plotted as a colour Vector of identifiers e.g "A01" Vector of plate labels or identifiers e.g "plate_1" Number of columns to plot multiple platemaps plate Number of s in complete plate (96, 384 or 1536)... additional arguments to be passed to z_grid ggplot plot df01 <-.frame( = num_to_(1:96), plate = 1, vals1 = rnorm(1:96), vals2 = rnorm(1:96)) df02 <-.frame( = num_to_(1:96), plate = 2, vals1 = rnorm(1:96), vals2 = rnorm(1:96)) df <- rbind(df01, df02) pc_grid( = df[, 3:4], = df$, plate_id = df$plate, plate = 96)

15 pc_map 15 pc_map Principal component heatmap in a plate layout Takes the values and identifiers, calculates the first principal component, scales and plots the component as a heatmap in the form of a 96 or 384- plate. A way to quickly show variation of multi-parametric within a plate. pc_map(,, plate = 96) Vector of numerical to calculate the first principal component Vector of identifiers e.g "A01" plate Number of s in complete plate (96, 384 or 1536 gplot plot df <-.frame( = num_to_(1:96), vals1 = rnorm(1:96), vals2 = rnorm(1:96)) pc_map( = df[, 2:3], = df$, plate = 96) plate_effect Two way-median smooth on a plate map Given a platemap produced by plate_map, this will perform a two way median smooth, and return the results of medpolish. Useful for row and column effects, as as the raw residuals. plate_effect(platemap, plate)

16 16 plate_map_grid platemap platemap produced by plate_map plate, integer either 96 or 384 plate_map creates frame of row,column, from ID and internal function plate_map(, ) numeric to be used as colour scale alpha-numeric IDs, e.g A01 frame plate_map_grid creates frame of row, column, plate_id from regarding IDs internal function plate_map_grid(,, plate_id) plate_id numerical to be used as colour scale alpha-numeric IDs, e.g A01 plate identifers e.g plate_1 frame

17 plate_map_grid_scale 17 plate_map_grid_scale creates frame of row, column, plate_id from regarding IDs internal function plate_map_grid_scale(,, plate_id, each) plate_id each numerical to be used as colour scale alpha-numeric IDs, e.g A01 plate identifers e.g plate_1 boolean, if true scales each plate individually, if false will scale the pooled values of frame plate_map_multiple row, column for multiple features Generates a frame for multiple features, given a ID column and multiple features plate_map_multiple(, ) vector or frame of numeric vector of alphanumeric IDs e.g A01

18 18 plate_matrix plate_map_scale creates frame of row, column, and scaled from IDs internal function plate_map_scale(, ) numeric to be used as colour scale alpha-numeric IDs, e.g A01 frame plate_matrix plate layout matrix from IDs Given a frame of alpha-numeric IDs e.g ("A01"), and values, this function will produce a matrix in the form of a plate layout. plate_matrix(,, plate = 96) vector of to be placed in matrix vector of alphanumeric IDs. e.g ("A01") plate number of s in plate (96 or 384) matrix

19 plt a <- 1:96 s <- num_to_(1:96) plate_matrix( = a, = s) x <- rnorm(384) s <- num_to_(1:384, plate = 384) plate_matrix( = x, = s, plate = 384) plt1536 ggplot plate object internal function plt1536(platemap) platemap platemap frame produced by plate_map ggplot object plt384 ggplot plate object internal function plt384(platemap) platemap platemap frame produced by plate_map ggplot object

20 20 raw_grid plt96 ggplot plate object internal function plt96(platemap) platemap platemap frame produced by plate_map ggplot object raw_grid Plots multiple platemaps with heatmap of raw values Converts numerical values. labels, and plate labels into multiple plate heatmaps raw_grid(,, plate_id, ncols = 2, plate = 96) Numerical values to be plotted Vector of identifiers e.g "A01" plate_id Vector of plate identifiers e.g "Plate_1" ncols Number of columns to display multiple heatmaps plate Number of s in complete plate (96, 384 or 1536) ggplot plot

21 raw_map 21 df01 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 1) df02 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 2) df <- rbind(df01, df02) raw_grid( = df$vals, = df$, plate_id = df$plate, plate = 96) raw_map Plots a platemap with heatmap of raw values Converts numerical values and labels into multiple plate heatmaps raw_map(,, plate = 96) Numerical values to be plotted Vector of identifiers e.g "A01" plate Number of s in complete plate (96, 384 or 1536) ggplot plot df <-.frame(vals = rnorm(1:384), = num_to_(1:384, plate = 384)) raw_map( = df$vals, = df$, plate = 384)

22 22 read_map readmap_ example in a plate map form example in a plate map form readmap_ Format 96 integers structured in a the form of a 96- plate Source none read_map Annotates frame with meta in a platemap matrix Annotates a frame containined identifiers with meta in the form of a platemap matrix, matching the existing -labels to the position in the platemap read_map(, map, verbose = TRUE, new_col_name = "header") map verbose new_col_name existing daatframe, with IDs under the column name of Matrix of meta to be added to the frame, N.B NO MISSING WELLS! Boolean, if TRUE will add row and column numbers to frame What to call the added meta frame with new column named after new_col_name

23 rotate_plate 23 rotate_plate rotates matrix by 180 degrees If someone (no names) puts in a plate upside down, this function will rotate a plate matrix produced by plate_matrix to be the correct way up. I.e if A01 is in the bottom right hand corner rather than the top left. rotate_plate(m) m matrix matrix set_block Set values in rectangular areas of a plate Updates a table representing a multi plate, by setting a given value for all s in a block or a list of blocks defined by the coordinates of their upper-left and bottom-right corners. set_block(plate, block, what, value) plate block what value A table representing a multi plate, with one column named representing the identifiers. Coordinates of a rectangular block (such as A01~B02 ), or a vector of coordinates. A column name in the table. The value to set. Details This function is tested with a table in.frame format, but it should also work with the DataFrame,.table and tibble formats.

24 24 _to_num Returns the plate table, where the values for the s indicated in the blocks have been updated. Author(s) Charles Plessy See Also num_to_ p <-.frame( = num_to_(1:96)) head(p) p <- set_block(p, c("a01~b02", "A05~D05"), "dntp", 0.25) p <- set_block(p, "A03", "dntp", 0.50) head(p) # Be careful with the column names p <- set_block(p, "A01~H12", "Mg2+", 3.0) head(p) ## Not run: # Chained updates with magrittr p %<>% setblock("a01~c04", "dntp", 0.5) %>% setblock("a01~c04", "Mg", 3.0) ## End(Not run) _to_num Converts labels to numbers Converts alpha-numeric labels to numbers corresponding to positions within a microtitre plate. Either 96 or 384 plate, in column-wise order or in a column snaking pattern. _to_num(s, style = "normal", plate = 96)

25 z_grid 25 s style Vector of identifiers e.g "A01" Either normal, starting at the left hand column at each row or in a snaking fashion. ( normal or snake ) plate Number of s in the complete plate (96 or 384) Vector of numbers _to_num("a01") _to_num("p12", plate = 384) _to_num("p12", plate = 384, style = "snake") s <- c("a01", "A02", "A03") _to_num(s) z_grid Plots multiple platemaps with heatmap of scaled values Converts numerical values. labels, and plate labels into multiple plate heatmaps z_grid(,, plate_id, ncols = 2, plate = 96, each = FALSE) plate_id ncols Numerical values to be plotted Vector of identifiers e.g "A01" Vector of plate identifiers e.g "Plate_1" Number of columns to display multiple heatmaps plate Number of s in complete plate (96, 384 or 1569) each ggplot plot boolean, if true scales each plate individually, if false will scale the pooled values of

26 26 z_map df01 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 1) df02 <-.frame( = num_to_(1:96), vals = rnorm(96), plate = 2) df <- rbind(df01, df02) z_grid( = df$vals, = df$, plate_id = df$plate, plate = 96) z_map Plots a platemap with heatmap of scaled values Converts numerical values and labels into multiple plate heatmaps z_map(,, plate = 96) Numerical values to be plotted Vector of identifiers e.g "A01" plate Number of s in complete plate (96, 384 or 1536)) ggplot plot df <-.frame(vals = rnorm(1:384), = num_to_(1:384, plate = 384)) z_map( = df$vals, = df$, plate = 384)

27 Index Topic sets readmap_, 22 b_grid, 3 b_map, 4 b_score, 5 bhit_map, 2 check_plate_input, 6.frame, 23.table, 23 DataFrame, 23 dist_map, 6 fill_plate, 7 hit_grid, 7 hit_map, 8 plt384, 19 plt96, 20 raw_grid, 20 raw_map, 21 read_map, 22 readmap_, 22 rotate_plate, 23 set_block, 23 tibble, 23 _to_num, 24 z_grid, 25 z_map, 26 is_1536, 9 list_to_frame, 10 med_smooth, 10 missing_s, 11 num_to_, 11, 24 pc_grid, 14 pc_map, 15 pchit_grid, 12 pchit_map, 13 plate_effect, 15 plate_map, 16 plate_map_grid, 16 plate_map_grid_scale, 17 plate_map_multiple, 17 plate_map_scale, 18 plate_matrix, 18 plt1536, 19 27

Package polypoly. R topics documented: May 27, 2017

Package polypoly. R topics documented: May 27, 2017 Package polypoly May 27, 2017 Title Helper Functions for Orthogonal Polynomials Version 0.0.2 Tools for reshaping, plotting, and manipulating matrices of orthogonal polynomials. Depends R (>= 3.3.3) License

More information

Package gtheory. October 30, 2016

Package gtheory. October 30, 2016 Package gtheory October 30, 2016 Version 0.1.2 Date 2016-10-22 Title Apply Generalizability Theory with R Depends lme4 Estimates variance components, generalizability coefficients, universe scores, and

More information

Package kgc. December 21, Version Date Title Koeppen-Geiger Climatic Zones

Package kgc. December 21, Version Date Title Koeppen-Geiger Climatic Zones Version 1.0.0.2 Date 2017-12-01 Title Koeppen-Geiger Climatic Zones Package kgc December 21, 2017 Author Chelsey Bryant [aut, cre] (0000-0003-3603-4854), Nicholas R. Wheeler [aut] (0000-0003-2248-8919),

More information

Package rdefra. March 20, 2017

Package rdefra. March 20, 2017 Package rdefra March 20, 2017 Title Interact with the UK AIR Pollution Database from DEFRA Version 0.3.4 Maintainer Claudia Vitolo URL https://github.com/ropensci/rdefra BugReports

More information

Package RSwissMaps. October 3, 2017

Package RSwissMaps. October 3, 2017 Title Plot and Save Customised Swiss Maps Version 0.1.0 Package RSwissMaps October 3, 2017 Allows to link data to Swiss administrative divisions (municipalities, districts, cantons) and to plot and save

More information

Package RTransferEntropy

Package RTransferEntropy Type Package Package RTransferEntropy March 12, 2019 Title Measuring Information Flow Between Time Series with Shannon and Renyi Transfer Entropy Version 0.2.8 Measuring information flow between time series

More information

Package cvequality. March 31, 2018

Package cvequality. March 31, 2018 Package cvequality March 31, 2018 Type Package Title Tests for the Equality of Coefficients of Variation from Multiple Groups Version 0.1.3 Maintainer Ben Marwick Contains functions

More information

Package Tcomp. June 6, 2018

Package Tcomp. June 6, 2018 Package Tcomp June 6, 2018 Title Data from the 2010 Tourism Forecasting Competition Version 1.0.1 The 1311 time series from the tourism forecasting competition conducted in 2010 and described in Athanasopoulos

More information

Package MicroMacroMultilevel

Package MicroMacroMultilevel Type Package Package MicroMacroMultilevel July 1, 2017 Description Most multilevel methodologies can only model macro-micro multilevel situations in an unbiased way, wherein group-level predictors (e.g.,

More information

Package reinforcedpred

Package reinforcedpred Type Package Package reinforcedpred October 31, 2018 Title Reinforced Risk Prediction with Budget Constraint Version 0.1.1 Author Yinghao Pan [aut, cre], Yingqi Zhao [aut], Eric Laber [aut] Maintainer

More information

Package noncompliance

Package noncompliance Type Package Package noncompliance February 15, 2016 Title Causal Inference in the Presence of Treatment Noncompliance Under the Binary Instrumental Variable Model Version 0.2.2 Date 2016-02-11 A finite-population

More information

Package DNMF. June 9, 2015

Package DNMF. June 9, 2015 Version 1.3 Date 2015-06-09 Package DNMF June 9, 2015 Title Discriminant Non-Negative Matrix Factorization Discriminant Non-Negative Matrix Factorization aims to extend the Non-negative Matrix Factorization

More information

Package timelines. August 29, 2016

Package timelines. August 29, 2016 Type Package Title Timeline and Time Duration-Related Tools Version 0.1.1 Date 2016-08-21 Author Dahee Lee [aut, cre], Dustin Tingley [aut] Maintainer Dahee Lee Package timelines August

More information

Package depth.plot. December 20, 2015

Package depth.plot. December 20, 2015 Package depth.plot December 20, 2015 Type Package Title Multivariate Analogy of Quantiles Version 0.1 Date 2015-12-19 Maintainer Could be used to obtain spatial depths, spatial ranks and outliers of multivariate

More information

Package funrar. March 5, 2018

Package funrar. March 5, 2018 Title Functional Rarity Indices Computation Version 1.2.2 Package funrar March 5, 2018 Computes functional rarity indices as proposed by Violle et al. (2017) . Various indices

More information

Package owmr. January 14, 2017

Package owmr. January 14, 2017 Title OpenWeatherMap API Wrapper Version 0.7.2 Package owmr January 14, 2017 Accesses OpenWeatherMap's (owm) API. 'owm' itself is a service providing weather data in the past,

More information

Package weathercan. July 5, 2018

Package weathercan. July 5, 2018 Type Package Package weathercan July 5, 2018 Title Download Weather Data from the Environment and Climate Change Canada Website Version 0.2.7 Provides means for downloading historical weather data from

More information

Package invgamma. May 7, 2017

Package invgamma. May 7, 2017 Package invgamma May 7, 2017 Type Package Title The Inverse Gamma Distribution Version 1.1 URL https://github.com/dkahle/invgamma BugReports https://github.com/dkahle/invgamma/issues Description Light

More information

Package Perc. R topics documented: December 5, Type Package

Package Perc. R topics documented: December 5, Type Package Type Package Package Perc December 5, 2016 Title Using Percolation and Conductance to Find Information Flow Certainty in a Direct Network Version 0.1.2 Date 2016-05-04 To find the certainty of dominance

More information

Package horseshoe. November 8, 2016

Package horseshoe. November 8, 2016 Title Implementation of the Horseshoe Prior Version 0.1.0 Package horseshoe November 8, 2016 Description Contains functions for applying the horseshoe prior to highdimensional linear regression, yielding

More information

Package MAPA. R topics documented: January 5, Type Package Title Multiple Aggregation Prediction Algorithm Version 2.0.4

Package MAPA. R topics documented: January 5, Type Package Title Multiple Aggregation Prediction Algorithm Version 2.0.4 Type Package Title Multiple Aggregation Prediction Algorithm Version 2.0.4 Package MAPA January 5, 2018 Functions and wrappers for using the Multiple Aggregation Prediction Algorithm (MAPA) for time series

More information

Package multivariance

Package multivariance Package multivariance January 10, 2018 Title Measuring Multivariate Dependence Using Distance Multivariance Version 1.1.0 Date 2018-01-09 Distance multivariance is a measure of dependence which can be

More information

Package matrixnormal

Package matrixnormal Version 0.0.0 Date 2018-10-26 Type Package Title The Matrix Normal Distribution Depends R (>= 3.5.0) Imports mvtnorm (>= 1.0.8), utils (>= 3.5.0) Package matrixnormal October 30, 2018 Suggests datasets

More information

Package RATest. November 30, Type Package Title Randomization Tests

Package RATest. November 30, Type Package Title Randomization Tests Type Package Title Randomization Tests Package RATest November 30, 2018 A collection of randomization tests, data sets and examples. The current version focuses on three testing problems and their implementation

More information

Package HIMA. November 8, 2017

Package HIMA. November 8, 2017 Type Package Title High-Dimensional Mediation Analysis Version 1.0.5 Date 2017-11-05 Package HIMA November 8, 2017 Description Allows to estimate and test high-dimensional mediation effects based on sure

More information

Package cellscape. October 15, 2018

Package cellscape. October 15, 2018 Package cellscape October 15, 2018 Title Explores single cell copy number profiles in the context of a single cell tree Version 1.4.0 Description CellScape facilitates interactive browsing of single cell

More information

Package bigtime. November 9, 2017

Package bigtime. November 9, 2017 Package bigtime November 9, 2017 Type Package Title Sparse Estimation of Large Time Series Models Version 0.1.0 Author Ines Wilms [cre, aut], David S. Matteson [aut], Jacob Bien [aut], Sumanta Basu [aut]

More information

Package rnmf. February 20, 2015

Package rnmf. February 20, 2015 Type Package Title Robust Nonnegative Matrix Factorization Package rnmf February 20, 2015 An implementation of robust nonnegative matrix factorization (rnmf). The rnmf algorithm decomposes a nonnegative

More information

Package MTA. R topics documented: May 14, Title Multiscalar Territorial Analysis Version 0.1.2

Package MTA. R topics documented: May 14, Title Multiscalar Territorial Analysis Version 0.1.2 Title Multiscalar Territorial Analysis Version 0.1.2 Package MTA May 14, 2018 Build multiscalar territorial analysis based on various contexts. License GPL-3 URL https://github.com/riatelab/mta/ BugReports

More information

Package stability. R topics documented: August 23, Type Package

Package stability. R topics documented: August 23, Type Package Type Package Package stability August 23, 2018 Title Stability Analysis of Genotype by Environment Interaction (GEI Version 0.3.0 Author Muhammad Yaseen [aut, cre], Kent M. Eskridge [aut, ctb] Maintainer

More information

Package Select. May 11, 2018

Package Select. May 11, 2018 Package Select May 11, 2018 Title Determines Species Probabilities Based on Functional Traits Version 1.4 The objective of these functions is to derive a species assemblage that satisfies a functional

More information

Package testassay. November 29, 2016

Package testassay. November 29, 2016 Type Package Package testassay November 29, 2016 Title A Hypothesis Testing Framework for Validating an Assay for Precision Version 0.1.0 Author Michael C Sachs and Michael P Fay Maintainer Michael C Sachs

More information

Package baystability

Package baystability Type Package Package baystability March 13, 2018 Title Bayesian Stability Analysis of Genotype by Environment Interaction (GEI Version 0.1.0 Maintainer Muhammad Yaseen Performs general

More information

Package esreg. August 22, 2017

Package esreg. August 22, 2017 Type Package Package esreg August 22, 2017 Title Joint Quantile and Expected Shortfall Regression Version 0.3.1 Date 2017-08-22 Simultaneous modeling of the quantile and the expected shortfall of a response

More information

Package msu. September 30, 2017

Package msu. September 30, 2017 Package msu September 30, 2017 Title Multivariate Symmetric Uncertainty and Other Measurements Version 0.0.1 Estimators for multivariate symmetrical uncertainty based on the work of Gustavo Sosa et al.

More information

Package moderndive. July 6, 2018

Package moderndive. July 6, 2018 Type Package Package moderndive July 6, 2018 Title Tidyverse-Friendly Introductory Linear Regression Version 0.2.0 Maintainer Albert Y. Kim Datasets and wrapper functions for

More information

Package thief. R topics documented: January 24, Version 0.3 Title Temporal Hierarchical Forecasting

Package thief. R topics documented: January 24, Version 0.3 Title Temporal Hierarchical Forecasting Version 0.3 Title Temporal Hierarchical Forecasting Package thief January 24, 2018 Methods and tools for generating forecasts at different temporal frequencies using a hierarchical time series approach.

More information

Package nowcasting. April 25, Type Package

Package nowcasting. April 25, Type Package Type Package Package nowcasting April 25, 2018 Title Nowcast Analysis and Create Real-Time Data Basis Version 0.1.3 Depends R (>= 3.4.0) Date 2018-04-25 Maintainer Daiane Marcolino de Mattos

More information

Package camsrad. November 30, 2016

Package camsrad. November 30, 2016 Type Package Title Client for CAMS Radiation Service Version 0.3.0 Package camsrad November 30, 2016 Maintainer Lukas Lundstrom Copernicus Atmosphere Monitoring Service (CAMS) radiations

More information

Package beam. May 3, 2018

Package beam. May 3, 2018 Type Package Package beam May 3, 2018 Title Fast Bayesian Inference in Large Gaussian Graphical Models Version 1.0.2 Date 2018-05-03 Author Gwenael G.R. Leday [cre, aut], Ilaria Speranza [aut], Harry Gray

More information

Package covsep. May 6, 2018

Package covsep. May 6, 2018 Package covsep May 6, 2018 Title Tests for Determining if the Covariance Structure of 2-Dimensional Data is Separable Version 1.1.0 Author Shahin Tavakoli [aut, cre], Davide Pigoli [ctb], John Aston [ctb]

More information

Package cartogram. June 21, 2018

Package cartogram. June 21, 2018 Title Create Cartograms with R Version 0.1.0 Package cartogram June 21, 2018 Description Construct continuous and non-contiguous area cartograms. URL https://github.com/sjewo/cartogram BugReports https://github.com/sjewo/cartogram/issues

More information

Package aspi. R topics documented: September 20, 2016

Package aspi. R topics documented: September 20, 2016 Type Package Title Analysis of Symmetry of Parasitic Infections Version 0.2.0 Date 2016-09-18 Author Matt Wayland Maintainer Matt Wayland Package aspi September 20, 2016 Tools for the

More information

Package SK. May 16, 2018

Package SK. May 16, 2018 Type Package Package SK May 16, 2018 Title Segment-Based Ordinary Kriging and Segment-Based Regression Kriging for Spatial Prediction Date 2018-05-10 Version 1.1 Maintainer Yongze Song

More information

Package r2glmm. August 5, 2017

Package r2glmm. August 5, 2017 Type Package Package r2glmm August 5, 2017 Title Computes R Squared for Mixed (Multilevel) Models Date 2017-08-04 Version 0.1.2 The model R squared and semi-partial R squared for the linear and generalized

More information

Package tspi. August 7, 2017

Package tspi. August 7, 2017 Package tspi August 7, 2017 Title Improved Prediction Intervals for ARIMA Processes and Structural Time Series Version 1.0.2 Date 2017-08-07 Author Jouni Helske Maintainer Jouni Helske

More information

Package sscor. January 28, 2016

Package sscor. January 28, 2016 Type Package Package sscor January 28, 2016 Title Robust Correlation Estimation and Testing Based on Spatial Signs Version 0.2 Date 2016-01-19 Depends pcapp, robustbase, mvtnorm Provides the spatial sign

More information

Package BGGE. August 10, 2018

Package BGGE. August 10, 2018 Package BGGE August 10, 2018 Title Bayesian Genomic Linear Models Applied to GE Genome Selection Version 0.6.5 Date 2018-08-10 Description Application of genome prediction for a continuous variable, focused

More information

Package MultisiteMediation

Package MultisiteMediation Version 0.0.1 Date 2017-02-25 Package MultisiteMediation February 26, 2017 Title Causal Mediation Analysis in Multisite Trials Author Xu Qin, Guanglei Hong Maintainer Xu Qin Depends

More information

Package scpdsi. November 18, 2018

Package scpdsi. November 18, 2018 Type Package Package scpdsi November 18, 2018 Title Calculation of the Conventional and Self-Calibrating Palmer Drought Severity Index Version 0.1.3 Date 2018-11-18 Description Calculating the monthly

More information

Package jmcm. November 25, 2017

Package jmcm. November 25, 2017 Type Package Package jmcm November 25, 2017 Title Joint Mean-Covariance Models using 'Armadillo' and S4 Version 0.1.8.0 Maintainer Jianxin Pan Fit joint mean-covariance models

More information

Package nardl. R topics documented: May 7, Type Package

Package nardl. R topics documented: May 7, Type Package Type Package Package nardl May 7, 2018 Title Nonlinear Cointegrating Autoregressive Distributed Lag Model Version 0.1.5 Author Taha Zaghdoudi Maintainer Taha Zaghdoudi Computes the

More information

Package GSODR. March 30, 2018

Package GSODR. March 30, 2018 Type Package Package GSODR March 30, 2018 Title Global Surface Summary of the Day (GSOD) Weather Data from R Version 1.2.0 URL https://github.com/ropensci/gsodr BugReports https://github.com/ropensci/gsodr/issues

More information

Package rrr. R topics documented: December 9, Title Reduced-Rank Regression Version URL

Package rrr. R topics documented: December 9, Title Reduced-Rank Regression Version URL Title Reduced-Ran Regression Version 1.0.0 URL http://github.com/chrisadd/rrr Pacage rrr December 9, 2016 Reduced-ran regression, diagnostics and graphics. Depends R (>= 3.2.0) Imports Rcpp, MASS, magrittr,

More information

Package robustrao. August 14, 2017

Package robustrao. August 14, 2017 Type Package Package robustrao August 14, 2017 Title An Extended Rao-Stirling Diversity Index to Handle Missing Data Version 1.0-3 Date 2016-01-31 Author María del Carmen Calatrava Moreno [aut, cre], Thomas

More information

Package NlinTS. September 10, 2018

Package NlinTS. September 10, 2018 Type Package Title Non Linear Time Series Analysis Version 1.3.5 Date 2018-09-05 Package NlinTS September 10, 2018 Maintainer Youssef Hmamouche Models for time series forecasting

More information

Package countyweather

Package countyweather Package countyweather October 26, 2016 Type Package Title Compiles Meterological Data for U.S. Counties Version 0.1.0 Date 2016-10-25 Interacts with NOAA data sources (including the NCDC API at

More information

Package causalweight

Package causalweight Type Package Package causalweight August 1, 2018 Title Estimation Methods for Causal Inference Based on Inverse Probability Weighting Version 0.1.1 Author Hugo Bodory and Martin Huber Maintainer Hugo Bodory

More information

Package face. January 19, 2018

Package face. January 19, 2018 Package face January 19, 2018 Title Fast Covariance Estimation for Sparse Functional Data Version 0.1-4 Author Luo Xiao [aut,cre], Cai Li [aut], William Checkley [aut], Ciprian Crainiceanu [aut] Maintainer

More information

Package asus. October 25, 2017

Package asus. October 25, 2017 Package asus October 25, 2017 Title Aaptive SURE Thresholing Using Sie Information Version 1.0.0 Provies the ASUS proceure for estimating a high imensional sparse parameter in the presence of auxiliary

More information

Package elhmc. R topics documented: July 4, Type Package

Package elhmc. R topics documented: July 4, Type Package Package elhmc July 4, 2017 Type Package Title Sampling from a Empirical Likelihood Bayesian Posterior of Parameters Using Hamiltonian Monte Carlo Version 1.1.0 Date 2017-07-03 Author Dang Trung Kien ,

More information

Package SMFilter. December 12, 2018

Package SMFilter. December 12, 2018 Package SMFilter December 12, 2018 Title Filtering Algorithms for the State Space Models on the Stiefel Manifold Version 1.0.3 Provides the filtering algorithms for the state space models on the Stiefel

More information

Package SCEPtERbinary

Package SCEPtERbinary Package SCEPtERbinary February 19, 2015 Title Stellar CharactEristics Pisa Estimation grid for Binary Systems Version 0.1-1 Date 2014-04-12 SCEPtER pipeline for estimating the stellar age for double-lined

More information

Package effectfusion

Package effectfusion Package November 29, 2016 Title Bayesian Effect Fusion for Categorical Predictors Version 1.0 Date 2016-11-21 Author Daniela Pauger [aut, cre], Helga Wagner [aut], Gertraud Malsiner-Walli [aut] Maintainer

More information

Package Delaporte. August 13, 2017

Package Delaporte. August 13, 2017 Type Package Package Delaporte August 13, 2017 Title Statistical Functions for the Delaporte Distribution Version 6.1.0 Date 2017-08-13 Description Provides probability mass, distribution, quantile, random-variate

More information

Package exuber. June 17, 2018

Package exuber. June 17, 2018 Type Package Package exuber June 17, 2018 Title Econometric Analysis of Explosive Time Series Version 0.1.0 Testing for and dating periods of explosive dynamics (exuberance) in time series using recursive

More information

Package chemcal. July 17, 2018

Package chemcal. July 17, 2018 Version 0.2.1 Date 2018-07-17 Package chemcal July 17, 2018 Title Calibration Functions for Analytical Chemistry Suggests MASS, knitr, testthat, investr Simple functions for plotting linear calibration

More information

Package RI2by2. October 21, 2016

Package RI2by2. October 21, 2016 Package RI2by2 October 21, 2016 Type Package Title Randomization Inference for Treatment Effects on a Binary Outcome Version 1.3 Author Joseph Rigdon, Wen Wei Loh, Michael G. Hudgens Maintainer Wen Wei

More information

Package coop. November 14, 2017

Package coop. November 14, 2017 Type Package Package coop November 14, 2017 Title Co-Operation: Fast Covariance, Correlation, and Cosine Similarity Operations Version 0.6-1 Fast implementations of the co-operations: covariance, correlation,

More information

Package bomrang. August 15, 2018

Package bomrang. August 15, 2018 Type Package Package bomrang August 15, 2018 Title Australian Government Bureau of Meteorology (BOM) Data from R Version 0.3.0 Provides functions to interface with Australian Government Bureau of Meteorology

More information

Package STMedianPolish

Package STMedianPolish Type Package Title Spatio-Temporal Median Polish Version 0.2 Date 2017-03-07 Package STMedianPolish March 8, 2017 Author William Martínez [aut, cre], Melo Carlos [aut],melo Oscar [aut]. Maintainer William

More information

Package jaccard. R topics documented: June 14, Type Package

Package jaccard. R topics documented: June 14, Type Package Tpe Package Package jaccard June 14, 2018 Title Test Similarit Between Binar Data using Jaccard/Tanimoto Coefficients Version 0.1.0 Date 2018-06-06 Author Neo Christopher Chung , Błażej

More information

Package varband. November 7, 2016

Package varband. November 7, 2016 Type Package Package varband November 7, 2016 Title Variable Banding of Large Precision Matrices Version 0.9.0 Implementation of the variable banding procedure for modeling local dependence and estimating

More information

Package KMgene. November 22, 2017

Package KMgene. November 22, 2017 Type Package Package KMgene November 22, 2017 Title Gene-Based Association Analysis for Complex Traits Version 1.2 Author Qi Yan Maintainer Qi Yan Gene based association test between a

More information

Package denseflmm. R topics documented: March 17, 2017

Package denseflmm. R topics documented: March 17, 2017 Package denseflmm March 17, 2017 Type Package Title Functional Linear Mixed Models for Densely Sampled Data Version 0.1.0 Author Sonja Greven, Jona Cederbaum Maintainer Jona Cederbaum

More information

Package weightquant. R topics documented: December 30, Type Package

Package weightquant. R topics documented: December 30, Type Package Type Package Package weightquant December 30, 2018 Title Weights for Incomplete Longitudinal Data and Quantile Regression Version 1.0 Date 2018-12-18 Author Viviane Philipps Maintainer Viviane Philipps

More information

Package supernova. February 23, 2018

Package supernova. February 23, 2018 Type Package Package supernova February 23, 2018 Title Judd & McClelland Formatting for ANOVA Output Version 1.0 Date 2018-02-09 LazyData yes Produces ANOVA tables in the format used by Judd, McClelland,

More information

Package HarmonicRegression

Package HarmonicRegression Package HarmonicRegression April 1, 2015 Type Package Title Harmonic Regression to One or more Time Series Version 1.0 Date 2015-04-01 Author Paal O. Westermark Maintainer Paal O. Westermark

More information

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5. Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.1 Date 2018-02-04 Package gk February 4, 2018 Functions for the g-and-k and generalised g-and-h distributions. License GPL-2 Imports

More information

Package EMVS. April 24, 2018

Package EMVS. April 24, 2018 Type Package Package EMVS April 24, 2018 Title The Expectation-Maximization Approach to Bayesian Variable Selection Version 1.0 Date 2018-04-23 Author Veronika Rockova [aut,cre], Gemma Moran [aut] Maintainer

More information

Package cosinor2. October 15, 2018

Package cosinor2. October 15, 2018 Package cosinor2 October 15, 2018 Title Extended Tools for Cosinor Analysis of Rhythms Statistical procedures for calculating population mean cosinor, non stationary cosinor, estimation of best fitting

More information

Package AID. R topics documented: November 10, Type Package Title Box-Cox Power Transformation Version 2.3 Date Depends R (>= 2.15.

Package AID. R topics documented: November 10, Type Package Title Box-Cox Power Transformation Version 2.3 Date Depends R (>= 2.15. Type Package Title Box-Cox Power Transformation Version 2.3 Date 2017-11-10 Depends R (>= 2.15.0) Package AID November 10, 2017 Imports MASS, tseries, nortest, ggplot2, graphics, psych, stats Author Osman

More information

Package ADPF. September 13, 2017

Package ADPF. September 13, 2017 Package ADPF September 13, 2017 Title Use Least Squares Polynomial Regression and Statistical Testing to Improve Savitzky-Golay Version 0.0.1 Maintainer Samuel Kruse Description This

More information

Package clr. December 3, 2018

Package clr. December 3, 2018 Type Package Package clr December 3, 2018 Title Curve Linear Regression via Dimension Reduction Version 0.1.0 Author Amandine Pierrot with contributions and/or help from Qiwei Yao, Haeran Cho, Yannig Goude

More information

Package convospat. November 3, 2017

Package convospat. November 3, 2017 Type Package Package convospat November 3, 2017 Title Convolution-Based Nonstationary Spatial Modeling Version 1.2.4 Date 2017-11-03 Fits convolution-based nonstationary Gaussian process models to point-referenced

More information

Package idmtpreg. February 27, 2018

Package idmtpreg. February 27, 2018 Type Package Package idmtpreg February 27, 2018 Title Regression Model for Progressive Illness Death Data Version 1.1 Date 2018-02-23 Author Leyla Azarang and Manuel Oviedo de la Fuente Maintainer Leyla

More information

Package icmm. October 12, 2017

Package icmm. October 12, 2017 Type Package Package icmm October 12, 2017 Title Empirical Bayes Variable Selection via ICM/M Algorithm Version 1.1 Author Vitara Pungpapong [aut, cre], Min Zhang [aut], Dabao Zhang [aut] Maintainer Vitara

More information

Package ShrinkCovMat

Package ShrinkCovMat Type Package Package ShrinkCovMat Title Shrinkage Covariance Matrix Estimators Version 1.2.0 Author July 11, 2017 Maintainer Provides nonparametric Steinian shrinkage estimators

More information

Package paramgui. March 15, 2018

Package paramgui. March 15, 2018 Package paramgui March 15, 2018 Title A Shiny GUI for some Parameter Estimation Examples Version 2.1.3 Allows specification and fitting of some parameter estimation examples inspired by time-resolved spectroscopy

More information

Package rela. R topics documented: February 20, Version 4.1 Date Title Item Analysis Package with Standard Errors

Package rela. R topics documented: February 20, Version 4.1 Date Title Item Analysis Package with Standard Errors Version 4.1 Date 2009-10-25 Title Item Analysis Package with Standard Errors Package rela February 20, 2015 Author Michael Chajewski Maintainer Michael Chajewski

More information

Package RootsExtremaInflections

Package RootsExtremaInflections Type Package Package RootsExtremaInflections May 10, 2017 Title Finds Roots, Extrema and Inflection Points of a Curve Version 1.1 Date 2017-05-10 Author Demetris T. Christopoulos Maintainer Demetris T.

More information

Package PeriodicTable

Package PeriodicTable Package PeriodicTable August 29, 2017 Type Package Title Periodic Table of the Elements Version 0.1.2 Encoding UTF-8 Author Julien Idé Maintainer Julien Idé Provides a dataset

More information

Package FinCovRegularization

Package FinCovRegularization Type Package Package FinCovRegularization April 25, 2016 Title Covariance Matrix Estimation and Regularization for Finance Version 1.1.0 Estimation and regularization for covariance matrix of asset returns.

More information

Package robis. July 2, 2018

Package robis. July 2, 2018 Package robis July 2, 2018 Title Ocean Biogeographic Information System (OBIS) Client Client for the Ocean Biogeographic Information System (). Includes functions for each of the API

More information

Package BNN. February 2, 2018

Package BNN. February 2, 2018 Type Package Package BNN February 2, 2018 Title Bayesian Neural Network for High-Dimensional Nonlinear Variable Selection Version 1.0.2 Date 2018-02-02 Depends R (>= 3.0.2) Imports mvtnorm Perform Bayesian

More information

Package SimCorMultRes

Package SimCorMultRes Type Package Package SimCorMultRes Title Simulates Correlated Multinomial Responses July 10, 2018 Description Simulates correlated multinomial responses conditional on a marginal model specification. Version

More information

Package scio. February 20, 2015

Package scio. February 20, 2015 Title Sparse Column-wise Inverse Operator Version 0.6.1 Author Xi (Rossi) LUO and Weidong Liu Package scio February 20, 2015 Maintainer Xi (Rossi) LUO Suggests clime, lorec, QUIC

More information

Package solrad. November 5, 2018

Package solrad. November 5, 2018 Package solrad November 5, 2018 Title Calculating Solar Radiation and Related Variables Based on Location, Time and Topographical Conditions For surface energy models and estimation of solar positions

More information

Package netdep. July 10, 2018

Package netdep. July 10, 2018 Type Package Title Testing for Network Dependence Version 0.1.0 Maintainer oujin Lee Imports stats, igraph, igraphdata, MSS, mvrtn Suggests knitr, testthat Package netdep July 10, 2018

More information

Package misctools. November 25, 2016

Package misctools. November 25, 2016 Version 0.6-22 Date 2016-11-25 Title Miscellaneous Tools and Utilities Author, Ott Toomet Package misctools November 25, 2016 Maintainer Depends R (>= 2.14.0) Suggests Ecdat

More information