Recent Releases of repr

repr - 1.1.7

  • [#163] Improve tests (@zknitter)
  • [#166] fix error in repr_text() on packed tibble (@Fan-iX)
  • [#168] Update test to accomodate for upcoming htmltools release (@cpsievert)

- R
Published by flying-sheep over 2 years ago

repr - 1.1.6

  • [#160] load chars on package load (@flying-sheep)

- R
Published by flying-sheep over 2 years ago

repr - 1.1.5

  • [#157] Fix for dev stringr (@hadley)

- R
Published by flying-sheep over 3 years ago

repr - 1.1.4

  • [#144] Fix html filter to also work with R 4.1.1 html (@renkun-ken)
  • [#149] Switch CI to GH actions by (@flying-sheep)

- R
Published by flying-sheep over 4 years ago

repr -

  • [#135] Fix time series not supporting 1-row output
  • [04239d07d235d36e7b3ca672bcd34c6fb3ff5fb8] Switch from dplyr::tbl to tibble::tibble

- R
Published by flying-sheep over 5 years ago

repr - 1.1.3

  • [82041bf4cebbc7eafa9f8806e48ce6f7110ce288] Switch to testthat 3
  • [68bf64e734a7a845e0b7ebfe53f3531e841a238a,#139] Fix URLs in README

- R
Published by flying-sheep over 5 years ago

repr -

  • [#128] Add class="dataframe" to the HTML <table/> tags
  • [9af4e984279a743dd550535a5906a3f0870a4e3f] Fixes reprs of lists with identical(names(l), '') #133

- R
Published by flying-sheep almost 6 years ago

repr -

  • [#125] Add option repr.vector.max.items to limit displayed vectors (by default to maximally 400 items)
  • [#125] Prettify HTML representation of vectors by displaying style tags with them

- R
Published by flying-sheep over 6 years ago

repr -

  • [d25aad07474644a38bd146ad82ee29dd857de4e3] Optimize has_row_names using .row_names_info to speed up reprs of large data.frames (Issue #119)
  • [7ca5bb99be963481fdba975e5e9446afa67c0b49] Fix column specification in repr_latex.matrix
  • [ddeb9fc17aae40f5dd4d890c39127bf87ec778bb] Add repr_vega5, repr_vegalite3 and repr_vegalite4

- R
Published by flying-sheep over 6 years ago

repr -

  • [#100] Fixed display of 1D arrays, such as the ones emitted by tapply()

- R
Published by flying-sheep about 7 years ago

repr -

  • [b4a555fe77ef3b5fc2bb0885f781f9de51b8b1dc] Fixed display of lists with NAs in their names()

- R
Published by flying-sheep about 7 years ago

repr -

  • [#116] Implemented tibble-inspired data.frame column types and matrix types. They are displayed for every data.frame subclass, which includes tibbles and data.tables
  • [bd0271ed7ee2628af037363c8c955ecc4fad1225] Fixed passing the col argument to repr_matrix_markdown

- R
Published by flying-sheep about 7 years ago

repr -

  • Upgrade to the newest versions of pillar and diffobj. This shows the size of matrices nested in a data.frame in the frame’s column summaries:

    ```r

    df <- aggregate(. ~ Species, iris, range) cat(repr_markdown(df)) A data.frame: 3 × 5 | Species | Sepal.Length | Sepal.Width | Petal.Length | Petal.Width | |---|---|---|---|---| | setosa | 4.3, 5.8 | 2.3, 4.4 | 1.0, 1.9 | 0.1, 0.6 | | versicolor | 4.9, 7.0 | 2.0, 3.4 | 3.0, 5.1 | 1.0, 1.8 | | virginica | 4.9, 7.9 | 2.2, 3.8 | 4.5, 6.9 | 1.4, 2.5 | ```

- R
Published by flying-sheep about 7 years ago

repr -

  • [#105] Added repr_*.ts

- R
Published by flying-sheep over 7 years ago

repr -

  • [#103] Add new mime types:

    • repr_plotly1
    • repr_vega4
    • repr_vegalite2
    • repr_vdom

- R
Published by flying-sheep over 7 years ago

repr -

Fix tests on Windows

- R
Published by flying-sheep over 7 years ago

repr -

  • [#96] Fix displaying lists with mixed named and unnamed items
  • [IRkernel/IRkernel#588] Fixed in #98 and #99 independently

- R
Published by flying-sheep over 7 years ago

repr -

  • Skip htmlwidgets tests if the package is not installed

- R
Published by flying-sheep over 7 years ago

repr -

  • [#91] Represent NULL properly in lists

- R
Published by flying-sheep about 8 years ago

repr -

  • Added repr_{html,markdown,latex}.factor
  • [#89] Avoid writing to disk for htmlwidget reprs

- R
Published by flying-sheep about 8 years ago

repr - 0.12

  • data.table reprs respecting visibility
  • shiny.tag.list reprs
  • character vectors now show invisibles via escape sequences (such as \1\001) and don’t quote NA anymore

- R
Published by flying-sheep over 9 years ago

repr - 0.10

  • Added repr_markdown.matrix/~.data.frame for massive speedups in the IRkernel when printing matrices

(before this, it fell back to the second class’s method: repr_markdown.numeric, which formatted the matrix as huge linear vector) - Fixed incomplete rowname preservation

- R
Published by flying-sheep over 9 years ago

repr - CRAN release

Changed the name of the list entry getOption('repr.matrix.latex.colspec')$row.head to row_head

- R
Published by flying-sheep almost 10 years ago

repr - Version 0.8

  • [#60] Avoid repr of lists with unrepr’able items
  • [#63] Correctly check for the Cairo package’s availability at runtime instead of compile time
  • [#65] Greatly improve matrix/data.frame handling robustness by rewriting limiting code
  • [#75] Don’t let HTML collapse spaces in strings anymore

- R
Published by flying-sheep almost 10 years ago

repr - Version 0.7

  • Fixed factor handling in data.frames
  • Handle POSIXt dates
  • Added rows/cols argument to matrix/data.frame reprs
  • Added packageIQR reprs (informational lists like vignette(package = '...') and data(package = '...'))

- R
Published by flying-sheep about 10 years ago

repr - Version 0.6

CRAN release! (nothing else really)

- R
Published by flying-sheep about 10 years ago

repr - Version 0.5

  • Circumvented many bugs relating to the poor unicode support of R under Windows
  • Fixed some bugs around arrays
  • Added basic htmlwidget repr
  • Export option defaults
  • Added LaTeX and HTML escaping

- R
Published by flying-sheep about 10 years ago

repr - Version 0.3

Fixed capability detection, so that pngs and jpg are created using the best existing device on each OS

- R
Published by flying-sheep almost 11 years ago

repr - Version 0.4

Limits display of data.frames and matrices to a max number of rows/columns.

Added the options repr.matrix.max.rows (default: 60) and repr.matrix.max.cols (default: 20)

- R
Published by flying-sheep almost 11 years ago