Skip to content

Releases: nutterb/pixiedust

Hawie

29 Jun 18:33
4718603
Compare
Choose a tag to compare

0.8.4 (2018-06-29)

  • Added gaze function to produce model summaries side-by-side (#80)
  • Small adjustments to work with upcoming version of broom.

Erana

11 May 14:42
3d38d7e
Compare
Choose a tag to compare
Merge pull request #115 from nutterb/devel

Devel

Tup Smatterpit

17 Apr 02:04
Compare
Choose a tag to compare

0.7.0 (15 April 2016)

  • Backward compatibility: The way pixiedust deals with
    colors has changed. If you are using custom defined colors in your
    LaTeX preamble, these will no longer work. pixiedust will only accept
    colors names in colors(), or in the rgb, rgba, #RRGGBB, or
    #RRDDBBAA formats. This only affects LaTeX output, and provides a
    better interface for ensuring all HTML and LaTeX output are as similar
    as possible.
  • Added justification for tables. Use the justify argument in
    dust and the justify sprinkle to move the table to the left,
    or right side of the page. Defaults to centered.
  • Added auto-detection of the print method. When a document is being
    knit, the output format is read from knitr::opts_knit$get("rmarkdown.pandoc.to").
    If this resolves to NULL, the value of getOption("pixiedust_print_method")
    is used.
  • Added docx as a valid print method, which is synonymous with markdown.
  • labels for HTML and LaTeX tables are automatically generated when
    label = NULL. First, an attempt is made to generate a label from the
    chunk label, and if that fails, a label is generated from getOption("pixie_count")
  • Added default horizontal alignments for HTML tables
  • Added default rounding for numerical values. If the user does not give a value,
    the value of getOption("digits") is used. This effectively prints as many
    decimal places as would be printed in the console.
  • Sprinkle recycling is added with recycle argument.
  • Fixed coordinate pairs is added with fixed argument.
  • Added recognition of all colors in colors()

0.6.3 (8 April 2016)

  • Converted dust, sprinkle functions, and print to S3 methods.
    This allows for lists of data frames to be processed as
    separate tables.
  • Added dust.grouped_df to give the option of ungrouping a
    grouped_df object, or splitting it.
  • Added the bookdown attribute (and sprinkle) to allow use with
    the bookdown package.
  • Added labeling.
  • Added caption, hhline, and float as sprinkles.
  • Changed the default colors for bg_pattern to "#FFFFFF#" and "#DDDDDD".
    The gray in this pattern is a little lighter and should do better when
    printed in black and white.

0.6.2 (15 March 2016)

  • Implemented a new printing method that makes use of the hhline
    LaTeX package. This allows borders to be drawn over background
    colors. In the existing method, the cell borders are hidden
    by background colors. The hhline method can be used by setting
    options(pixiedust_latex_hhline = TRUE).

Papillon

24 Jan 00:00
Compare
Choose a tag to compare
  • Table Captions are now implemented.
  • Added parameter to place LaTeX tables in a float environment. This was
    necessary to make table captions functional in non-longtable situations.
  • LaTeX output is fully implemented
  • tabrowsep element was removed from the dust object since it apparently
    isn't a real thing.
  • Implemented rotated text.

Nuala

14 Oct 22:17
Compare
Choose a tag to compare

0.5.0 (Change Log Highlights since last CRAN Release)

  • pixiedust no longer uses the + operator.
    Please use %>% instead.
  • Complete support for HTML tables is available.
  • Limited support for LaTeX tables is available.
  • New vignette: Advanced Magic.
  • Added the replace sprinkle to replace values in
    table columns, rows, or cells.
  • Added the longtable sprinkle: allows tables to
    be printed in multiple sections.
  • Added the na_string sprinkle.
  • Added support for multirow headers and footers.
  • Added support for multicell output using the
    merge sprinkle.
  • Added an option glance_foot, which places model
    summary statistics in the foot of a table.
  • Added options for including variables labels and
    more detailed descriptions of factors and levels.
  • Introduces "medleys", functions that can apply
    multiple sprinkles to a dust object in a
    single line.
  • Adds as.data.frame.dust method

Belial

25 Sep 11:02
Compare
Choose a tag to compare

Changes between 0.3.0 and 0.4.0

  • Fixed a bug described in Issue #26
  • Changes to Advance Magic vignette use a linear model and
    glance statistics for examples.
  • Glance footer is implemented. Vignettes need to be updated
  • Variable labels and levels are implemented (well ahead of
    schedule!). Vignettes need to be updated

Jareth

16 Sep 00:47
Compare
Choose a tag to compare
  • Multi-cell output for HTML is fully supported.
  • Data frame row names may be captured in the output with dust
    argument keep_rownames
  • A new sprinkle is added. na_string defaults to "", and controls how
    NA is printed in tables.

Hoikendorf

19 Aug 00:06
Compare
Choose a tag to compare

Changes Since Previous Release

0.1.1-7 (17 August 2015)

  • Finished the Advanced Magic vignette, which serves as the tests for advanced
    output since I haven't bothered to code a way to check the results directly.
  • Configure the repository for coveralls.
  • Adds covr and Hmisc to Suggests:

0.1.1-6 (12 August 2015)

  • Removed 'longtable' option from print.dust and made it a sprinkle. This
    allows it to be used without having to explicitly call print.
  • Implemented longtable capacity. Users may now break tables into multiple
    divisions of either a default size (25 rows for console, markdown, or HTML)
    or a user-specified number of rows.
  • Began an "advanced magic" vignette to demonstrate the capabilities of
    longtable and eventually multicolumn and multirow support. Similar
    vignettes will be needed for console, markdown, and html output, though
    not all of them will need to be bundled with the package.
  • Added the roundSafe helper function to allow rounding to succeed while
    skipping true character values.

0.1.1-5 (11 August 2015)

  • Added the longtable option to print.dust. Not yet active, but lays
    the groundwork for multipage tables.
  • Added multirow headers and footers (but not interfoot)
  • Added the redust function for adding and/or switching table components. For
    example, adding a multirow header, or a foot.

0.1.1-4 (5 August 2015)

  • Added the replace sprinkle to replace values in table columns, rows, or cells.
    This closes Issue #12

0.1.1-3 (4 August 2015)

  • Optimizations related to removing ifelse calls.
  • Initial values for table attributes are now stored as "" instead of NA.
    This increases the object size, but cuts down on the processing time.
  • Removed object element from the dust object. In Issue #13, matthieugomez
    pointed out that very large models could create storage space problems.
    There's no sense in keeping an extra copy of the model object.
  • Removed the +.dust method and rewrote the sprinkles as pipable functions.
    This resolves Issue #8

Oberon

01 Aug 12:07
Compare
Choose a tag to compare

Implements the dust object and sprinkles for customizing console, markdown, and HTML output.