【问题标题】:How can I apply custom-formatting to tibble list-columns using vctrs?如何使用 vctrs 将自定义格式应用于 tibble 列表列?
【发布时间】:2021-07-06 03:07:38
【问题描述】:

我正在使用new_list_of() 创建一个新的vctrs S3 类,但是在小标题中使用时我找不到控制此类打印的方法。这是一个使用玩具“fruit_bowl”类的最小示例。理想情况下,我希望列显示obj_print_data.fruit_bowl() 的输出,即"2 types of fruit""1 type of fruit",但似乎唯一会打印的是向量的长度。

library(vctrs)
library(tibble)
#> 
#> Attaching package: 'tibble'
#> The following object is masked from 'package:vctrs':
#> 
#>     data_frame

# Fruit bowl constructor function that uses `new_list_of`
fruit_bowl <- function(...) {
  x <- list(...)
  x <- lapply(x, vec_cast, character())
  new_list_of(x, ptype = character(), class = "fruit_bowl")
}

# Set the ptypes for nice printing
vec_ptype_full.fruit_bowl <- function(x, ...) "fruit_bowl"
vec_ptype_abbr.fruit_bowl <- function(x, ...) "frt_bwl"

# Formatting for fruit bowls
format.fruit_bowl <- function(x, ...) {

  format_fruits <- function(x) {
    n <- length(unique(x))
    sprintf("%d type%s of fruit", n, if (n == 1) "" else "s")
  }

  vapply(x, format_fruits, character(1))
}

# Printing for fruit bowls - use the 'format' function
obj_print_data.fruit_bowl <- function(x, ...) {
  if (length(x) == 0) {
    return()
  }
  print(format(x))
}

# Printing works nicely in isolation
fruit_bowl(c("banana", "apple"), "pear")
#> <fruit_bowl[2]>
#> [1] "2 types of fruit" "1 type of fruit"

# ...But not within tibbles
tibble(fruit_bowls = fruit_bowl(c("banana", "apple"), "pear"))
#> # A tibble: 2 x 1
#>   fruit_bowls
#>     <frt_bwl>
#> 1         [2]
#> 2         [1]

reprex package (v0.3.0) 于 2021-04-10 创建

【问题讨论】:

  • 虽然适用于 data.frame。 data.frame(fruit_bowls = fruit_bowl(c("banana", "apple"), "pear")).

标签: r tibble r-s3 vctrs


【解决方案1】:

我没有完全阅读文档就直接发布了这个问题。这是here

概述的正确方法
pillar_shaft.fruit_bowl <- function(x, ...) {
  pillar::new_pillar_shaft_simple(format(x))
}

tibble(fruit_bowls = fruit_bowl(c("banana", "apple"), "pear"))
#> # A tibble: 2 x 1
#>   fruit_bowls     
#>   <frt_bwl>       
#> 1 2 types of fruit
#> 2 1 type of fruit

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-10-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多