Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

In nested gt table, how to line feed | change hyphen type

There is gt table Current Table , how can I change to Wished Table1 and Wished Table2?
(There are separated question) .Refer to attached image. Thanks!

library(tidyverse)
library(gt)
    diamonds %>% head(5) %>% group_by(color) %>% 
      summarise(x=list(x),y=list(y)) %>% gt()

enter image description here

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Using paste collapse:

library(gt)
library(dplyr)

ggplot2::diamonds %>%
  head(5) %>% 
  group_by(color) %>% 
  summarise(x = paste(x, collapse = "_"),
            y = paste(y, collapse = "_")) %>%
  gt()

enter image description here

ggplot2::diamonds %>%
  head(5) %>% 
  group_by(color) %>% 
  summarise(x = paste(x, collapse = "<br>"),
            y = paste(y, collapse = "<br>")) %>%
  gt() %>% 
  fmt_markdown(columns = c(x, y))

enter image description here

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading