Package arphit. March 28, 2019

Size: px
Start display at page:

Download "Package arphit. March 28, 2019"

Transcription

1 Type Package Title RBA-style R Plots Version Author Angus Moore Package arphit March 28, 2019 Maintainer Angus Moore < angusmoore@users.noreply.github.com> Easily create RBA-style graphs using R, using a ggplotlike syntax. Supports a range of common graph types, including multi layouts. License MIT + file LICENSE Encoding UTF-8 LazyData true Imports lubridate, tibble, stringr, plyr, dplyr, rlang, tidyr, devemf, zoo, xts, magick, writexl Suggests testthat, knitr, rmarkdown, covr RoxygenNote VignetteBuilder knitr R topics documented: +.arphit.gg

2 2 +.arphit.gg agg_abline agg_aes agg_arrow agg_autolabel agg_bgshading agg_col agg_draw agg_footnote agg_label agg_legend agg_line agg_point agg_qplot agg_shading agg_source agg_subtitle agg_title agg_units agg_xaxisfreq agg_xaxislabel agg_xlim agg_xunits agg_yaxislabel agg_ylim arphitgg print.arphit.gg RBA Index 23 +.arphit.gg Add a layer or element to an arphitgg graph. Add a layer or element to an arphitgg graph. ## S3 method for class 'arphit.gg' gg + element gg element An arphitgg built graph. The element to add to the graph.

3 agg_abline 3 agg_abline Add an AB line to your graph You need specify only one of x, or y, or x1,x2,y1,y2 agg_abline(x = NULL, y = NULL, x1 = NULL, y1 = NULL, x2 = NULL, y2 = NULL, color = "black",, lwd = 1, lty = 1) x y x1 y1 x2 y2 color lwd lty Draw a vertical line at x (omit to draw a specific AB line) Draw a horizontal at y omit to draw a specific AB line) For specific AB lines: the first x coordinate For specific AB lines: the first y coordinate For specific AB lines: the second x coordinate For specific AB lines: the second y coordinate (optional) The color of the AB line (default black) Which should the line be placed on? You can specify a vector of s (e.g. = c("1","3") ) to apply the line to multiple s at once. (Optional, default 1) The linewidth (Optional, default 1) The line type arphitgg(data) + agg_abline(x = 2001, color = RBA["Blue1"], = "1") + agg_abline(y = -0.5, color = RBA["Red1"], = "1") arphitgg(data) + agg_abline(x1 = 2000, y1 = -0.1, x2 = 2002, y2 = 0.5, color = RBA["Blue1"], = "1")

4 4 agg_arrow agg_aes Define an aesthetic for a graph, or a graph layer. If specified as part of a layer, fields left blank will be inherited from the parent. agg_aes(x, y, group = NULL, facet = NULL, order = NULL) x y group facet order The x variable The y variable If your data are in long form, which variable defines the groups If you data are in long form, which variable defines the facets (facets split data across s) Which variable to order the x-ticks by Tidy evaluation Aesthetics use tidy evaluation. This means any of can be expressions composed of variables in the data, rather than just variable names. For instance, you could do order = desc(some_variable), or y = my_variable^2. The vignette provides some examples of aesthetics using tidy evaluation. agg_arrow Add an arrow Add an arrow agg_arrow(tail.x, tail.y, head.x, head.y, color = "black",, lwd = 1)

5 agg_autolabel 5 tail.x tail.y head.x head.y color lwd The x coordinate of the arrow tail The y coordinate of the arrow tail The x coordinate of the arrow head The y coordinate of the arrow head The color of the arrow Which should the arrow be placed on? You can specify a vector of s (e.g. = c("1","3") ) to apply the arrow to multiple s at once. (Optional, default 1) The linewidth of the arrow arphitgg(data) + agg_arrow(tail.x = 2002, tail.y = 0, head.x = 2003, head.y = 1, color = RBA["Blue1"], = "1") agg_autolabel Add automatically placed label Add automatically placed label agg_autolabel(quiet = FALSE, arrow_bars = FALSE) quiet arrow_bars (logical, default FALSE) Do not output progress of autolabeller (logical, default FALSE) Add arrows between labels and bar series if there isn t line of sight between the label and the series. Line series always have arrows (if there isn t line of sight).

6 6 agg_bgshading data <- data.frame(x=1:10,y1=rnorm(10),y2=rnorm(10)) arphitgg(data,agg_aes(x=x)) + agg_line(agg_aes(y=y1)) + agg_line(agg_aes(y=y2)) + agg_autolabel() agg_bgshading Add background shading Add background shading agg_bgshading(x1 = NA, y1 = NA, x2 = NA, y2 = NA, color = RBA["Grey2"], ) x1 y1 x2 y2 color The bottom left x coordinate (omit to have the shading automatically snap to the edge of the ) The bottom left y coordinate (omit to have the shading automatically snap to the edge of the ) The top right x coordinate (omit to have the shading automatically snap to the edge of the ) The top right y coordinate (omit to have the shading automatically snap to the edge of the ) (optional) The color of the AB line (default grey) Which should the background shading be placed on? You can specify a vector of s (e.g. = c("1","3") ) to apply the shading to multiple s at once. arphitgg(data) + agg_bgshading(x1 = 2001, x2 = 2002, = "1") arphitgg(data) + agg_bgshading(y1 = 0.5, y2 = -0.5, = "1")

7 agg_col 7 agg_col Add a col layer to an arphit plot. Add a col layer to an arphit plot. agg_col(aes = NULL, data = NULL, color = NULL, barcol = NULL, = "1", stacked = TRUE) aes data color barcol stacked The aesthetic that defines the layer. Will inherit (or parts thereof) if omitted. The data to be used. Will inherit from parent if missing. A colour to be applied to all of the series, or (if your aesthetic has a group), a vector of colours that will be cycled through to consecutive group elements. (optional) Outline colours for each bar series (default = "1") Which of the graph to place this layer on. You can specify a vector of s (e.g. = c("1","3") ) to apply the layer to multiple s at once. (default = TRUE) Stack the bars, or group them? data <- data.frame(unemployment = rnorm(20), state = c(rep("a", 10), rep("b", 10)), date = seq.date(from = as.date(" "), length.out = 10, by = "quarter")) arphitgg(data) + agg_col(aes = agg_aes(x = date, y = unemployment, group = state), = "1")

8 8 agg_footnote agg_draw Draw a defined graph Draw a defined graph agg_draw(gg, filename = NULL) gg filename An arphitgg built graph. (optional) If specified, save image to filename instead of displaying in R. Supports png, pdf, emf, emf+, svg and xlsx extensions. agg_footnote Add a footnote (or many footnotes) Add a footnote (or many footnotes) agg_footnote(footnote) footnote A string, or vector of strings, to be added as footnotes. arphitgg(data) + agg_footnote("here is a footnote") arphitgg(data) + agg_footnote(c("here is a footnote", "And a second one"))

9 agg_label 9 agg_label Add a label Add a label agg_label(text, x, y,, color = "black", size = 20) text x y color The text to display on your plot The x coordinate of the center of your label The y coordinate of the center of your label Which should the label be placed on? You can specify a vector of s (e.g. = c("1","3") ) to apply the label to multiple s at once. The color of your text size Font size (default 20) arphitgg() + agg_label("here is a label", 2003, 0.2, "1", RBA["Red3"]) agg_legend Add a legend to the graph Add a legend to the graph agg_legend(ncol = NULL) ncol (optional) Specify the number of columns in the legend (if left blank, arphit will guess)

10 10 agg_line data <- data.frame(x = 1:10, y = 1:10) arphitgg(data) + agg_line(agg_aes(x = x, y = y)) + agg_legend() agg_line Add a line layer to an arphit plot. Add a line layer to an arphit plot. agg_line(aes = NULL, data = NULL, color = NULL, pch = NULL, lty = NULL, lwd = NULL, pointsize = 1, = "1") aes data color pch lty lwd The aesthetic that defines the layer. Will inherit (or parts thereof) if omitted. The data to be used. Will inherit from parent if missing. A colour to be applied to all of the series, or (if your aesthetic has a group), a vector of colours that will be cycled through to consecutive group elements. A point marker to be applied to all series, or or (if your aesthetic has a group), a vector of pch values that will be cycled through to consecutive group elements. Any value accepted by R for pch can be used. A line type to be applied to all series, or or (if your aesthetic has a group), a vector of lty values that will be cycled through to consecutive group elements. Any value accepted by R for lty can be used. A line width to be applied to all series, or or (if your aesthetic has a group), a vector of lwd values that will be cycled through to consecutive group elements. Any value accepted by R for lwd can be used. pointsize Scale the size of the points? (default 1) (default = "1") Which of the graph to place this layer on. You can specify a vector of s (e.g. = c("1","3") ) to apply the layer to multiple s at once.

11 agg_point 11 data <- data.frame(unemployment = rnorm(20), state = c(rep("a", 10), rep("b", 10)), date = seq.date(from = as.date(" "), length.out = 10, by = "quarter")) arphitgg(data) + agg_line(aes = agg_aes(x = date, y = unemployment, group = state), = "1") agg_point Add a scatter layer to an arphit plot. Add a scatter layer to an arphit plot. agg_point(aes = NULL, data = NULL, color = NULL, pointsize = 1, = "1") aes data color The aesthetic that defines the layer. Will inherit (or parts thereof) if omitted. The data to be used. Will inherit from parent if missing. A colour to be applied to all of the series, or (if your aesthetic has a group), a vector of colours that will be cycled through to consecutive group elements. pointsize Scale the size of the points? (default 1) (default = "1") Which of the graph to place this layer on. You can specify a vector of s (e.g. = c("1","3") ) to apply the layer to multiple s at once. data <- data.frame(x = rnorm(10), y = rnorm(10)) arphitgg(data) + agg_point(aes = agg_aes(x = x, y = y), = "1")

12 12 agg_qplot agg_qplot Quick plot - for quickly creates a single- graph. Supports bar and line (and combinations of). Quick plot - for quickly creates a single- graph. Supports bar and line (and combinations of). agg_qplot(data, series = NULL, x = NULL, bars = FALSE, filename = NULL, title = NULL, subtitle = NULL, footnotes = c(), sources = c(), yunits = NULL, col = list(), pch = list(), lty = list(), lwd = list(), xlim = NULL, ylim = NULL, legend = FALSE, legend.ncol = NA, bar.stacked = TRUE) data series x bars filename title subtitle footnotes sources yunits col pch Object containing the series you want to plot. Can be a data.frame, tibble, zoo, xts or ts. A vector of series names specifying which subset of series you want to plot. The x variable for your plot. Not required for ts, xts and zoo data because they use the dates in the time series. (optional) Vector of string names indicating which series should be bars, rather than lines. Alternatively, if you set bars = TRUE all series will plot as bars. (optional) If specified, save image to filename instead of displaying in R. Supports svg, pdf, emf, emf+ and png extensions. (optional) A string indicating the title for the graph. Passing NULL (or omitting the argument) will suppress printing of title. (optional) A string indicating the subtitle for the graph. Passing NULL (or omitting the argument) will suppress printing of subtitle. (optional) A vector strings, corresponding to the footnotes, in order. (optional) A vector of strings, one entry for each source. (optional) A string indicating the units to be used. If not supplied, a % sign will be used. (optional) A list of string -> misc pairs. The keys should be series names, and the values colours for each series (any colour accepted by R is fine.) You need not supply colours for all series. Default colours will be assigned (cycling through) to series without assigned colours. Alternatively, you can supply a single value to apply to all series. (optional) Markers for your series. Passed as with col. Defaults to none (NA). lty (optional) Line types for each series. Passed as with col. Defaults to solid (1). lwd (optional) Line width, relative to default, for each series. Passed as with col.

13 agg_shading 13 xlim ylim legend legend.ncol bar.stacked (optional) c(numeric, numeric) Gives the x limits (in years) for the graph. (optional) A list(min = numeric, max = numeric, nsteps int). If unsupplied, a suitable default is chosen. A logical indicating whether to add a legend to the graph (default FALSE). (optional) How many columns do you want the legend to have (if NA, which is the default, arphit will guess for you). (optional) Logical indicating whether the bar series should be stacked (TRUE, default) or side-by-side (FALSE). vignette("qplot-options", package = "arphit") for a detailed description of all the plotting options and how they affect the output. T <- 24 randomdata <- ts(data.frame(x1 = rnorm(t), x2 = rnorm(t), x3 = rnorm(t, sd = 10), x4 = rnorm(t, sd = 5)), start = c(2000,1), frequency = 4) agg_qplot(randomdata, title = "A Title", subtitle = "A subtitle", footnotes = c("a","b"), sources = c("a Source", "Another source"), yunits = "index") agg_shading Add shading between series Add shading between series agg_shading(from, to, = NULL, color = RBA["Grey2"]) from to color The series name to shade from (if you have no group aesthetic, it will be the name of the y variable); if you have groups, it will (usually) be the group identifier. This can get more complicated if you have duplicate group names. If so, arphit appends.y to the group names, so try that.) The name of the series to shade to (optional) Which are the relevant series in? (arphit will try to find them if you don t specify) (optional) The color to shade between the series (default grey)

14 14 agg_source data <- data.frame(date = seq.date(from = as.date(" "), length.out = 12, by = "month"), x1 = rnorm(12), x2 = rnorm(12)) arphitgg(data, agg_aes(x = date)) + agg_line(agg_aes(y = x1), color = RBA["Blue2"]) + agg_line(agg_aes(y = x2), color = RBA["Red4"]) + agg_shading(from = x1, to = x2) agg_source Add a source (or many sources) Add a source (or many sources) agg_source(source) source A string, or vector of strings, to be added as sources arphitgg(data) + agg_source("source 1") arphitgg(data) + agg_source(c("source 1", "Source 2"))

15 agg_subtitle 15 agg_subtitle Add a subtitle or subtitle Add a subtitle or subtitle agg_subtitle(text, = NULL) text A string for the subtitle. (optional) Specify a identifier to add a subtitle instead of an overall graph subtitle. You can specify a vector of s (e.g. = c("1","3") ) to apply the subtitle to multiple s at once. arphitgg(data) + agg_subtitle("graph Subtitle") arphitgg(data) + agg_subtitle("panel subtitle", = "1") agg_title Add a title or title Add a title or title agg_title(text, = NULL) text A string for the title. (optional) Specify a identifier to add a title instead of an overall graph title. You can specify a vector of s (e.g. = c("1","3") ) to apply the title to multiple s at once.

16 16 agg_units arphitgg(data) + agg_title("graph Title") arphitgg(data) + agg_title("panel title", = "1") agg_units Add units (for the y axis) Add units (for the y axis) agg_units(units, = NULL) units A string specifying the units. (optional) Specify a identifier to add to a specific. If blank, units will be applied to all s. You can specify a vector of s (e.g. = c("1","3") ) to apply the units to multiple s at once. arphitgg(data) + agg_units("index") arphitgg(data) + agg_units("ppt", = "1")

17 agg_xaxisfreq 17 agg_xaxisfreq Specify the frequency of the x ticks for time series graphs Specify the frequency of the x ticks for time series graphs agg_xaxisfreq(freq, = NULL) freq The frequency, either "decade", "year", "quarter", "month" (optional) Which to apply the frequency scale to. If left blank, will be applied to all s. You can specify a vector of s (e.g. = c("1","3") ) to apply the frequency to multiple s at once. agg_xaxislabel Add an axis label to the x axis Add an axis label to the x axis agg_xaxislabel(axislabel, = NULL) axislabel A string specifying the axis label (optional) Specify a identifier to add to a specific. If blank, axis label will be applied to all s. You can specify a vector of s (e.g. = c("1","3") ) to apply the axis to multiple s at once.

18 18 agg_xlim arphitgg(data) + agg_xaxislabel("year") agg_xlim Specify the x limits for a graph Specify the x limits for a graph agg_xlim(min, max, = NULL) min max The minimum for the x-axis (can be NA to have arphit guess, based on your data) The maximum (can also be NA, as above) (optional) Which to apply the scale to. If left blank, will be applied to all s. This is recommended. You can specify a vector of s (e.g. = c("1","3") ) to apply the limits to multiple s at once. arphitgg(data) + agg_xlim(min = -10, max = 10) arphitgg(data) + agg_xlim(min = -10, max = 10, = "1")

19 agg_xunits 19 agg_xunits Add units to the x axis (only works for scatter graphs) Add units to the x axis (only works for scatter graphs) agg_xunits(units, = NULL) units A string specifying the units. (optional) Specify a identifier to add to a specific. If blank, units will be applied to all s. You can specify a vector of s (e.g. = c("1","3") ) to apply the units to multiple s at once. arphitgg(data) + agg_xunits("index") agg_yaxislabel Add an axis label to the y axis Add an axis label to the y axis agg_yaxislabel(axislabel, = NULL) axislabel A string specifying the axis label (optional) Specify a identifier to add to a specific. If blank, axis label will be applied to all s. You can specify a vector of s (e.g. = c("1","3") ) to apply the axis label to multiple s at once.

20 20 agg_ylim arphitgg(data) + agg_yaxislabel("some y axis label") agg_ylim Specify the y scale for a graph Specify the y scale for a graph agg_ylim(min, max, nsteps, = NULL) min max nsteps The minimum for the y-axis The maximum The number of steps (includes the minimum and maximum) (optional) Which to apply the scale to. If left blank, will be applied to all s. You can specify a vector of s (e.g. = c("1","3") ) to apply the scale to multiple s at once. arphitgg(data, layout = "2b2") + agg_ylim(min = -10, max = 10, nsteps = 5) arphitgg(data, layout = "2b2") + agg_ylim(min = -10, max = 10, nsteps = 5, = "1")

21 arphitgg 21 arphitgg Create an new arphit graph Create an new arphit graph arphitgg(data = NULL, aes = NULL, layout = "1", portrait = FALSE, dropxlabel = FALSE, srt = 0, showallxlabels = NULL, joined = TRUE, plotsize = LANDSCAPESIZE, log_scale = "") data aes layout portrait dropxlabel srt (Optional) Data to be used for the plot. Can be left blank, but must then be supplied for each layer. (Optional) The aesthetic that defines your graph. Can be left blank, but must then be supplied for each layer. Layers that don t specify aesthetics will inherit missing parts of aesthetic from here. (default = "1") The layout of the graph. Valid options are "1", "2v", "2h", "2b2", "3v", "3h", "3b2", "4h", "4b2". (default = FALSE) Logical indicating whether the layout should be a landscape size (FALSE, default), or a taller portrait size (TRUE). (optional) Logical indicating whether the first xlabel of right hand s in 2v and 2b2 should be ignored (prevents overlapping of last xlabel on left with first on right). FALSE by default. (default 0) Orientation adjustment for xlabels. In degrees; 0 is horizontal. showallxlabels (optional) (Only for categorical graphs) Force all x labels to show? By default, this is TRUE. joined plotsize log_scale (default TRUE) Logical indicating whether you want to join between missing observations (TRUE()), or break the series (FALSE). (optional) A vector of two variables specifying the height and width of your graph, respectively. (Default 5.53, 7.5). Ignored if portrait is set to TRUE (optional) Set one or both of y and x axes as log scales? Use "y" for just y axis, "x" for just x and "xy" for both

22 22 RBA print.arphit.gg Draw a defined graph Draw a defined graph ## S3 method for class 'arphit.gg' print(x,...) x An arphitgg built graph.... Further arguments passed to or from other methods. RBA RBA colour palette A list of RBA-standard colours to use. Use them by using RBA["Red1"] in a colour declaration. For instance: RBA Format Details An object of class character of length 117. arphit.tsgraph(data, col = list("x2" = RBA["Red1"], "x4" = RBA["Green3"])) To see a list of all the available colours, type vignette("rbacolours")

23 Index Topic datasets RBA, 22 +.arphit.gg, 2 agg_abline, 3 agg_aes, 4 agg_arrow, 4 agg_autolabel, 5 agg_bgshading, 6 agg_col, 7 agg_draw, 8 agg_footnote, 8 agg_label, 9 agg_legend, 9 agg_line, 10 agg_point, 11 agg_qplot, 12 agg_shading, 13 agg_source, 14 agg_subtitle, 15 agg_title, 15 agg_units, 16 agg_xaxisfreq, 17 agg_xaxislabel, 17 agg_xlim, 18 agg_xunits, 19 agg_yaxislabel, 19 agg_ylim, 20 arphitgg, 21 print.arphit.gg, 22 RBA, 22 23

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

Graphics - Part III: Basic Graphics Continued

Graphics - Part III: Basic Graphics Continued Graphics - Part III: Basic Graphics Continued Statistics 135 Autumn 2005 Copyright c 2005 by Mark E. Irwin Highway MPG 20 25 30 35 40 45 50 y^i e i = y i y^i 2000 2500 3000 3500 4000 Car Weight Copyright

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

Package statsdk. September 30, 2017 Type Package Title A Wrapper for the API of Statistics Denmark Version 0.1.1 Author Mikkel Freltoft Krogsholm Package statsdk September 30, 2017 Maintainer Mikkel Freltoft Krogsholm Makes

More information

Package vip. June 15, 2018

Package vip. June 15, 2018 Type Package Title Variable Importance Plots Version 0.1.0 Package vip June 15, 2018 A general framework for constructing variable importance plots from various types machine learning models in R. Aside

More information

Package ggmosaic. February 9, 2017

Package ggmosaic. February 9, 2017 Title Mosaic Plots in the 'ggplot2' Framework Version 0.1.2 Package ggmosaic February 9, 2017 Mosaic plots in the 'ggplot2' framework. Mosaic plot functionality is provided in a single 'ggplot2' layer

More information

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7

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

More information

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

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

More information

Package desplot. R topics documented: April 3, 2018

Package desplot. R topics documented: April 3, 2018 Package desplot April 3, 2018 Title Plotting Field Plans for Agricultural Experiments Version 1.4 Date 2018-04-02 Type Package Description A function for plotting maps of agricultural field experiments

More information

Package shinyaframe. November 26, 2017

Package shinyaframe. November 26, 2017 Type Package Package shinyaframe November 26, 2017 Title 'WebVR' Data Visualizations with 'RStudio Shiny' and 'Mozilla A-Frame' Version 1.0.1 Description Make R data available in Web-based virtual reality

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 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 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 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 ruler. February 23, 2018

Package ruler. February 23, 2018 Title Tidy Data Validation Reports Version 0.1.2 Package ruler February 23, 2018 Tools for creating data validation pipelines and tidy reports. This package offers a framework for exploring and validating

More information

Package ggseas. June 12, 2018

Package ggseas. June 12, 2018 Package ggseas June 12, 2018 Title 'stats' for Seasonal Adjustment on the Fly with 'ggplot2' Version 0.5.4 Maintainer Peter Ellis Provides 'ggplot2' 'stats' that estimate

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 qicharts2. March 3, 2018

Package qicharts2. March 3, 2018 Title Quality Improvement Charts Version 0.4.0 Date 2018-03-03 Package qicharts2 March 3, 2018 Functions for making run charts, Shewhart control charts and Pareto charts for continuous quality improvement.

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 xroi. February 13, 2019

Package xroi. February 13, 2019 Package xroi February 13, 2019 Title Delineate Region of Interests (ROI's) and Extract Time-Series Data from Digital Repeat Photography Images Version 0.9.13 Date 2019-02-12 Author Bijan Seyednasrollah,

More information

Error-Bar Charts from Summary Data

Error-Bar Charts from Summary Data Chapter 156 Error-Bar Charts from Summary Data Introduction Error-Bar Charts graphically display tables of means (or medians) and variability. Following are examples of the types of charts produced by

More information

Package ConvergenceClubs

Package ConvergenceClubs Title Finding Convergence Clubs Package ConvergenceClubs June 25, 2018 Functions for clustering regions that form convergence clubs, according to the definition of Phillips and Sul (2009) .

More information

Package codebook. March 21, 2018

Package codebook. March 21, 2018 Package codebook March 21, 2018 Title Automatic Codebooks from Survey Metadata Encoded in Attributes Easily automate the following tasks to describe data frames: computing reliabilities (internal consistencies,

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

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

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd Elixir Ad-hoc Report Release 4.0.0 Elixir Technology Pte Ltd Elixir Ad-hoc Report: Release 4.0.0 Elixir Technology Pte Ltd Published 2015 Copyright 2015 Elixir Technology Pte Ltd All rights reserved. Java

More information

Graph Set Up. Dave Lorenz. July 27, Abstract

Graph Set Up. Dave Lorenz. July 27, Abstract Graph Set Up Dave Lorenz July 7, 7 Abstract These examples demonstrate how to set up a complete figure beginning with a simple scatter plot. The general procedures apply to any other high-level graphics

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 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 seqcat. March 25, 2019

Package seqcat. March 25, 2019 Package seqcat March 25, 2019 Title High Throughput Sequencing Cell Authentication Toolkit Version 1.4.1 The seqcat package uses variant calling data (in the form of VCF files) from high throughput sequencing

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 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 ggqc. R topics documented: January 30, Type Package Title Quality Control Charts for 'ggplot' Version Author Kenith Grey

Package ggqc. R topics documented: January 30, Type Package Title Quality Control Charts for 'ggplot' Version Author Kenith Grey Type Package Title Quality Control Charts for 'ggplot' Version 0.0.2 Author Kenith Grey Package ggqc January 30, 2018 Maintainer Kenith Grey Plot single and faceted type quality

More information

Package memery. February 13, 2018

Package memery. February 13, 2018 Version 0.4.2 Title Internet Memes for Data Analysts Package memery February 13, 2018 Generates internet memes that optionally include a superimposed inset plot and other atypical features, combining the

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

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd Elixir Ad-hoc Report Release 3.5.0 Elixir Technology Pte Ltd Elixir Ad-hoc Report: Release 3.5.0 Elixir Technology Pte Ltd Published 2014 Copyright 2014 Elixir Technology Pte Ltd All rights reserved. Java

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 datapasta. January 24, 2018

Package datapasta. January 24, 2018 Title R Tools for Data Copy-Pasta Version 3.0.0 Package datapasta January 24, 2018 RStudio addins and R functions that make copy-pasting vectors and tables to text painless. Depends R (>= 3.3.0) Suggests

More information

Package rollply. R topics documented: August 29, Title Moving-Window Add-on for 'plyr' Version 0.5.0

Package rollply. R topics documented: August 29, Title Moving-Window Add-on for 'plyr' Version 0.5.0 Title Moving-Window Add-on for 'plyr' Version 0.5.0 Package rollply August 29, 2016 Author ``Alexandre Genin [aut, cre]'' Maintainer Alexandre Genin Apply a function

More information

Package gridextra. September 9, 2017

Package gridextra. September 9, 2017 License GPL (>= 2) Package gridextra September 9, 2017 Title Miscellaneous Functions for ``Grid'' Graphics Type Package Provides a number of user-level functions to work with ``grid'' graphics, notably

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Package sfdct. August 29, 2017

Package sfdct. August 29, 2017 Package sfdct August 29, 2017 Title Constrained Triangulation for Simple Features Version 0.0.4 Build a constrained 'Delaunay' triangulation from simple features objects, applying constraints based on

More information

Graphics #1. R Graphics Fundamentals & Scatter Plots

Graphics #1. R Graphics Fundamentals & Scatter Plots Graphics #1. R Graphics Fundamentals & Scatter Plots In this lab, you will learn how to generate customized publication-quality graphs in R. Working with R graphics can be done as a stepwise process. Rather

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

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

Arkansas Curriculum Framework for Computer Applications II

Arkansas Curriculum Framework for Computer Applications II A Correlation of DDC Learning Microsoft Office 2010 Advanced Skills 2011 To the Arkansas Curriculum Framework for Table of Contents Unit 1: Spreadsheet Formatting and Changing the Appearance of a Worksheet

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Package clustree. July 10, 2018

Package clustree. July 10, 2018 Type Package Package clustree July 10, 2018 Title Visualise Clusterings at Different Resolutions Version 0.2.2 Date 2018-07-10 Maintainer Luke Zappia Deciding what resolution

More information

Package blandr. July 29, 2017

Package blandr. July 29, 2017 Title Bland-Altman Method Comparison Version 0.4.3 Package blandr July 29, 2017 Carries out Bland Altman analyses (also known as a Tukey mean-difference plot) as described by JM Bland and DG Altman in

More information

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data.

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data. SPREADSHEETS BASIC TERMINOLOGY A Spreadsheet is a grid of rows and columns containing numbers, text, and formulas. A workbook is the file Excel creates to store your data. A worksheet is an individual

More information

Publication-quality figures with Inkscape

Publication-quality figures with Inkscape Publication-quality figures with Inkscape In Lab 3 we briefly learnt about the different formats available to save the plots we create in R and how to modify them in PowerPoint and Adobe Illustrator. Today

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

Plotting Complex Figures Using R. Simon Andrews v

Plotting Complex Figures Using R. Simon Andrews v Plotting Complex Figures Using R Simon Andrews simon.andrews@babraham.ac.uk v2017-11 The R Painters Model Plot area Base plot Overlays Core Graph Types Local options to change a specific plot Global options

More information

Section 33: Advanced Charts

Section 33: Advanced Charts Section 33 Advanced Charts By the end of this Section you should be able to: Use Chart Options Add Moving Averages to Charts Change a 3D Chart View Use Data Labels and Markers Create Stacked Bar Charts

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

R Graphics. Paul Murrell. The University of Auckland. R Graphics p.1/47

R Graphics. Paul Murrell. The University of Auckland. R Graphics p.1/47 R Graphics p.1/47 R Graphics Paul Murrell paul@stat.auckland.ac.nz The University of Auckland R Graphics p.2/47 Overview Standard (base) R graphics grid graphics Graphics Regions and Coordinate Systems

More information

Package scatterd3. March 10, 2018

Package scatterd3. March 10, 2018 Type Package Title D3 JavaScript Scatterplot from R Version 0.8.2 Date 2018-03-09 Package scatterd3 March 10, 2018 Maintainer Julien Barnier Description Creates 'D3' 'JavaScript'

More information

Package guardianapi. February 3, 2019

Package guardianapi. February 3, 2019 Package guardianapi February 3, 2019 Title Access 'The Guardian' Newspaper Open Data API Version 0.1.0 Access to the 'Guardian' open API , containing all articles

More information

PyPlot. The plotting library must be imported, and we will assume in these examples an import statement similar to those for numpy and math as

PyPlot. The plotting library must be imported, and we will assume in these examples an import statement similar to those for numpy and math as Geog 271 Geographic Data Analysis Fall 2017 PyPlot Graphicscanbeproducedin Pythonviaavarietyofpackages. We willuseapythonplotting package that is part of MatPlotLib, for which documentation can be found

More information

Excel 2016 Charts and Graphs

Excel 2016 Charts and Graphs Excel 2016 Charts and Graphs training@health.ufl.edu Excel 2016: Charts and Graphs 2.0 hours This workshop assumes prior experience with Excel, Basics I recommended. Topics include data groupings; creating

More information

Creating a Basic Chart in Excel 2007

Creating a Basic Chart in Excel 2007 Creating a Basic Chart in Excel 2007 A chart is a pictorial representation of the data you enter in a worksheet. Often, a chart can be a more descriptive way of representing your data. As a result, those

More information

Package explor. R topics documented: October 10, Type Package Title Interactive Interfaces for Results Exploration Version 0.3.

Package explor. R topics documented: October 10, Type Package Title Interactive Interfaces for Results Exploration Version 0.3. Type Package Title Interactive Interfaces for Results Exploration Version 0.3.3 Date 2017-10-10 Package explor October 10, 2017 Maintainer Shiny interfaces and graphical functions for multivariate analysis

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

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

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables Select Cases GRAPHS The Select Cases command excludes from further analysis all those cases that do not meet specified selection criteria. Select Cases For a subset of the datafile, use Select Cases. In

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

Package readxl. April 18, 2017 Title Read Excel Files Version 1.0.0 Package readxl April 18, 2017 Import excel files into R. Supports '.xls' via the embedded 'libxls' C library and '.xlsx'

More information

Package jrt. January 4, 2019

Package jrt. January 4, 2019 Package jrt January 4, 2019 Title Item Response Theory Modeling and Scoring for Judgment Data Version 1.0.0 Description Psychometric analysis and scoring of judgment data using polytomous Item- Response

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

9 POINTS TO A GOOD LINE GRAPH

9 POINTS TO A GOOD LINE GRAPH NAME: PD: DATE: 9 POINTS TO A GOOD LINE GRAPH - 2013 1. Independent Variable on the HORIZONTAL (X) AXIS RANGE DIVIDED BY SPACES and round up to nearest usable number to spread out across the paper. LABELED

More information

Package states. May 4, 2018

Package states. May 4, 2018 Type Package Title Create Panels of Independent States Version 0.2.1 Package states May 4, 2018 Maintainer Andreas Beger Create panel data consisting of independent states from 1816

More information

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7)

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) Graph as a XY Scatter Chart, add titles for chart and axes, remove gridlines. A. Select

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

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

. Sheet - Sheet. Unhide Split Freeze. Sheet (book) - Sheet-book - Sheet{book} - Sheet[book] - Arrange- Freeze- Split - Unfreeze - .

. Sheet - Sheet. Unhide Split Freeze. Sheet (book) - Sheet-book - Sheet{book} - Sheet[book] - Arrange- Freeze- Split - Unfreeze - . 101 Excel 2007 (Workbook) : :. Sheet Workbook. Sheet Delete. Sheet. Unhide Split Freeze.1.2.3.4.5.6 Sheet.7 Sheet-book - Sheet (book) - Sheet{book} - Sheet[book] - Split - Unfreeze -.8 Arrange - Unhide

More information

Package gifti. February 1, 2018

Package gifti. February 1, 2018 Type Package Package gifti February 1, 2018 Title Reads in 'Neuroimaging' 'GIFTI' Files with Geometry Information Version 0.7.5 Author John Muschelli Maintainer John Muschelli Functions

More information

Package ggpmisc. May 4, 2018

Package ggpmisc. May 4, 2018 Type Package Title Miscellaneous Extensions to 'ggplot2' Version 0.2.17 Date 2018-05-03 Package ggpmisc May 4, 2018 Maintainer Pedro J. Aphalo Extensions to 'ggplot2' respecting

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 statar. July 6, 2017

Package statar. July 6, 2017 Package statar July 6, 2017 Title Tools Inspired by 'Stata' to Manipulate Tabular Data Version 0.6.5 A set of tools inspired by 'Stata' to eplore data.frames ('summarize', 'tabulate', 'tile', 'pctile',

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 tiler. June 9, 2018

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

More information

Introduction to Plot.ly: Customizing a Stacked Bar Chart

Introduction to Plot.ly: Customizing a Stacked Bar Chart Introduction to Plot.ly: Customizing a Stacked Bar Chart Plot.ly is a free web data visualization tool that allows you to download and embed your charts on other websites. This tutorial will show you the

More information

Package cancensus. February 4, 2018

Package cancensus. February 4, 2018 Type Package Package cancensus February 4, 2018 Title Canadian Census Data and Geography from the 'CensusMapper' API Version 0.1.7 Integrated, convenient, and uniform access to Canadian Census data and

More information

User Manual MS Energy Services

User Manual MS Energy Services User Manual MS Energy Services Table of content Access 4 Log In 4 Home Page 5 Add pre-visualisations 6 Pre-visualisation with variables 7 Multiple pre-visualisations 8 Pre-visualisation window 8 Design

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 svglite. September 11, 2017

Package svglite. September 11, 2017 Version 1.2.1 Title An 'SVG' Graphics Device Package svglite September 11, 2017 A graphics device for R that produces 'Scalable Vector Graphics'. 'svglite' is a fork of the older 'RSvgDevice' package.

More information

Package carbonate. R topics documented: October 14, 2018

Package carbonate. R topics documented: October 14, 2018 Package ate October 14, 2018 Title Interact with '.js' Version 0.1.0 Create beautiful images of source code using '.js'. Depends R (>= 3.2.0) License MIT + file LICENSE Encoding

More information

Package dotwhisker. R topics documented: June 28, Type Package

Package dotwhisker. R topics documented: June 28, Type Package Type Package Package dotwhisker June 28, 2017 Title Dot-and-Whisker Plots of Regression Results Version 0.3.0 Date 2017-06-28 Maintainer Yue Hu Quick and easy dot-and-whisker plots

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