count: false .panel1-the_chunk-auto[ ```r *data.frame(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 data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% * as_hux() ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% * set_text_color(row = 2:3, col = 1, * value = "purple") ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% set_text_color(row = 2:3, col = 1, value = "purple") %>% * set_background_color(row = evens, * col = everywhere, * value = "grey85") ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% set_text_color(row = 2:3, col = 1, value = "purple") %>% set_background_color(row = evens, col = everywhere, value = "grey85") %>% * set_background_color(odds, everywhere, * "grey93") ``` ] .panel2-the_chunk-auto[
Type
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% set_text_color(row = 2:3, col = 1, value = "purple") %>% set_background_color(row = evens, col = everywhere, value = "grey85") %>% set_background_color(odds, everywhere, "grey93") %>% * set_markdown_contents(1, 1, "*Type* of jam") ``` ] .panel2-the_chunk-auto[
Type
of jam
Price
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% set_text_color(row = 2:3, col = 1, value = "purple") %>% set_background_color(row = evens, col = everywhere, value = "grey85") %>% set_background_color(odds, everywhere, "grey93") %>% set_markdown_contents(1, 1, "*Type* of jam") %>% * set_markdown_contents(1, 2, "*Price* of jam") ``` ] .panel2-the_chunk-auto[
Type
of jam
Price
of jam
Strawberry
1.9
Raspberry
2.1
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% set_text_color(row = 2:3, col = 1, value = "purple") %>% set_background_color(row = evens, col = everywhere, value = "grey85") %>% set_background_color(odds, everywhere, "grey93") %>% set_markdown_contents(1, 1, "*Type* of jam") %>% set_markdown_contents(1, 2, "*Price* of jam") %>% * set_markdown_contents(3, 2, "~~2.10~~ **Sale!** 1.50") ``` ] .panel2-the_chunk-auto[
Type
of jam
Price
of jam
Strawberry
1.9
Raspberry
2.1
Sale!
1.5
Plum
1.8
] --- count: false .panel1-the_chunk-auto[ ```r data.frame(Type = c("Strawberry", "Raspberry", "Plum"), Price = c(1.90, 2.10, 1.80)) %>% as_hux() %>% set_text_color(row = 2:3, col = 1, value = "purple") %>% set_background_color(row = evens, col = everywhere, value = "grey85") %>% set_background_color(odds, everywhere, "grey93") %>% set_markdown_contents(1, 1, "*Type* of jam") %>% set_markdown_contents(1, 2, "*Price* of jam") %>% set_markdown_contents(3, 2, "~~2.10~~ **Sale!** 1.50") %>% * set_right_border(everywhere, 1, brdr(3, "double", "grey")) ``` ] .panel2-the_chunk-auto[
Type
of jam
Price
of jam
Strawberry
1.9
Raspberry
2.1
Sale!
1.5
Plum
1.8
] <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>