Package flextable. September 5, 2017

Size: px
Start display at page:

Download "Package flextable. September 5, 2017"

Transcription

1 Type Package Title Functions for Tabular Reporting Version Package fletable September 5, 2017 Create pretty tables for 'Microsoft Word', 'Microsoft PowerPoint' and 'HTML' documents. Functions are provided to let users create tables, modify and format their content. It etends package 'officer' that does not contain any feature for customized tabular reporting. Function tabwid() produces an 'htmlwidget' ready to be used in 'Shiny' or 'R Markdown (*.Rmd)' documents. License GPL-3 LazyData TRUE Depends officer Imports stats,utils,grdevices,magrittr, lazyeval,purrr,tibble,r6,stringr, htmltools,htmlwidgets, gdtools (>= 0.1.6) RoygenNote Suggests rmarkdown, knitr, ml2, dplyr, testthat URL BugReports VignetteBuilder knitr NeedsCompilation no Author David Gohel [aut, cre] Maintainer David Gohel Repository CRAN Date/Publication :56:54 UTC R topics documented: add_header align

2 2 add_header as_image autofit bg body_add_fletable bold border color dim.fletable dim_pretty display empty_blanks fletable fontsize height italic merge_at merge_h merge_none merge_v minibar padding ph_with_fletable rotate set_formatter set_header_df set_header_labels style tabwid tabwid-shiny theme_booktabs theme_bo theme_tron theme_tron_legacy theme_vanilla theme_zebra void width Inde 27 add_header Add a row of labels in headers Add a single row of labels in the fletable s header. It can be inserted at the top or the bottom of header.

3 align 3 add_header(, top = TRUE,...) top Details a fletable object should the row be inserted at the top or the bottom.... a named list (names are data colnames) of strings specifying corresponding labels to add. An horizontal and a vertical merge are performed automatically. Use merge_none to drop theses merging instructions. Eamples ft <- fletable( head( iris ), col_keys = c("species", "Sepal.Length", "Petal.Length", "Sepal.Width", "Petal.Width") ) ft <- add_header( = ft, Sepal.Length = "length", Sepal.Width = "width", Petal.Length = "length", Petal.Width = "width", Species = "Species", top = FALSE ) ft <- add_header(ft, Sepal.Length = "Inches", Sepal.Width = "Inches", Petal.Length = "Inches", Petal.Width = "Inches", Species = "Species", top = TRUE ) ft <- merge_h(ft, = "header") ft align Set tet alignment change tet alignment of selected rows and columns of a fletable. align(, i = NULL, j = NULL, align = "left", = "body") i j align a fletable object rows selection columns selection tet alignment - a single character value, epected value is one of left, right, center, justify. name of the table (one of all, body, header )

4 4 as_image Eamples ft <- fletable(mtcars) ft <- align(ft, align = "center") as_image image wrapper The function has to be used with function display(). It lets add images within fletable. as_image(, src, width = 1, height = 0.2) src width, height image will be repeated while iterating this variable. The variable should be one of the original data frame. Note its values are not used, only its size. image filename size of the png file in inches See Also display Eamples library(magrittr) img.file <- file.path( Sys.getenv("R_HOME"), "doc", "html", "logo.jpg" ) myft <- fletable(head( mtcars, n = 10)) myft <- myft %>% display( i = ~ qsec > 18, col_key = "qsec", pattern = "{{r_logo}}", formatters = list( r_logo ~ as_image(qsec, src = img.file, width =.20, height =.15)), fprops = list(qsec = fp_tet(color = "orange")) ) myft

5 autofit 5 autofit Adjusts cell widths and heights compute and apply optimized widths and heights. autofit(, add_w = 0.1, add_h = 0.1) add_w add_h fletable object etra width to add in inches etra height to add in inches Eamples ft <- fletable(mtcars) ft <- autofit(ft) ft bg Set background color change background color of selected rows and columns of a fletable. bg(, i = NULL, j = NULL, bg, = "body") i j bg a fletable object rows selection columns selection color to use as background color name of the table (one of all, body, header ) Eamples ft <- fletable(mtcars) ft <- bg(ft, bg = "#DDDDDD", = "header")

6 6 bold body_add_fletable wml table code produces the wml of a fletable body_add_fletable(, value, align = "center", pos = "after") value align pos a doc object fletable object left (default), center or right. where to add the fletable relative to the cursor, one of "after", "before", "on" (end of line). Eamples library(officer) ft <- fletable(head(mtcars)) ft <- theme_zebra(ft) ft <- autofit(ft) doc <- read_doc() doc <- body_add_fletable(doc, value = ft) print(doc, target = "test.doc") bold Set bold font change font weight of selected rows and columns of a fletable. bold(, i = NULL, j = NULL, bold = TRUE, = "body") i j bold a fletable object rows selection columns selection boolean value name of the table (one of all, body, header )

7 border 7 Eamples ft <- fletable(mtcars) ft <- bold(ft, bold = TRUE, = "header") border Set cell borders change borders of selected rows and columns of a fletable. border(, i = NULL, j = NULL, border = NULL, border.top = NULL, border.bottom = NULL, border.left = NULL, border.right = NULL, = "body") i j border border.top border.bottom border.left border.right a fletable object rows selection columns selection border (shortcut for top, bottom, left and right) border top border bottom border left border right name of the table (one of all, body, header ) Eamples ft <- fletable(mtcars) ft <- border(ft, border.top = fp_border(color = "orange") )

8 8 dim.fletable color Set font color change font color of selected rows and columns of a fletable. color(, i = NULL, j = NULL, color, = "body") i j color a fletable object rows selection columns selection color to use as font color name of the table (one of all, body, header ) Eamples ft <- fletable(mtcars) ft <- color(ft, color = "orange", = "header") dim.fletable Get fletable dimensions returns widths and heights for each table columns and rows. ## S3 method for class 'fletable' dim() fletable object

9 dim_pretty 9 dim_pretty Calculate pretty dimensions return minimum estimated widths and heights for each table columns and rows. dim_pretty() fletable object Eamples ft <- fletable(mtcars) dim_pretty(ft) display Define fletable displayed values Modify fletable displayed values by specifying a string epression. Function is handling comple formatting as well as image insertion. display(, i = NULL, col_key, pattern, formatters = list(), fprops = list(), = "body") i col_key pattern formatters fprops a fletable object rows selection column to modify, a single character string to format a list of formula, left side for the name, right side for the content. a named list of fp_tet name of the table (one of all, body, header )

10 10 empty_blanks Eamples # Formatting data values eample library(magrittr) ft <- fletable(head( mtcars, n = 10)) ft <- display(ft, col_key = "carb", i = ~ drat > 3.5, pattern = "# {{carb}}", formatters = list(carb ~ sprintf("%.1f", carb)), fprops = list(carb = fp_tet(color="orange") ) ) ft <- autofit(ft) empty_blanks make blank columns as transparent blank columns are set as transparent. This is a shortcut function that will delete top and bottom borders, change background color to transparent and display empty content. empty_blanks() a fletable object Eamples library(magrittr) typology <- data.frame( col_keys = c( "Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "Species" ), what = c("sepal", "Sepal", "Petal", "Petal", " "), measure = c("length", "Width", "Length", "Width", "Species"), stringsasfactors = FALSE ) typology head(iris) %>% fletable( col_keys = c("species", "break1", "Sepal.Length", "Sepal.Width", "break2", "Petal.Length", "Petal.Width") ) %>% set_header_df(mapping = typology, key = "col_keys" ) %>% merge_h( = "header") %>% theme_vanilla() %>% empty_blanks() %>% width(j = c(2, 5), width =.1 )

11 fletable 11 fletable fletable creation Create a fletable object with function fletable. fletable are designed to make tabular reporting easier for R users. Functions are available to let you format tet, paragraphs and cells; table cells can be merge vertically or horizontally, row headers can easilly be defined, rows heights and columns widths can be manually set or automatically computed. fletable(data, col_keys = names(data), cwidth = 0.75, cheight = 0.25) ## S3 method for class 'fletable' print(, preview = "html",...) regulartable(data, col_keys = names(data), cwidth = 0.75, cheight = 0.25) data col_keys dataset columns names/keys to display. If some column names are not in the dataset, they will be added as blank columns by default. cwidth, cheight initial width and height to use for cell sizes. preview fletable object... unused argument preview type, one of c("html", "ppt", "doc"). Details A fletable is made of 2 s: header and body. Most functions have an argument named that will be used to specify what of of the table should be modified. Eamples ft <- fletable(mtcars) ft

12 12 height fontsize Set font size change font size of selected rows and columns of a fletable. fontsize(, i = NULL, j = NULL, size = 11, = "body") i j size a fletable object rows selection columns selection integer value (points) name of the table (one of all, body, header ) Eamples ft <- fletable(mtcars) ft <- fontsize(ft, size = 14, = "header") height Set fletable rows height control rows height height(, i = NULL, height, = "body") i height fletable object rows selection height in inches name of the table

13 italic 13 Eamples ft <- fletable(iris) ft <- height(ft, height =.3) italic Set italic font change font decoration of selected rows and columns of a fletable. italic(, i = NULL, j = NULL, italic = TRUE, = "body") i j italic a fletable object rows selection columns selection boolean value name of the table (one of all, body, header ) Eamples ft <- fletable(mtcars) ft <- italic(ft, italic = TRUE, = "header") merge_at Merge fletable cells Merge fletable cells merge_at(, i = NULL, j = NULL, = "body") fletable object i, j columns and rows to merge name of the table where merge has to be done.

14 14 merge_none Eamples library(officer) library(magrittr) ft_merge <- head( mtcars ) %>% fletable( cwidth =.5 ) %>% merge_at( i = 1:2, j = 1:3) ft_merge merge_h Merge fletable cells horizontally Merge fletable cells horizontally when consecutive cells have identical values. merge_h(, i = NULL, = "body") i fletable object rows where cells have to be merged. name of the table where merge has to be done. Eamples dummy_df <- data.frame( col1 = letters, col2 = letters, stringsasfactors = FALSE ) ft_merge <- fletable(dummy_df) ft_merge <- merge_h( = ft_merge) ft_merge merge_none Delete fletable merging informations Delete all merging informations from a fletable. merge_none(, = "all")

15 merge_v 15 fletable object name of the table where merge has to be done. Eamples typology <- data.frame( col_keys = c( "Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "Species" ), what = c("sepal", "Sepal", "Petal", "Petal", "Species"), measure = c("length", "Width", "Length", "Width", "Species"), stringsasfactors = FALSE ) ft <- fletable( head( iris ) ) ft <- set_header_df(ft, mapping = typology, key = "col_keys" ) ft <- merge_v(ft, j = c("species")) ft <- theme_tron_legacy( merge_none( ft ) ) ft merge_v Merge fletable cells vertically Merge fletable cells vertically when consecutive cells have identical values. merge_v(, j = NULL, = "body") j fletable object columns names/keys where cells have to be merged. name of the table where merge has to be done. Eamples ft_merge <- fletable(mtcars) ft_merge <- merge_v(ft_merge, j = c("gear", "carb")) ft_merge

16 16 padding minibar draw a single bar This function is used to insert bars into fletable with function display minibar(value, ma, barcol = "#CCCCCC", bg = "transparent", width = 1, height = 0.2) value ma barcol bg width, height bar height ma bar height bar color background color size of the resulting png file in inches padding Set paragraph paddings change paddings of selected rows and columns of a fletable. padding(, i = NULL, j = NULL, padding = NULL, padding.top = NULL, padding.bottom = NULL, padding.left = NULL, padding.right = NULL, = "body") a fletable object i rows selection j columns selection padding padding (shortcut for top, bottom, left and right) padding.top padding top padding.bottom padding bottom padding.left padding left padding.right padding right name of the table (one of all, body, header )

17 ph_with_fletable 17 Eamples ft <- fletable(mtcars) ft <- padding(ft, padding.top = 4) ph_with_fletable add fletable into a PowerPoint slide add a fletable as a new shape in the current slide. ph_with_fletable(, value, type = "body", inde = 1) ph_with_fletable_at(, value, left, top) value type inde left, top a ppt device fletable object placeholder type placeholder inde (integer). This is to be used when a placeholder type is not unique in the current slide, e.g. two placeholders with type body. location of fletable on the slide Eamples library(officer) ft <- fletable(head(mtcars)) doc <- read_ppt() doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme") doc <- ph_with_fletable(doc, value = ft, type = "body") doc <- ph_with_fletable_at(doc, value = ft, left = 4, top = 5) print(doc, target = "test.ppt" )

18 18 set_formatter rotate rotate cell tet apply a rotation to cell tet rotate(, i = NULL, j = NULL, rotation, align = "center", = "body") i j rotation align a fletable object rows selection columns selection one of "lrtb", "tbrl", "btlr" one of "center" or "top" or "bottom" name of the table (one of all, body, header ) Eamples ft <- fletable(mtcars) ft <- rotate(ft, rotation = "lrtb", align = "top", = "header") set_formatter set column formatter functions Define formatter functions associated to each column key. Functions have a single argument (the vector) and are returning the formatted values as a character vector. set_formatter(,..., = "body") a fletable object... Name-value pairs of functions, names should be eisting col_key values name of the table (one of body or header )

19 set_header_df 19 Eamples ft <- regulartable( head( iris ) ) ft <- set_formatter( = ft, Sepal.Length = function() sprintf("%.02f", ), Sepal.Width = function() sprintf("%.04f", ) ) ft <- theme_vanilla( ft ) ft set_header_df Set fletable s header rows Use a data.frame to specify fletable s header rows. The data.frame must contain a column whose values match fletable col_keys argument, this column will be used as join key. The other columns will be displayed as header rows. The leftmost column is used as the top header row and the rightmost column is used as the bottom header row. set_header_df(, mapping = NULL, key = "col_keys") mapping key a fletable object a data.frame specyfing for each colname content of the column. column to use as key when joigning data_mapping. Eamples typology <- data.frame( col_keys = c( "Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "Species" ), what = c("sepal", "Sepal", "Petal", "Petal", "Species"), measure = c("length", "Width", "Length", "Width", "Species"), stringsasfactors = FALSE ) ft <- fletable( head( iris )) ft <- set_header_df(ft, mapping = typology, key = "col_keys" ) ft <- merge_h(ft, = "header") ft <- merge_v(ft, j = "Species", = "header") ft <- theme_vanilla(ft) ft

20 20 style set_header_labels Set fletable s headers labels This function set labels for specified columns in a single row header of a fletable. set_header_labels(,...) a fletable object... a named list (names are data colnames), each element is a single character value specifying label to use. Eamples ft_1 <- fletable( head( iris )) ft_1 <- set_header_labels(ft_1, Sepal.Length = "Sepal length", Sepal.Width = "Sepal width", Petal.Length = "Petal length", Petal.Width = "Petal width" ) ft_1 style Set fletable style Modify fletable tet, paragraphs and cells formatting properties. style(, i = NULL, j = NULL, pr_t = NULL, pr_p = NULL, pr_c = NULL, = "body") i j pr_t pr_p pr_c a fletable object rows selection columns selection object(s) of class fp_tet object(s) of class fp_par object(s) of class fp_cell name of the table (one of all, body, header )

21 tabwid 21 Eamples def_cell <- fp_cell(border = fp_border(color="#00ffff")) def_par <- fp_par(tet.align = "center") ft <- fletable(mtcars) ft <- style( ft, pr_c = def_cell, pr_p = def_par, = "all") ft <- style(ft, ~ drat > 3.5, ~ vs + am + gear + carb, pr_t = fp_tet(color="red", italic = TRUE) ) ft tabwid htmlwidget for fletable htmlwidget for fletable tabwid(, width = NULL, height = NULL) fletable object width widget width. Unused argument, columns widths are managed by function width. height widget height Unused argument, rows heights are managed by function height. tabwid-shiny Shiny bindings for tabwid Output and render functions for using tabwid within Shiny applications and interactive Rmd documents. tabwidoutput(outputid, width = "100%", height = "400p") rendertabwid(epr, env = parent.frame(), quoted = FALSE)

22 22 theme_bo outputid width, height epr env quoted output variable to read from Must be a valid CSS unit (like '100%', '400p', 'auto') or a number, which will be coerced to a string and have 'p' appended. An epression that generates a tabwid The environment in which to evaluate epr. Is epr a quoted epression (with quote())? This is useful if you want to save an epression in a variable. theme_booktabs Apply booktabs theme Apply theme tron to a fletable theme_booktabs() a fletable object Eamples ft <- fletable(iris) ft <- theme_booktabs(ft) theme_bo Apply bo theme Apply theme bo to a fletable theme_bo() a fletable object Eamples ft <- fletable(iris) ft <- theme_bo(ft)

23 theme_tron 23 theme_tron Apply tron theme Apply theme tron to a fletable theme_tron() a fletable object Eamples ft <- fletable(iris) ft <- theme_tron(ft) theme_tron_legacy Apply tron legacy theme Apply theme tron legacy to a fletable theme_tron_legacy() a fletable object Eamples ft <- fletable(iris) ft <- theme_tron_legacy(ft)

24 24 theme_zebra theme_vanilla Apply vanilla theme Apply theme vanilla to a fletable theme_vanilla() a fletable object Eamples ft <- fletable(iris) ft <- theme_vanilla(ft) theme_zebra Apply zebra theme Apply theme zebra to a fletable theme_zebra(, odd_header = "#CFCFCF", odd_body = "#EFEFEF", even_header = "transparent", even_body = "transparent") a fletable object odd_header, odd_body, even_header, even_body odd/even colors for table header and body Eamples ft <- fletable(iris) ft <- theme_zebra(ft)

25 void 25 void Delete fletable content Set content display as a blank " ". void(, j = NULL, = "body") j fletable object columns selection name of the table Eamples ft <- fletable(mtcars) ft <- void(ft, ~ vs + am + gear + carb ) width Set fletable columns width control columns width width(, j = NULL, width) j width fletable object columns selection width in inches Details Heights are not used when fletable is been rendered into HTML. See Also fletable

26 26 width Eamples ft <- fletable(iris) ft <- width(ft, width = 1)

27 Inde add_header, 2 align, 3 as_image, 4 autofit, 5 bg, 5 body_add_fletable, 6 bold, 6 border, 7 color, 8 dim.fletable, 8 dim_pretty, 9 display, 4, 9 empty_blanks, 10 fletable, 11, 25 fontsize, 12 fp_tet, 9 set_formatter, 18 set_header_df, 19 set_header_labels, 20 style, 20 tabwid, 21 tabwid-shiny, 21 tabwidoutput (tabwid-shiny), 21 theme_booktabs, 22 theme_bo, 22 theme_tron, 23 theme_tron_legacy, 23 theme_vanilla, 24 theme_zebra, 24 void, 25 width, 25 height, 12 italic, 13 merge_at, 13 merge_h, 14 merge_none, 3, 14 merge_v, 15 minibar, 16 padding, 16 ph_with_fletable, 17 ph_with_fletable_at (ph_with_fletable), 17 print.fletable (fletable), 11 regulartable (fletable), 11 rendertabwid (tabwid-shiny), 21 rotate, 18 27

Package flextable. December 8, 2017

Package flextable. December 8, 2017 Type Package Title Functions for Tabular Reporting Version 0.4.0 Package fletable December 8, 2017 Create pretty tables for 'Microsoft Word', 'Microsoft PowerPoint' and 'HTML' documents. Functions are

More information

Package condformat. October 19, 2017

Package condformat. October 19, 2017 Type Package Title Conditional Formatting in Data Frames Version 0.7.0 Date 2017-10-19 URL http://github.com/zeehio/condformat Package condformat October 19, 2017 BugReports http://github.com/zeehio/condformat/issues

More information

Package officer. January 8, 2018

Package officer. January 8, 2018 Type Package Package officer January 8, 2018 Title Manipulation of Microsoft Word and PowerPoint Documents Version 0.2.1 Access and manipulate 'Microsoft Word' and 'Microsoft PowerPoint' documents from

More information

Package mschart. April 20, Type Package

Package mschart. April 20, Type Package Type Package Package mschart April 20, 2018 Title Chart Generation for 'Microsoft Word' and 'Microsoft PowerPoint' Documents Version 0.2.3 Create native charts for 'Microsoft PowerPoint' and 'Microsoft

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 canvasxpress

Package canvasxpress Version 1.18.2 Package canvasxpress Title Visualization Package for CanvasXpress in R January 19, 2018 Enables creation of visualizations using the CanvasXpress framework in R. CanvasXpress is a standalone

More information

Package jstree. October 24, 2017

Package jstree. October 24, 2017 Package jstree October 24, 2017 Title Create Interactive Trees with the 'jquery' 'jstree' Plugin Version 1.0.1 Date 2017-10-23 Maintainer Jonathan Sidi Create and customize interactive

More information

Package slickr. March 6, 2018

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

More information

Package rvg. February 13, 2018

Package rvg. February 13, 2018 Type Package Package rvg February 13, 2018 Title R Graphics Devices for Vector Graphics Output Version 0.1.8 Vector Graphics devices for 'SVG', 'DrawingML' for Microsoft Word, PowerPoint and Excel. Functions

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

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

More information

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

Package collapsibletree Type Package Package collapsibletree September 23, 2017 Title Interactive Collapsible Tree Diagrams using 'D3.js' Version 0.1.6 Maintainer Adeel Khan Description Interactive Reingold-Tilford

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 vdiffr. April 27, 2018

Package vdiffr. April 27, 2018 Package vdiffr April 27, 2018 Title Visual Regression Testing and Graphical Diffing Version 0.2.3 An extension to the 'testthat' package that makes it easy to add graphical unit tests. It provides a Shiny

More information

Package labelvector. July 28, 2018

Package labelvector. July 28, 2018 Title Label Attributes for Atomic Vectors Version 0.1.0 Package labelvector July 28, 2018 Labels are a common construct in statistical software providing a human readable description of a variable. While

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 glue. March 12, 2019

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

More information

Package rgho. R topics documented: January 18, 2017

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

More information

Package htmlwidgets. July 10, 2017

Package htmlwidgets. July 10, 2017 Package htmlwidgets July 10, 2017 Type Package Title HTML Widgets for R Version 0.9 Date 2017-07-10 A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown'

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 processanimater

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

More information

Package catenary. May 4, 2018

Package catenary. May 4, 2018 Type Package Title Fits a Catenary to Given Points Version 1.1.2 Date 2018-05-04 Package catenary May 4, 2018 Gives methods to create a catenary object and then plot it and get properties of it. Can construct

More information

Package docxtools. July 6, 2018

Package docxtools. July 6, 2018 Title Tools for R Markdown to Docx Documents Version 0.2.0 Language en-us Package docxtools July 6, 2018 A set of helper functions for using R Markdown to create documents in docx format, especially documents

More information

Package 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 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 htmltidy. September 29, 2017

Package htmltidy. September 29, 2017 Package htmltidy September 29, 2017 Title Tidy Up and Test XPath Queries on HTML and XML Content Version 0.4.0 Encoding UTF-8 Maintainer Bob Rudis HTML documents can be beautiful and pristine.

More information

Package clipr. June 23, 2018

Package clipr. June 23, 2018 Type Package Title Read and Write from the System Clipboard Version 0.4.1 Package clipr June 23, 2018 Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards. Imports utils

More information

Package 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 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 shiny.semantic

Package shiny.semantic Type Package Title Semantic UI Support for Shiny Version 0.1.1 Package shiny.semantic May 29, 2017 Creating a great user interface for your Shiny apps can be a hassle, especially if you want to work purely

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 barcoder. October 26, 2018

Package barcoder. October 26, 2018 Package barcoder October 26, 2018 Title Labelling, Tracking, and Collecting Data from Biological Samples Version 0.1.0 Maintainer Robert Colautti Tools to generate unique identifiers

More information

Package sigmanet. April 23, 2018

Package sigmanet. April 23, 2018 Title Render Graphs Using 'Sigma.js' Version 1.1.0 Maintainer Ian Kloo URL https://github.com/iankloo/manet Package manet April 23, 2018 BugReports https://github.com/iankloo/manet/issues

More information

Package htmlwidgets. February 25, 2016

Package htmlwidgets. February 25, 2016 Package htmlwidgets February 25, 2016 Type Package Title HTML Widgets for R Version 0.6 Date 2016-02-25 A framework for creating HTML widgets that render in various contexts including the R console, 'R

More information

Package TnT. November 22, 2017

Package TnT. November 22, 2017 Package TnT November 22, 2017 Title Interactive Visualization for Genomic Features Version 1.0.1 A R interface to the TnT javascript library (https://github.com/ tntvis) to provide interactive and flexible

More information

Package ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

Package lumberjack. R topics documented: July 20, 2018

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

More information

Package 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 geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3.

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3. Type Package Title GeoJSON to Simple Feature Converter Version 1.3.0 Date 2019-01-11 Package geojsonsf January 11, 2019 Converts Between GeoJSON and simple feature objects. License GPL-3 Encoding UTF-8

More information

Package elasticsearchr

Package elasticsearchr Type Package Version 0.2.2 Package elasticsearchr March 29, 2018 Title A Lightweight Interface for Interacting with Elasticsearch from R Date 2018-03-29 Author Alex Ioannides Maintainer Alex Ioannides

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

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

More information

Package bannercommenter

Package bannercommenter Type Package Package bannercommenter December 5, 2016 Title Make Banner Comments with a Consistent Format Version 0.1.0 Author Bill Venables Maintainer Bill Venables

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 stapler. November 27, 2017

Package stapler. November 27, 2017 Version 0.6.3 Package stapler November 27, 2017 Title Simultaneous Truth and Performance Level Estimation An implementation of Simultaneous Truth and Performance Level Estimation (STAPLE) .

More information

Package tabulizer. June 7, 2018

Package tabulizer. June 7, 2018 Type Package Package tabulizer June 7, 2018 Title Bindings for 'Tabula' PDF Table Extractor Library Version 0.2.2 Maintainer Tom Paskhalis Bindings for the 'Tabula'

More information

Fall 2016 Exam Review 3 Module Test

Fall 2016 Exam Review 3 Module Test 1. What is the block of text at the bottom of the page called? Header Footer Document Area Ribbon 2. Which word processing tool can help you find synonyms to improve your word choice? Spelling and Grammar

More information

Package shinyfeedback

Package shinyfeedback Type Package Package shinyfeedback August 20, 2018 Title Displays User Feedback Next to Shiny Inputs Version 0.1.0 Date 2018-08-19 Easily display user feedback next to Shiny inputs. The feedback message

More information

Package sparklyr.nested

Package sparklyr.nested Title A 'sparklyr' Etension for Nested Data Version 0.0.3 Package sparklyr.nested November 14, 2018 Maintainer Matt Pollock A 'sparklyr' etension adding the capability to work easily

More information

Package omu. August 2, 2018

Package omu. August 2, 2018 Package omu August 2, 2018 Title A Metabolomics Analysis Tool for Intuitive Figures and Convenient Metadata Collection Version 1.0.2 Facilitates the creation of intuitive figures to describe metabolomics

More information

POWERPOINT Build a Presentation to Remember

POWERPOINT Build a Presentation to Remember POWERPOINT 2007 Build a Presentation to Remember Microsoft Office 2007 TABLE OF CONTENTS DOCUMENT THEMES... 1 THEMES... 1 COLOR SETS... 1 FONT SETS... 1 MASTER SLIDES... 2 USING THEMES IN THE SLIDE MASTER...

More information

BEDI INTERNATIONAL SCHOOL, BAREILLY. CHAPTER: 3( Managing files and folders)

BEDI INTERNATIONAL SCHOOL, BAREILLY. CHAPTER: 3( Managing files and folders) BEDI INTERNATIONAL SCHOOL, BAREILLY CLASS: V SUBJECT: Computer CHAPTER: 3( Managing files and folders) A. Fill in the blanks: 1. MS Windows is an Operating System. 2. To customize the desktop, right-click

More information

Package tablehtml. November 5, 2017

Package tablehtml. November 5, 2017 Package Type Package Title A Tool to Create HTML Tables Version 1.1.0 November 5, 2017 URL https://github.com/lyzander/ BugReports https://github.com/lyzander//issues Depends R (>= 3.2.0) Imports htmltools,

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Supported Word Features Version: 6.2.0 Written by: Product Knowledge, R&D Date: December 2017 Copyright 2008-2017 Hyland Software, Inc. and its affiliates. Table of Contents

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

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 radix. September 17, 2018

Package radix. September 17, 2018 Type Package Package radix September 17, 2018 Title 'R Markdown' Format for Scientific and Technical Writing Version 0.5 Scientific and technical article format for the web. 'Radix' articles feature attractive,

More information

Package editdata. October 7, 2017

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

More information

Package regexselect. R topics documented: September 22, Version Date Title Regular Expressions in 'shiny' Select Lists

Package regexselect. R topics documented: September 22, Version Date Title Regular Expressions in 'shiny' Select Lists Version 1.0.0 Date 2017-09-22 Title Regular Expressions in 'shiny' Select Lists Package regexselect September 22, 2017 Description 'shiny' extension that adds regular expression filtering capabilities

More information

Package WordR. September 7, 2017

Package WordR. September 7, 2017 Type Package Package WordR September 7, 2017 Title Rendering Word Documents with R Inline Code Version 0.2.2 Author Tomas Hovorka Maintainer Tomas Hovorka Serves for rendering

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

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office Unit-1 MS-WORD Answer the following. (1 mark) 1. Which submenu contains the watermark option? 2. Which is used for the Cell merge in the table? 3. Which option creates a large capital letter at the beginning

More information

Package arulescba. April 24, 2018

Package arulescba. April 24, 2018 Version 1.1.3-1 Date 2018-04-23 Title Classification Based on Association Rules Package arulescba April 24, 2018 Provides a function to build an association rulebased classifier for data frames, and to

More information

Package cli. November 5, 2017

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

More information

Package dat. January 20, 2018

Package dat. January 20, 2018 Package dat Type Package Title Tools for Data Manipulation Version 0.4.0 January 20, 2018 BugReports https://github.com/wahani/dat/issues An implementation of common higher order functions with syntactic

More information

Package mason. July 5, 2018

Package mason. July 5, 2018 Type Package Package mason July 5, 2018 Title Build Data Structures for Common Statistical Analysis Version 0.2.6 Use a consistent syntax to create structures of common statistical techniques that can

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

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Supported Word Features Version: 6.1.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Package labelled. December 19, 2017

Package labelled. December 19, 2017 Package labelled December 19, 2017 Type Package Title Manipulating Labelled Data Version 1.0.1 Date 2017-12-19 Maintainer Joseph Larmarange Work with labelled data imported from

More information

Package revealjs. R topics documented: March 13, Type Package

Package revealjs. R topics documented: March 13, Type Package Type Package Package revealjs March 13, 2017 Title R Markdown Format for 'reveal.js' Presentations Version 0.9 Date 2017-03-13 Description R Markdown format for 'reveal.js' presentations, a framework for

More information

Package ezknitr. September 16, 2016

Package ezknitr. September 16, 2016 Package ezknitr September 16, 2016 Title Avoid the Typical Working Directory Pain When Using 'knitr' Version 0.6 An extension of 'knitr' that adds flexibility in several ways. One common source of frustration

More information

Package xltabr. November 28, 2017

Package xltabr. November 28, 2017 Type Package Package xlr November 28, 2017 Title Automatically Write Beautifully Formatted Cross Tabulations/Contingency Tables to Excel Version 0.1.2 Writes beautifully formatted cross ulations to Excel

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files Version 0.1.3 Date 2018-08-12 Title Read Large Text Files Package bigreadr August 13, 2018 Read large text s by splitting them in smaller s. License GPL-3 Encoding UTF-8 LazyData true ByteCompile true

More information

Package colf. October 9, 2017

Package colf. October 9, 2017 Type Package Package colf October 9, 2017 Title Constrained Optimization on Linear Function Version 0.1.3 URL https://github.com/lyzander/colf BugReports https://github.com/lyzander/colf/issues Depends

More information

INFORMATION TECHNOLOGY

INFORMATION TECHNOLOGY INFORMATION TECHNOLOGY PowerPoint Presentation Section Two: Formatting, Editing & Printing Section Two: Formatting, Editing & Printing By the end of this section you will be able to: Insert, Edit and Delete

More information

Package nngeo. September 29, 2018

Package nngeo. September 29, 2018 Type Package Title k-nearest Neighbor Join for Spatial Data Version 0.2.2 Package nngeo September 29, 2018 K-nearest neighbor search for projected and non-projected 'sf' spatial layers. Nearest neighbor

More information

Package 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 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 bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Supported Word Features PDC Version: 6.0 Written by: Product Documentation, R&D Date: August 2014 2014 Perceptive Software. All rights reserved Perceptive Software is a

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 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 pdfsearch. July 10, 2018

Package pdfsearch. July 10, 2018 Type Package Version 0.2.3 License MIT + file LICENSE Title Search Tools for PDF Files Package pdfsearch July 10, 2018 Includes functions for keyword search of pdf files. There is also a wrapper that includes

More information

Package FSelectorRcpp

Package FSelectorRcpp Type Package Package FSelectorRcpp November 12, 2018 Title 'Rcpp' Implementation of 'FSelector' Entropy-Based Feature Selection Algorithms with a Sparse Matrix Support Version 0.3.0 Description 'Rcpp'

More information

Package confidence. July 2, 2017

Package confidence. July 2, 2017 Type Package Package confidence July 2, 2017 Title Confidence Estimation of Environmental State Classifications Functions for estimating and reporting multi-year averages and corresponding confidence intervals

More information

Package jdx. R topics documented: January 9, Type Package Title 'Java' Data Exchange for 'R' and 'rjava'

Package jdx. R topics documented: January 9, Type Package Title 'Java' Data Exchange for 'R' and 'rjava' Type Package Title 'Java' Data Exchange for 'R' and 'rjava' Package jdx January 9, 2018 Description Simplifies and extends data exchange between 'R' and 'Java'. Version 0.1.0 License GPL (>= 2 BSD_3_clause

More information

Package reval. May 26, 2015

Package reval. May 26, 2015 Package reval May 26, 2015 Title Repeated Function Evaluation for Sensitivity Analysis Version 2.0.0 Date 2015-05-25 Author Michael C Koohafkan [aut, cre] Maintainer Michael C Koohafkan

More information

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

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

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

Package table1. July 19, 2018

Package table1. July 19, 2018 Type Package Version 1.1 Date 2018-07-18 Title Tables of Descriptive Statistics in HTML Package table1 July 19, 2018 Create HTML tables of descriptive statistics, as one would epect to see as the first

More information