count: false .panel1-the_chunk-replace[ ```r tibble(x = c(1,2,3,4,6), y = 1:5, z = list(1:2, 4:5, 8, NA, c(1,7,9,0))) %>% * gt::gt() ``` ] .panel2-the_chunk-replace[
x
y
z
1
1
1, 2
2
2
4, 5
3
3
8
4
4
NA
6
5
1, 7, 9, 0
] --- count: false .panel1-the_chunk-replace[ ```r tibble(x = c(1,2,3,4,6), y = 1:5, z = list(1:2, 4:5, 8, NA, c(1,7,9,0))) %>% * knitr::kable('html') ``` ] .panel2-the_chunk-replace[ <table> <thead> <tr> <th style="text-align:right;"> x </th> <th style="text-align:right;"> y </th> <th style="text-align:left;"> z </th> </tr> </thead> <tbody> <tr> <td style="text-align:right;"> 1 </td> <td style="text-align:right;"> 1 </td> <td style="text-align:left;"> 1:2 </td> </tr> <tr> <td style="text-align:right;"> 2 </td> <td style="text-align:right;"> 2 </td> <td style="text-align:left;"> 4:5 </td> </tr> <tr> <td style="text-align:right;"> 3 </td> <td style="text-align:right;"> 3 </td> <td style="text-align:left;"> 8 </td> </tr> <tr> <td style="text-align:right;"> 4 </td> <td style="text-align:right;"> 4 </td> <td style="text-align:left;"> NA </td> </tr> <tr> <td style="text-align:right;"> 6 </td> <td style="text-align:right;"> 5 </td> <td style="text-align:left;"> c(1, 7, 9, 0) </td> </tr> </tbody> </table> ] --- count: false .panel1-the_chunk-replace[ ```r tibble(x = c(1,2,3,4,6), y = 1:5, z = list(1:2, 4:5, 8, NA, c(1,7,9,0))) %>% * DT::datatable() ``` ] .panel2-the_chunk-replace[
] --- count: false .panel1-the_chunk-replace[ ```r tibble(x = c(1,2,3,4,6), y = 1:5, z = list(1:2, 4:5, 8, NA, c(1,7,9,0))) %>% * reactable::reactable() ``` ] .panel2-the_chunk-replace[
] <style> .panel1-the_chunk-replace { color: black; width: 38.6060606060606%; hight: 32%; float: left; padding-left: 1%; font-size: 80% } .panel2-the_chunk-replace { color: black; width: 59.3939393939394%; hight: 32%; float: left; padding-left: 1%; font-size: 80% } .panel3-the_chunk-replace { color: black; width: NA%; hight: 33%; float: left; padding-left: 1%; font-size: 80% } </style> <style type="text/css"> .remark-code{line-height: 1.5; font-size: 110%} @media print { .has-continuation { display: block; } } code.r.hljs.remark-code{ position: relative; overflow-x: hidden; } code.r.hljs.remark-code:hover{ overflow-x:visible; width: 500px; border-style: solid; } </style>