Package flextable. December 8, 2017

Size: px
Start display at page:

Download "Package flextable. December 8, 2017"

Transcription

1 Type Package Title Functions for Tabular Reporting Version Package fletable December 8, 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 and can be used with R Markdown documents. License GPL-3 LazyData TRUE Imports stats,utils,grdevices, officer (>= 0.2.0), rmarkdown, knitr,htmltools, lazyeval,r6,stringr, gdtools (>= 0.1.6) RoygenNote Suggests ml2, testthat URL BugReports VignetteBuilder knitr NeedsCompilation no Author David Gohel [aut, cre], Maim Nazarov [ctb] (rmarkdown for doc output) Maintainer David Gohel <david.gohel@ardata.fr> Repository CRAN Date/Publication :01:20 UTC R topics documented: add_header align as_image autofit bg

2 2 add_header body_add_fletable bold border color dim.fletable dim_pretty display empty_blanks fletable fontsize height italic knit_print.fletable merge_at merge_h merge_none merge_v minibar padding ph_with_fletable rotate set_formatter set_header_df set_header_labels style tabwid theme_booktabs theme_bo theme_tron theme_tron_legacy theme_vanilla theme_zebra void width Inde 28 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. add_header(, top = TRUE,...)

3 align 3 a fletable object top 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. Details 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 ) Eamples ft <- fletable(mtcars) ft <- align(ft, align = "center")

4 4 autofit 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(officer) img.file <- file.path( R.home("doc"), "html", "logo.jpg" ) myft <- fletable(head( mtcars, n = 10)) myft <- display(myft, 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 autofit Adjusts cell widths and heights compute and apply optimized widths and heights. autofit(, add_w = 0.1, add_h = 0.1)

5 bg 5 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 library(officer) 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. Values are inches. ## 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 in inches. 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 pattern It defined the template used to format the produced strings. Names enclosed by double braces will be evaluated as R code, the corresponding R code is defined with the argument formatters. formatters Each compound is specifying the R code to eecute to produce strings that will be substituted in the pattern argument. An element must be a formula: the left-hand side is a name (matching a name enclosed by double braces in pattern) and the right-hand side is an R epression to be evaluated (that will produce the corresponding strings). fprops A named list of fp_tet. It defines the formatting properties associated to a compound in formatters. If not defined for an element of formatters, the default formatting properties will be applied. Note The function display only works with fletable objects, use set_formatter for regulartable objects. Eamples library(officer) # Formatting data values eample 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

11 fletable 11 Eamples 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 ft <- fletable(head(iris), col_keys = c("species", "break1", "Sepal.Length", "Sepal.Width", "break2", "Petal.Length", "Petal.Width") ) ft <- set_header_df(ft, mapping = typology, key = "col_keys" ) ft <- merge_h(ft, = "header") ft <- theme_vanilla(ft) ft <- empty_blanks(ft) ft <- width(ft, j = c(2, 5), width =.1 ) ft 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 dataset col_keys 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 in inches. fletable object

12 12 fontsize preview... unused argument preview type, one of c("html", "ppt", "doc", "log"). When "log" is used, a description of the fletable is printed. 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 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")

13 height 13 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 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 )

14 14 merge_at Eamples ft <- fletable(mtcars) ft <- italic(ft, italic = TRUE, = "header") knit_print.fletable Render fletable in rmarkdown (including Word output) Function used to render fletable in knitr/rmarkdown documents. HTML and Word outputs are supported. ## S3 method for class 'fletable' knit_print(,...) a fletable object... further arguments, not used. Note For Word (doc) output, if pandoc vesion >= 2.0 is used, a raw XML block with the table code will be inserted. If pandoc vesion < 2.0 is used, an error will be raised. Author(s) Maim Nazarov merge_at Merge fletable cells Merge fletable cells merge_at(, i = NULL, j = NULL, = "body")

15 merge_h 15 fletable object i, j columns and rows to merge name of the table where merge has to be done. Eamples ft_merge <- fletable( head( mtcars ), cwidth =.5 ) ft_merge <- merge_at( ft_merge, 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

16 16 merge_v merge_none Delete fletable merging informations Delete all merging informations from a fletable. merge_none(, = "all") 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.

17 minibar 17 Eamples ft_merge <- fletable(mtcars) ft_merge <- merge_v(ft_merge, j = c("gear", "carb")) ft_merge 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")

18 18 ph_with_fletable i j padding padding.top a fletable object rows selection columns selection padding (shortcut for top, bottom, left and right) padding top padding.bottom padding bottom padding.left padding.right Eamples padding left padding right ft <- fletable(mtcars) ft <- padding(ft, padding.top = 4) name of the table (one of all, body, header ) 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 in inches Note The width and height of the table can not be set with this function. Use functions width, height, autofit and dim_pretty instead. The overall size is resulting from cells, paragraphs and tet properties (i.e. padding, font size, border widths).

19 rotate 19 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" ) 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")

20 20 set_formatter 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") set_formatter_type(, fmt_double = "%.03f", fmt_integer = "%.0f", fmt_date = "%Y-%m-%d", fmt_datetime = "%Y-%m-%d %H:%M:%S", fun_any = "format") a regulartable object... Name-value pairs of functions, names should be eisting col_key values name of the table (one of body or header ) fmt_double, fmt_integer arguments used by sprintf to format double and integer columns. fmt_date, fmt_datetime arguments used by format to format date and date time columns. fun_any function name (character) to use to convert other types of columns as characters. Note that factors and strings are not transformed by this function. set_formatter_type set_formatter_type is an helper function to quickly define formatter functions regarding to column types. Eamples ft <- regulartable( head( iris ) ) ft <- set_formatter( = ft, Sepal.Length = function() sprintf("%.02f", ), Sepal.Width = function() sprintf("%.04f", ) ) ft <- theme_vanilla( ft ) ft

21 set_header_df 21 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 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(,...)

22 22 style 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 ) Eamples library(officer) 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")

23 tabwid 23 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. This function is deprecated. tabwid(,...) fletable object... Unused arguments theme_booktabs Apply booktabs theme Apply theme tron to a fletable theme_booktabs() a fletable object Eamples ft <- fletable(iris) ft <- theme_booktabs(ft)

24 24 theme_tron theme_bo Apply bo theme Apply theme bo to a fletable theme_bo() a fletable object Eamples ft <- fletable(iris) ft <- theme_bo(ft) theme_tron Apply tron theme Apply theme tron to a fletable theme_tron() a fletable object Eamples ft <- fletable(iris) ft <- theme_tron(ft)

25 theme_tron_legacy 25 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) theme_vanilla Apply vanilla theme Apply theme vanilla to a fletable theme_vanilla() a fletable object Eamples ft <- fletable(iris) ft <- theme_vanilla(ft)

26 26 void 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) 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 )

27 width 27 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 Eamples ft <- fletable(iris) ft <- width(ft, width = 1)

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

Package flextable. September 5, 2017

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

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

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

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

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

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

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

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

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

Package raker. October 10, 2017 Title Easy Spatial Microsimulation (Raking) in R Version 0.2.1 Date 2017-10-10 Package raker October 10, 2017 Functions for performing spatial microsimulation ('raking') in R. Depends R (>= 3.4.0) License

More information

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

The New Office 2007 Interface and Shared Features

The New Office 2007 Interface and Shared Features The New Office 2007 Interface and Shared Features The Ribbon and Ribbon Tabs Minimising and Maximising Keytips and shortcut keys Standard vs contextual tabs Live Preview Dialogue Box/ Task Pane launchers

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

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

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

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 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 covr. October 18, 2018

Package covr. October 18, 2018 Encoding UTF-8 Title Test Coverage for Packages Version 3.2.1 Package covr October 18, 2018 Track and report code coverage for your package and (optionally) upload the results to a coverage service like

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 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 geojson. November 8, 2017

Package geojson. November 8, 2017 Type Package Title Classes for 'GeoJSON' Package geojson November 8, 2017 Classes for 'GeoJSON' to make working with 'GeoJSON' easier. Includes S3 classes for 'GeoJSON' classes with brief summary output,

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

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 resumer. R topics documented: August 29, 2016

Package resumer. R topics documented: August 29, 2016 Package resumer August 29, 2016 Title Build Resumes with R Version 0.0.3 Using a database, LaTeX and R easily build attractive resumes. Depends R (>= 3.2.1) License BSD_3_clause + file LICENSE LazyData

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 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 Rspc. July 30, 2018

Package Rspc. July 30, 2018 Type Package Title Nelson Rules for Control Charts Version 1.2.2 Package Rspc July 30, 2018 Maintainer Stanislav Matousek (MSD) Implementation of Nelson rules for control charts in 'R'.

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 errorlocate. R topics documented: March 30, Type Package Title Locate Errors with Validation Rules Version 0.1.3

Package errorlocate. R topics documented: March 30, Type Package Title Locate Errors with Validation Rules Version 0.1.3 Type Package Title Locate Errors with Validation Rules Version 0.1.3 Package errorlocate March 30, 2018 Errors in data can be located and removed using validation rules from package 'validate'. License

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

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

Formatting a Report with Word 2010

Formatting a Report with Word 2010 Formatting a Report with Word 2010 The basics Although you can use Word to do a great many formatting tasks, here we will concentrate on the basic requirements for good presentation of a report. These

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

PowerPoint Module 2: Modifying a Presentation

PowerPoint Module 2: Modifying a Presentation 1. In the Outline pane, a highlighted slide icon next to the slide number indicates that the slide is selected. True PowerPoint 26 LEARNING OBJECTIVES: BESK.OFIN.16.297 - Enter text in Outline view 2.

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

Create a new document based on default template, other available template like: memo, fax, agenda.

Create a new document based on default template, other available template like: memo, fax, agenda. Word Processing 3 Objectives: Working with Documents Enhancing Productivity Using the Application Open, close a word processing application. Open, close documents. Create a new document based on default

More information

How This Book Is Organized Which Suites Are Covered? The Office Applications Introducing Microsoft Office 2007 p. 1 What's New in Office 2007? p.

How This Book Is Organized Which Suites Are Covered? The Office Applications Introducing Microsoft Office 2007 p. 1 What's New in Office 2007? p. Introduction p. xi How This Book Is Organized p. xii Which Suites Are Covered? p. xii The Office Applications p. xiii Introducing Microsoft Office 2007 p. 1 What's New in Office 2007? p. 3 The New User

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

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 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 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 edgarwebr. December 22, 2017

Package edgarwebr. December 22, 2017 Title SEC Filings Access Package edgarwebr December 22, 2017 A set of methods to access and parse live filing information from the U.S. Securities and Echange Commission (SEC - ) including

More information

Package condusco. November 8, 2017

Package condusco. November 8, 2017 Type Package Package condusco November 8, 2017 Title Query-Driven Pipeline Execution and Query Templates Version 0.1.0 Author Roland Stevenson Maintainer Roland Stevenson Description

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

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

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

1. What tool do you use to check which cells are referenced in formulas that are assigned to the active cell?

1. What tool do you use to check which cells are referenced in formulas that are assigned to the active cell? Q75-100 1. What tool do you use to check which cells are referenced in formulas that are assigned to the active cell? A. Reference Finder B. Range Finder C. Reference Checker D. Address Finder B. Range

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 CDU Short Courses Introduction to Microsoft Word 2010 A 2 day course delivered by Charles Darwin University. COURSE INFORMATION This course focuses on basic document production using Microsoft Word 2010

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

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

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

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

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel Tutorial 2 Formatting a Workbook Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel COMPREHENSIVE Objectives

More information

What can Word 2013 do?

What can Word 2013 do? Mary Ann Wallner What can Word 2013 do? Provide the right tool for: Every aspect of document creation Desktop publishing Web publishing 2 Windows 7: Click Start Choose Microsoft Office > Microsoft Word

More information

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003 FM TBBBB 39909 10/27/06 4:06 PM Page iii Contents FMTOC TBBBB 39909 Page iii 10/20/06 MD Preface To the Student Introduction to Microsoft Windows XP and Office 2003 ix xiv Objectives WIN 4 Introduction

More information