count: false .panel1-the_chunk-auto[ ```r *library(huxtable) ``` ] .panel2-the_chunk-auto[ ] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) *hux(Type = c("Strawberry", "Raspberry", "Plum"), * Price = c(1.90, 2.10, 1.80)) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% * set_all_padding(4) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% set_all_padding(4) %>% * set_outer_padding(0) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% set_all_padding(4) %>% set_outer_padding(0) %>% * set_number_format(2) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.90
Raspberry
2.10
Plum
1.80
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% set_all_padding(4) %>% set_outer_padding(0) %>% set_number_format(2) %>% * set_bold(row = 1, col = everywhere) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.90
Raspberry
2.10
Plum
1.80
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% set_all_padding(4) %>% set_outer_padding(0) %>% set_number_format(2) %>% set_bold(row = 1, col = everywhere) %>% * set_bottom_border(1, everywhere) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.90
Raspberry
2.10
Plum
1.80
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% set_all_padding(4) %>% set_outer_padding(0) %>% set_number_format(2) %>% set_bold(row = 1, col = everywhere) %>% set_bottom_border(1, everywhere) %>% * set_width(0.4) ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.90
Raspberry
2.10
Plum
1.80
] --- count: false .panel1-the_chunk-auto[ ```r library(huxtable) hux(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% set_all_padding(4) %>% set_outer_padding(0) %>% set_number_format(2) %>% set_bold(row = 1, col = everywhere) %>% set_bottom_border(1, everywhere) %>% set_width(0.4) %>% * set_caption("Pots of jam for sale") ``` ] .panel2-the_chunk-auto[
Pots of jam for sale
Type
Price
Strawberry
1.90
Raspberry
2.10
Plum
1.80
] <style> .panel1-the_chunk-auto { color: black; width: 58.8%; hight: 32%; float: left; padding-left: 1%; font-size: 80% } .panel2-the_chunk-auto { color: black; width: 39.2%; hight: 32%; float: left; padding-left: 1%; font-size: 80% } .panel3-the_chunk-auto { 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: 120%} @media print { .has-continuation { display: block; } } </style>