repr icon indicating copy to clipboard operation
repr copied to clipboard

Simple tidyr::nest() data.frame fails to render

Open MichaelChirico opened this issue 11 months ago • 0 comments

tibble::tibble(x = c(1, 1, 1, 2, 2, 3), y = 1:6, z = 6:1) |>
  tidyr::nest(data = c(y, z)) |>
  repr::repr_html()
# Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE,  : 
#   arguments imply differing number of rows: 3, 2, 1

Related: #71 #155

MichaelChirico avatar Feb 03 '25 21:02 MichaelChirico