Package rafalib. R topics documented: August 29, Version 1.0.0

Size: px
Start display at page:

Download "Package rafalib. R topics documented: August 29, Version 1.0.0"

Transcription

1 Version Package rafalib August 29, 2016 Title Convenience Functions for Routine Data Eploration A series of shortcuts for routine tasks originally developed by Rafael A. Irizarry to facilitate data eploration. Author Rafael A. Irizarry and Michael I. Love Maintainer Rafael A. Irizarry <rafa@jimmy.harvard.edu> Imports RColorBrewer License Artistic-2.0 LazyData yes NeedsCompilation no Repository CRAN Date/Publication :00:40 R topics documented: as.fumeric bartab imagemat imagesort install_bioc largeobj maplot mypar myplclust nullplot peek popsd popvar sboplot shist splitit splot Inde 13 1

2 2 bartab as.fumeric converts to factor and then numeric Converts a vector of characters into factors and then converts these into numeric. as.fumeric(, levels = unique()) levels a character vector the leves to be used in the call to factor Rafael A. Irizarry Eamples group = c("a","a","b","b") plot(seq_along(group),col=as.fumeric(group)) bartab bartab Plot the overlap of three groups with a barplot bartab(, y, z, names, skipnone = FALSE,...) logical y logical z logical names a character vector of length 3 skipnone remove the "none" group... further arguments passed on to barplot

3 imagemat 3 Michael I. Love imagemat image of a matri Produces an image of a matri which matches the natural orientation. imagemat(, col = colorramppalette(c("white", "black"))(9), las = 1, lab = "", ylab = "",...) the matri col the colors las as in par lab -ais title ylab y-ais title... arguments passed to image Michael I. Love Eamples <- matri(c(1,0,0,0,1, 1,1,0,1,1, 1,0,1,0,1, 1,0,0,0,1, 1,0,0,0,1), ncol=5,byrow=true) imagemat()

4 4 install_bioc imagesort image with sorted rows the rows are sorted such that the first column has 2 blocks, the second column has 4 blocks, etc. see eample("imagesort") imagesort(, col = c("white", "black"),...) a matri of 0s and 1s col the colors of 0 and 1... arguments to heatmap Michael I. Love Eamples <- replicate(4,sample(0:1,40,true)) imagesort() install_bioc Install or update Bioconductor and CRAN packages This is function simply a wrapper for bioclite. It first sources the code from the Bioconductor site then calls bioclite. install_bioc(...)... arguments passed on to bioclite

5 largeobj 5 Details Note that once you run this function in a session, you no longer need to call since you can call bioclite directly. Rafael A. Irizarry largeobj What are the largest objects in memory? This function lists all the objects in the global environmnet and lists the n largest. largeobj(n = 5, units = "Mb") n units the number of objects to return units to display, see?object.size Value a named character string of the size of the n largest objects Michael I. Love maplot Bland Altman plot aka MA plot Takes two vectors and y and plots M=y- versus A=(+y)/2. If the vectors a more longer than length n the data is sampled to size n. A smooth curve is added to show trends. maplot(, y, n = 10000, subset = NULL, lab = NULL, ylab = NULL, curve.add = TRUE, curve.col = 2, curve.span = 1/2, curve.lwd = 2, curve.n = 2000,...)

6 6 mypar y n subset lab ylab curve.add curve.col curve.span curve.lwd curve.n a numeric vector a numeric vector a numeric value. If length() is larger than n, the and y are sampled down. inde of the points to be plotted a title for the ais a title for the y ais if TRUE a smooth curve is fit to the data and displayed. The function loess is used to fit the curve. a numeric value that determines the color of the smooth curve is passed on to loess as the span argument the line width for the smooth curve a numeric value that determines the sample size used to fit the curve. This makes fitting the curve faster with large datasets... further arguments passed to plot Rafael A. Irizarry Eamples n < signal <- runif(n,4,15) bias <- (signal/5-2)^2 <- signal + rnorm(n) y <- signal + bias + rnorm(n) maplot(,y) mypar mypar Called without arguments, this function optimizes graphical parameters for the RStudio plot window. bigpar uses big fonts which are good for presentations. mypar(a = 1, b = 1, brewer.n = 8, brewer.name = "Dark2", ce.lab = 1, ce.main = 1.2, ce.ais = 1, mar = c(2.5, 2.5, 1.6, 1.1), mgp = c(1.5, 0.5, 0),...)

7 myplclust 7 a b brewer.n brewer.name ce.lab ce.main ce.ais mar mgp the first entry of the vector passed to mar the second entry of the vector passed to mar parameter n passed to brewer.pal parameters name passed to brewer.pal passed on to par passed on to par passed on to par passed on to par passed on to par... other parameters passed on to par Rafael A. Irizarry Eamples mypar() plot(cars) bigpar() plot(cars) myplclust plclust in colour Modifiction of plclust for plotting hclust objects in *in colour*! myplclust(hclust, labels = hclust$labels, lab.col = rep(1, length(hclust$labels)), hang = 0.1, lab = "", sub = "",...) hclust labels lab.col hang lab sub hclust object a character vector of labels of the leaves of the tree colour for the labels; NA=default device foreground colour as in hclust & plclust title for -ais (defaults to no title) subtitle (defualts to no subtitle)... further arguments passed to plot

8 8 peek Eva KF Chan nullplot nullplot Make an plot with nothing in it nullplot(1 = 0, 2 = 1, y1 = 0, y2 = 1, lab = "", ylab = "",...) 1 lowest -ais value 2 largest -ais value y1 lowest y-ais value y2 largest y-ais value lab -ais title, defaults to no title ylab y-ais title, defaults to no title... further arguments passed on to plot peek peek at the top of a tet file this returns a character vector which shows the top n lines of a file peek(, n = 2) n a filename the number of lines to return Michael I. Love

9 popsd 9 popsd population standard deviation Returns the population variance. Note that sd returns the unbiased sample estimate of the population varaince. It simply multiplies the result of var by (n-1) / n with n the populaton size and takes the square root. popsd(, na.rm = FALSE) na.rm a numeric vector or an R object which is coercible to one by as.vector(, "numeric"). logical. Should missing values be removed? popvar population variance Returns the population variance. Note that var returns the unbiased sample estimate of the population varaince. It simply multiplies the result of var by (n-1) / n with n the populaton size. popvar(,...) a numeric vector, matri or data frame.... further arguments passed along to var

10 10 shist sboplot smart boplot draws points or boes depending on sample size sboplot(,...) a named list of numeric vectors... further arguments passed on to boplot Eamples sboplot(list(a=rnorm(15),b=rnorm(75),c=rnorm(10000))) shist smooth histogram a smooth histogram with unit indicator (we re simply scaling the kernel density estimate). The advantage of this plot is its interpretability since the height of the curve represents the frequency of a interval of size unit around the point in question. Another advantage is that if z is a matri, curves are plotted together. shist(z, unit, bw = "nrd0", n, from, to, plothist = FALSE, add = FALSE, lab, ylab = "Frequency", lim, ylim, main,...) z unit bw n from to plothist the data the unit which determines the y ais scaling and is drawn arguments to density arguments to density arguments to density arguments to density a logical: should an actual histogram be drawn under curve?

11 splitit 11 add a logical: add should the curve be added to eisting plot? lab -ais title, defaults to no title ylab y-ais title, defaults to no title lim range of the -ais ylim range of the y-ais main an overall title for the plot: see title.... arguments to lines Eamples set.seed(1) = rnorm(50) par(mfrow=c(2,1)) hist(, breaks=-5:5) shist(, unit=1, lim=c(-5,5)) splitit split it Creates an list of indees for each unique entry of splitit() a vector Eamples <- c("a","a","b","a","b","c","b","b") splitit()

12 12 splot splot smart plot if n > 10,000, make a random subset of 10,000 and plot. You can also specify a specific subset to plot. If length of subset is larger than n, a random sample is still used to reduce data size. splot(, y, n = 10000, subset = NULL, lab = NULL, ylab = NULL,...) y n subset lab ylab the data the y data the number to subset eplicit subset inde (optional). title for the -ais title for the y-ais... further parameters passed on to plot Eamples <- rnorm(1e5) y <- rnorm(1e5) splot(,y,pch=16,col=rgb(0,0,0,.25))

13 Inde as.fumeric, 2 barplot, 2 bartab, 2 bigpar (mypar), 6 boplot, 10 brewer.pal, 7 hclust, 7 imagemat, 3 imagesort, 4 install_bioc, 4 largeobj, 5 loess, 6 maplot, 5 mypar, 6 myplclust, 7 nullplot, 8 par, 7 peek, 8 plclust, 7 plot, 6, 7 popsd, 9 popvar, 9 sboplot, 10 sd, 9 shist, 10 splitit, 11 splot, 12 title, 11 var, 9 13

Package Mondrian. R topics documented: March 4, Type Package

Package Mondrian. R topics documented: March 4, Type Package Type Package Package Mondrian March 4, 2016 Title A Simple Graphical Representation of the Relative Occurrence and Co-Occurrence of Events The unique function of this package allows representing in a single

More information

Package pairsd3. R topics documented: August 29, Title D3 Scatterplot Matrices Version 0.1.0

Package pairsd3. R topics documented: August 29, Title D3 Scatterplot Matrices Version 0.1.0 Title D3 Scatterplot Matrices Version 0.1.0 Package pairsd3 August 29, 2016 Creates an interactive scatterplot matrix using the D3 JavaScript library. See for more information on D3.

More information

Package ICSShiny. April 1, 2018

Package ICSShiny. April 1, 2018 Package ICSShiny April 1, 2018 Type Package Title ICS via a Shiny Application Version 0.5 Date 2018-04-01 Author Aurore Archimbaud, Joris May, Klaus Nordhausen, Anne Ruiz-Gazen Maintainer Klaus Nordhausen

More information

Package superbiclust

Package superbiclust Type Package Package superbiclust February 20, 2015 Title Generating Robust Biclusters from a Bicluster Set (Ensemble Biclustering) Version 1.1 Date 2012-08-23 Author Maintainer

More information

Package smoothr. April 4, 2018

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

More information

Package WhiteStripe. April 19, 2018

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

More information

Package ezsim. R topics documented: February 19, Type Package

Package ezsim. R topics documented: February 19, Type Package Type Package Package ezsim February 19, 2015 Title provide an easy to use framework to conduct simulation Version 0.5.5 Date 2014-06-25 Author Maintainer ezsim provides a handy way to simulation and eamine

More information

Package rivernet. May 12, 2017

Package rivernet. May 12, 2017 Type Package Title Read, Analyze and Plot River Networks Version 1.1 Date 2017-05-11 Author Peter Reichert Package rivernet May 12, 2017 Maintainer Peter Reichert Functions for

More information

Package diagis. January 25, 2018

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

More information

Package kdetrees. February 20, 2015

Package kdetrees. February 20, 2015 Type Package Package kdetrees February 20, 2015 Title Nonparametric method for identifying discordant phylogenetic trees Version 0.1.5 Date 2014-05-21 Author and Ruriko Yoshida Maintainer

More information

Package zebu. R topics documented: October 24, 2017

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

More information

Package sciplot. February 15, 2013

Package sciplot. February 15, 2013 Package sciplot February 15, 2013 Version 1.1-0 Title Scientific Graphing Functions for Factorial Designs Author Manuel Morales , with code developed by the R Development Core Team

More information

Package lvplot. August 29, 2016

Package lvplot. August 29, 2016 Version 0.2.0 Title Letter Value 'Boxplots' Package lvplot August 29, 2016 Implements the letter value 'boxplot' which extends the standard 'boxplot' to deal with both larger and smaller number of data

More information

Package EnQuireR. R topics documented: February 19, Type Package Title A package dedicated to questionnaires Version 0.

Package EnQuireR. R topics documented: February 19, Type Package Title A package dedicated to questionnaires Version 0. Type Package Title A package dedicated to questionnaires Version 0.10 Date 2009-06-10 Package EnQuireR February 19, 2015 Author Fournier Gwenaelle, Cadoret Marine, Fournier Olivier, Le Poder Francois,

More information

Package OLScurve. August 29, 2016

Package OLScurve. August 29, 2016 Type Package Title OLS growth curve trajectories Version 0.2.0 Date 2014-02-20 Package OLScurve August 29, 2016 Maintainer Provides tools for more easily organizing and plotting individual ordinary least

More information

Statistics 251: Statistical Methods

Statistics 251: Statistical Methods Statistics 251: Statistical Methods Summaries and Graphs in R Module R1 2018 file:///u:/documents/classes/lectures/251301/renae/markdown/master%20versions/summary_graphs.html#1 1/14 Summary Statistics

More information

Package batchmeans. R topics documented: July 4, Version Date

Package batchmeans. R topics documented: July 4, Version Date Package batchmeans July 4, 2016 Version 1.0-3 Date 2016-07-03 Title Consistent Batch Means Estimation of Monte Carlo Standard Errors Author Murali Haran and John Hughes

More information

Package SPIn. R topics documented: February 19, Type Package

Package SPIn. R topics documented: February 19, Type Package Type Package Package SPIn February 19, 2015 Title Simulation-efficient Shortest Probability Intervals Version 1.1 Date 2013-04-02 Author Ying Liu Maintainer Ying Liu Depends R

More information

Package superheat. February 4, 2017

Package superheat. February 4, 2017 Type Package Package superheat February 4, 2017 Title A Graphical Tool for Exploring Complex Datasets Using Heatmaps Version 0.1.0 Description A system for generating extendable and customizable heatmaps

More information

Package meme. November 2, 2017

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

More information

Package accrued. R topics documented: August 24, Type Package

Package accrued. R topics documented: August 24, Type Package Type Package Package accrued August 24, 2016 Title Data Quality Visualization Tools for Partially Accruing Data Version 1.4.1 Date 2016-06-07 Author Julie Eaton and Ian Painter Maintainer Julie Eaton

More information

Package statip. July 31, 2018

Package statip. July 31, 2018 Type Package Package statip July 31, 2018 Title Statistical Functions for Probability Distributions and Regression Version 0.2.0 Date 2018-07-31 A collection of miscellaneous statistical functions for

More information

Lab 4: Distributions of random variables

Lab 4: Distributions of random variables Lab 4: Distributions of random variables In this lab we ll investigate the probability distribution that is most central to statistics: the normal distribution If we are confident that our data are nearly

More information

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

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

More information

Package SiZer. February 19, 2015

Package SiZer. February 19, 2015 Version 0.1-4 Date 2011-3-21 Title SiZer: Significant Zero Crossings Package SiZer February 19, 2015 Author Derek Sonderegger Maintainer Derek Sonderegger

More information

Package ellipse. January 6, 2018

Package ellipse. January 6, 2018 Version 0.4.1 Package ellipse January 6, 2018 Title Functions for Drawing Ellipses and Ellipse-Like Confidence Regions Author Duncan Murdoch and E. D. Chow (porting to R by Jesus

More information

Package narray. January 28, 2018

Package narray. January 28, 2018 Package narray January 28, 2018 Title Subset- And Name-Aware Array Utility Functions Version 0.4.0 Author Michael Schubert Maintainer Michael Schubert Stacking

More information

Package d3heatmap. February 1, 2018

Package d3heatmap. February 1, 2018 Type Package Package d3heatmap February 1, 2018 Title Interactive Heat Maps Using 'htmlwidgets' and 'D3.js' Version 0.6.1.2 Date 2016-02-23 Maintainer ORPHANED Description Create interactive heat maps

More information

Package corclass. R topics documented: January 20, 2016

Package corclass. R topics documented: January 20, 2016 Package corclass January 20, 2016 Type Package Title Correlational Class Analysis Version 0.1.1 Date 2016-01-14 Author Andrei Boutyline Maintainer Andrei Boutyline Perform

More information

The nor1mix Package. August 3, 2006

The nor1mix Package. August 3, 2006 The nor1mix Package August 3, 2006 Title Normal (1-d) Mixture Models (S3 Classes and Methods) Version 1.0-6 Date 2006-08-02 Author: Martin Mächler Maintainer Martin Maechler

More information

Package mcmcse. February 15, 2013

Package mcmcse. February 15, 2013 Package mcmcse February 15, 2013 Version 1.0-1 Date 2012 Title Monte Carlo Standard Errors for MCMC Author James M. Flegal and John Hughes Maintainer James M. Flegal

More information

Package crank. R topics documented: January 22, Version Title Completing ranks Date Author Jim Lemon

Package crank. R topics documented: January 22, Version Title Completing ranks Date Author Jim Lemon Version 1.0-1 Title Completing ranks Date 2010-01-15 Author , Package crank January 22, 2010 Maintainer Functions for completing and recalculating rankings. Depends

More information

Package abf2. March 4, 2015

Package abf2. March 4, 2015 Type Package Title Load Gap-Free Axon ABF2 Files Version 0.7-1 Date 2015-03-04 Author Matthew Caldwell Package abf2 March 4, 2015 Maintainer Loads ABF2 files containing gap-free data from electrophysiological

More information

Package clustmixtype

Package clustmixtype Package clustmixtype October 17, 2017 Version 0.1-29 Date 2017-10-15 Title k-prototypes Clustering for Mixed Variable-Type Data Author Gero Szepannek Maintainer Gero Szepannek Imports

More information

Package waterfall. R topics documented: February 15, Type Package. Version Date Title Waterfall Charts in R

Package waterfall. R topics documented: February 15, Type Package. Version Date Title Waterfall Charts in R Package waterfall February 15, 2013 Type Package Version 0.9.9.20121030 Date 2012-10-30 Title Waterfall Charts in R Author James P. Howard, II Maintainer James P. Howard, II

More information

Package meme. December 6, 2017

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

More information

Package kdtools. April 26, 2018

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

More information

Package msda. February 20, 2015

Package msda. February 20, 2015 Title Multi-Class Sparse Discriminant Analysis Version 1.0.2 Date 2014-09-26 Package msda February 20, 2015 Author Maintainer Yi Yang Depends Matri, MASS Efficient procedures for computing

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 vipor. March 22, 2017

Package vipor. March 22, 2017 Type Package Package vipor March 22, 2017 Title Plot Categorical Data Using Quasirandom Noise and Density Estimates Version 0.4.5 Date 2017-03-22 Author Scott Sherrill-Mix, Erik Clarke Maintainer Scott

More information

Package descriptr. March 20, 2018

Package descriptr. March 20, 2018 Type Package Package descriptr March 20, 2018 Title Generate Descriptive Statistics & Eplore Statistical Distributions Version 0.4.1 Generate descriptive statistics such as measures of location, dispersion,

More information

The nor1mix Package. June 12, 2007

The nor1mix Package. June 12, 2007 The nor1mix Package June 12, 2007 Title Normal (1-d) Mixture Models (S3 Classes and Methods) Version 1.0-7 Date 2007-03-15 Author Martin Mächler Maintainer Martin Maechler

More information

R topics documented: 2 genbernoullidata

R topics documented: 2 genbernoullidata Type Package Package BayesCTDesign August 14, 2018 Title Two Arm Bayesian Clinical Trial Design with and Without Historical Control Data Version 0.5.0 Description A set of functions to help clinical trial

More information

Package enpls. May 14, 2018

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

More information

Package Rramas. November 25, 2017

Package Rramas. November 25, 2017 Package Rramas November 25, 2017 Type Package Title Matrix Population Models Version 0.1-5 Date 2017-11-24 Depends diagram Author Marcelino de la Cruz Maintainer Marcelino de la Cruz

More information

Package EM.Fuzzy. August 16, 2018

Package EM.Fuzzy. August 16, 2018 Type Package Package EM.Fuzzy August 16, 2018 Title EM Algorithm for Maximum Likelihood Estimation by Non-Precise Information Version 1.0 Date 2018-08-08 Author Abbas Parchami (Department of Statistics,

More information

Package fitur. March 11, 2018

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

More information

Package slam. December 1, 2016

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

More information

Package dyncorr. R topics documented: December 10, Title Dynamic Correlation Package Version Date

Package dyncorr. R topics documented: December 10, Title Dynamic Correlation Package Version Date Title Dynamic Correlation Package Version 1.1.0 Date 2017-12-10 Package dyncorr December 10, 2017 Description Computes dynamical correlation estimates and percentile bootstrap confidence intervals for

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

Package CINID. February 19, 2015 Package CINID February 19, 2015 Type Package Title Curculionidae INstar IDentification Version 1.2 Date 2014-10-03 Author Aurelie Siberchicot, Adrien Merville, Marie-Claude Bel-Venner and Samuel Venner

More information

Package nplr. August 1, 2015

Package nplr. August 1, 2015 Type Package Title N-Parameter Logistic Regression Version 0.1-4 Date 2015-7-17 Package nplr August 1, 2015 Maintainer Frederic Commo Depends methods Imports stats,graphics Suggests

More information

Package ggsubplot. February 15, 2013

Package ggsubplot. February 15, 2013 Package ggsubplot February 15, 2013 Maintainer Garrett Grolemund License GPL Title Explore complex data by embedding subplots within plots. LazyData true Type Package Author Garrett

More information

CARTWARE Documentation

CARTWARE Documentation CARTWARE Documentation CARTWARE is a collection of R functions written for Classification and Regression Tree (CART) Analysis of ecological data sets. All of these functions make use of existing R functions

More information

Package GLDreg. February 28, 2017

Package GLDreg. February 28, 2017 Type Package Package GLDreg February 28, 2017 Title Fit GLD Regression Model and GLD Quantile Regression Model to Empirical Data Version 1.0.7 Date 2017-03-15 Author Steve Su, with contributions from:

More information

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

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

More information

Package customlayout

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

More information

Package iosmooth. R topics documented: February 20, 2015

Package iosmooth. R topics documented: February 20, 2015 Package iosmooth February 20, 2015 Type Package Title Functions for smoothing with infinite order flat-top kernels Version 0.91 Date 2014-08-19 Author, Dimitris N. Politis Maintainer

More information

Package TANDEM. R topics documented: June 15, Type Package

Package TANDEM. R topics documented: June 15, Type Package Type Package Package TANDEM June 15, 2017 Title A Two-Stage Approach to Maximize Interpretability of Drug Response Models Based on Multiple Molecular Data Types Version 1.0.2 Date 2017-04-07 Author Nanne

More information

R practice. Eric Gilleland. 20th May 2015

R practice. Eric Gilleland. 20th May 2015 R practice Eric Gilleland 20th May 2015 1 Preliminaries 1. The data set RedRiverPortRoyalTN.dat can be obtained from http://www.ral.ucar.edu/staff/ericg. Read these data into R using the read.table function

More information

Package ClustGeo. R topics documented: July 14, Type Package

Package ClustGeo. R topics documented: July 14, Type Package Type Package Package ClustGeo July 14, 2017 Title Hierarchical Clustering with Spatial Constraints Version 2.0 Author Marie Chavent [aut, cre], Vanessa Kuentz [aut], Amaury Labenne [aut], Jerome Saracco

More information

Data Visualization. Andrew Jaffe Instructor

Data Visualization. Andrew Jaffe Instructor Module 9 Data Visualization Andrew Jaffe Instructor Basic Plots We covered some basic plots previously, but we are going to expand the ability to customize these basic graphics first. 2/45 Read in Data

More information

Package arphit. March 28, 2019

Package arphit. March 28, 2019 Type Package Title RBA-style R Plots Version 0.3.1 Author Angus Moore Package arphit March 28, 2019 Maintainer Angus Moore Easily create RBA-style graphs

More information

Package anidom. July 25, 2017

Package anidom. July 25, 2017 Type Package Package anidom July 25, 2017 Title Inferring Dominance Hierarchies and Estimating Uncertainty Version 0.1.2 Date 2017-07-25 Author Damien R. Farine and Alfredo Sanchez-Tojar Maintainer Damien

More information

DSCI 325: Handout 18 Introduction to Graphics in R

DSCI 325: Handout 18 Introduction to Graphics in R DSCI 325: Handout 18 Introduction to Graphics in R Spring 2016 This handout will provide an introduction to creating graphics in R. One big advantage that R has over SAS (and over several other statistical

More information

Package rtsplot. September 15, 2018

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

More information

Package qicharts. October 7, 2014

Package qicharts. October 7, 2014 Version 0.1.0 Date 2014-10-05 Title Quality improvement charts Package qicharts October 7, 2014 Description Functions for making run charts and basic Shewhart control charts for measure and count data.

More information

Package seg. February 15, 2013

Package seg. February 15, 2013 Package seg February 15, 2013 Version 0.2-4 Date 2013-01-21 Title A set of tools for residential segregation research Author Seong-Yun Hong, David O Sullivan Maintainer Seong-Yun Hong

More information

Package bdots. March 12, 2018

Package bdots. March 12, 2018 Type Package Title Bootstrapped Differences of Time Series Version 0.1.19 Date 2018-03-05 Package bdots March 12, 2018 Author Michael Seedorff, Jacob Oleson, Grant Brown, Joseph Cavanaugh, and Bob McMurray

More information

LAB #2: SAMPLING, SAMPLING DISTRIBUTIONS, AND THE CLT

LAB #2: SAMPLING, SAMPLING DISTRIBUTIONS, AND THE CLT NAVAL POSTGRADUATE SCHOOL LAB #2: SAMPLING, SAMPLING DISTRIBUTIONS, AND THE CLT Statistics (OA3102) Lab #2: Sampling, Sampling Distributions, and the Central Limit Theorem Goal: Use R to demonstrate sampling

More information

Tutorial script for whole-cell MALDI-TOF analysis

Tutorial script for whole-cell MALDI-TOF analysis Tutorial script for whole-cell MALDI-TOF analysis Julien Textoris June 19, 2013 Contents 1 Required libraries 2 2 Data loading 2 3 Spectrum visualization and pre-processing 4 4 Analysis and comparison

More information

Package R2SWF. R topics documented: February 15, Version 0.4. Title Convert R Graphics to Flash Animations. Date

Package R2SWF. R topics documented: February 15, Version 0.4. Title Convert R Graphics to Flash Animations. Date Package R2SWF February 15, 2013 Version 0.4 Title Convert R Graphics to Flash Animations Date 2012-07-14 Author Yixuan Qiu and Yihui Xie Maintainer Yixuan Qiu Suggests XML, Cairo

More information

Package mgc. April 13, 2018

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

More information

Package rggobi. August 31, 2016

Package rggobi. August 31, 2016 Version 2.1.21 Title Interface Between R and 'GGobi' Package rggobi August 31, 2016 Author Duncan Temple Lang , Debby Swayne ,, Michael Lawrence

More information

Package sankey. R topics documented: October 22, 2017

Package sankey. R topics documented: October 22, 2017 Package sankey October 22, 2017 Title Illustrate the Flow of Information or Material Version 1.0.2 Author Gábor Csárdi, January Weiner Maintainer Gábor Csárdi Description Plots

More information

Package enrichplot. September 29, 2018

Package enrichplot. September 29, 2018 Package enrichplot September 29, 2018 Title Visualization of Functional Enrichment Result Version 1.1.7 The 'enrichplot' package implements several visualization methods for interpreting functional enrichment

More information

> glucose = c(81, 85, 93, 93, 99, 76, 75, 84, 78, 84, 81, 82, 89, + 81, 96, 82, 74, 70, 84, 86, 80, 70, 131, 75, 88, 102, 115, + 89, 82, 79, 106)

> glucose = c(81, 85, 93, 93, 99, 76, 75, 84, 78, 84, 81, 82, 89, + 81, 96, 82, 74, 70, 84, 86, 80, 70, 131, 75, 88, 102, 115, + 89, 82, 79, 106) This document describes how to use a number of R commands for plotting one variable and for calculating one variable summary statistics Specifically, it describes how to use R to create dotplots, histograms,

More information

Package ggextra. April 4, 2018

Package ggextra. April 4, 2018 Package ggextra April 4, 2018 Title Add Marginal Histograms to 'ggplot2', and More 'ggplot2' Enhancements Version 0.8 Collection of functions and layers to enhance 'ggplot2'. The flagship function is 'ggmarginal()',

More information

Package naivebayes. R topics documented: January 3, Type Package. Title High Performance Implementation of the Naive Bayes Algorithm

Package naivebayes. R topics documented: January 3, Type Package. Title High Performance Implementation of the Naive Bayes Algorithm Package naivebayes January 3, 2018 Type Package Title High Performance Implementation of the Naive Bayes Algorithm Version 0.9.2 Author Michal Majka Maintainer Michal Majka Description

More information

CIND123 Module 6.2 Screen Capture

CIND123 Module 6.2 Screen Capture CIND123 Module 6.2 Screen Capture Hello, everyone. In this segment, we will discuss the basic plottings in R. Mainly; we will see line charts, bar charts, histograms, pie charts, and dot charts. Here is

More information

Package profvis. R topics documented:

Package profvis. R topics documented: Package profvis January 14, 2017 Title Interactive Visualizations for Profiling R Code Version 0.3.3 Interactive visualizations for profiling R code. Depends R (>= 3.0) Imports htmlwidgets (>= 0.3.2),

More information

CHAPTER 6. The Normal Probability Distribution

CHAPTER 6. The Normal Probability Distribution The Normal Probability Distribution CHAPTER 6 The normal probability distribution is the most widely used distribution in statistics as many statistical procedures are built around it. The central limit

More information

Package dupradar. R topics documented: July 12, Type Package

Package dupradar. R topics documented: July 12, Type Package Type Package Package dupradar July 12, 2018 Title Assessment of duplication rates in RNA-Seq datasets Version 1.10.0 Date 2015-09-26 Author Sergi Sayols , Holger Klein

More information

Stat 290: Lab 2. Introduction to R/S-Plus

Stat 290: Lab 2. Introduction to R/S-Plus Stat 290: Lab 2 Introduction to R/S-Plus Lab Objectives 1. To introduce basic R/S commands 2. Exploratory Data Tools Assignment Work through the example on your own and fill in numerical answers and graphs.

More information

Package slam. February 15, 2013

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

More information

Package mfbvar. December 28, Type Package Title Mixed-Frequency Bayesian VAR Models Version Date

Package mfbvar. December 28, Type Package Title Mixed-Frequency Bayesian VAR Models Version Date Type Package Title Mied-Frequency Bayesian VAR Models Version 0.4.0 Date 2018-12-17 Package mfbvar December 28, 2018 Estimation of mied-frequency Bayesian vector autoregressive (VAR) models with Minnesota

More information

Statistics I Practice 2 Notes Probability and probabilistic models; Introduction of the statistical inference

Statistics I Practice 2 Notes Probability and probabilistic models; Introduction of the statistical inference Statistics I Practice 2 Notes Probability and probabilistic models; Introduction of the statistical inference 1. Simulation of random variables In Excel we can simulate values from random variables (discrete

More information

Package LaF. November 20, 2017

Package LaF. November 20, 2017 Type Package Title Fast Access to Large ASCII Files Version 0.8.0 Date 2017-11-16 Author Jan van der Laan Package LaF November 20, 2017 Maintainer Jan van der Laan Methods

More information

Introduction to R and R-Studio Toy Program #1 R Essentials. This illustration Assumes that You Have Installed R and R-Studio

Introduction to R and R-Studio Toy Program #1 R Essentials. This illustration Assumes that You Have Installed R and R-Studio Introduction to R and R-Studio 2018-19 Toy Program #1 R Essentials This illustration Assumes that You Have Installed R and R-Studio If you have not already installed R and RStudio, please see: Windows

More information

Derivatives 3: The Derivative as a Function

Derivatives 3: The Derivative as a Function Derivatives : The Derivative as a Function 77 Derivatives : The Derivative as a Function Model : Graph of a Function 9 8 7 6 5 g() - - - 5 6 7 8 9 0 5 6 7 8 9 0 5 - - -5-6 -7 Construct Your Understanding

More information

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

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

More information

Package mathgraph. February 20, 2015

Package mathgraph. February 20, 2015 Version 0.9-11 Date 2012-10-30 Title Directed and undirected graphs Package mathgraph February 20, 2015 Author Original S code by Patrick J. Burns. Ported to R by Nick Efthymiou. Adapted to new R releases

More information

Package incidence. August 24, Type Package

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

More information

Package spectrolab. October 28, 2018

Package spectrolab. October 28, 2018 Package spectrolab October 28, 2018 Type Package Title Class and Methods for Hyperspectral Data Version 0.0.8 Date 2018-10-28 Input/Output, processing and visualization of spectra taken with different

More information

Package mlegp. April 15, 2018

Package mlegp. April 15, 2018 Type Package Package mlegp April 15, 2018 Title Maximum Likelihood Estimates of Gaussian Processes Version 3.1.7 Date 2018-01-29 Author Garrett M. Dancik Maintainer Garrett M. Dancik

More information

Statistical Programming with R

Statistical Programming with R Statistical Programming with R Lecture 9: Basic graphics in R Part 2 Bisher M. Iqelan biqelan@iugaza.edu.ps Department of Mathematics, Faculty of Science, The Islamic University of Gaza 2017-2018, Semester

More information

Package SCORPIUS. June 29, 2018

Package SCORPIUS. June 29, 2018 Type Package Package SCORPIUS June 29, 2018 Title Inferring Developmental Chronologies from Single-Cell RNA Sequencing Data Version 1.0.2 Date 2018-06-12 An accurate and easy tool for performing trajectory

More information

Package simed. November 27, 2017

Package simed. November 27, 2017 Version 1.0.3 Title Simulation Education Author Barry Lawson, Larry Leemis Package simed November 27, 2017 Maintainer Barry Lawson Imports graphics, grdevices, methods, stats, utils

More information

Computing With R Handout 1

Computing With R Handout 1 Computing With R Handout 1 Getting Into R To access the R language (free software), go to a computing lab that has R installed, or a computer on which you have downloaded R from one of the distribution

More information