Skip to content

Releases: IRkernel/repr

1.1.7

22 Mar 09:13
Compare
Choose a tag to compare

1.1.6

22 Mar 09:01
Compare
Choose a tag to compare

1.1.5

12 Jan 17:39
Compare
Choose a tag to compare

1.1.4

05 Jan 10:20
Compare
Choose a tag to compare

1.1.3

21 Jan 09:22
635c400
Compare
Choose a tag to compare

1.1.2

21 Jan 09:27
Compare
Choose a tag to compare
  • [#135] Fix time series not supporting 1-row output
  • [04239d0] Switch from dplyr::tbl to tibble::tibble

1.1.1

19 Aug 23:02
Compare
Choose a tag to compare
  • [#128] Add class="dataframe" to the HTML <table/> tags
  • [9af4e98] Fixes reprs of lists with identical(names(l), '') #133

1.1.0

28 Jan 11:33
Compare
Choose a tag to compare
  • [#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

1.0.2

16 Dec 11:49
Compare
Choose a tag to compare
  • [d25aad0] Optimize has_row_names using .row_names_info to speed up reprs of large data.frames (Issue #119)
  • [7ca5bb9] Fix column specification in repr_latex.matrix
  • [ddeb9fc] Add repr_vega5, repr_vegalite3 and repr_vegalite4

1.0.1

26 May 10:38
Compare
Choose a tag to compare
  • 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:

    > df <- aggregate(. ~ Species, iris, range)
    > cat(repr_markdown(df))
    A data.frame: 3 × 5
    | Species <fct> | Sepal.Length <dbl[,2]> | Sepal.Width <dbl[,2]> | Petal.Length <dbl[,2]> | Petal.Width <dbl[,2]> |
    |---|---|---|---|---|
    | 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 |