count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "iso") ``` ] .panel2-the_chunk-replace[
holiday
2015-01-15
2015-02-15
2015-03-15
2015-04-15
2015-05-15
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "wday_month_day_year") ``` ] .panel2-the_chunk-replace[
holiday
Thursday, January 15, 2015
Sunday, February 15, 2015
Sunday, March 15, 2015
Wednesday, April 15, 2015
Friday, May 15, 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "wd_m_day_year") ``` ] .panel2-the_chunk-replace[
holiday
Thu, Jan 15, 2015
Sun, Feb 15, 2015
Sun, Mar 15, 2015
Wed, Apr 15, 2015
Fri, May 15, 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "wday_day_month_year") ``` ] .panel2-the_chunk-replace[
holiday
Thursday 15 January 2015
Sunday 15 February 2015
Sunday 15 March 2015
Wednesday 15 April 2015
Friday 15 May 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "month_day_year") ``` ] .panel2-the_chunk-replace[
holiday
January 15, 2015
February 15, 2015
March 15, 2015
April 15, 2015
May 15, 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "m_day_year") ``` ] .panel2-the_chunk-replace[
holiday
Jan 15, 2015
Feb 15, 2015
Mar 15, 2015
Apr 15, 2015
May 15, 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "day_m_year") ``` ] .panel2-the_chunk-replace[
holiday
15 Jan 2015
15 Feb 2015
15 Mar 2015
15 Apr 2015
15 May 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "day_month_year") ``` ] .panel2-the_chunk-replace[
holiday
15 January 2015
15 February 2015
15 March 2015
15 April 2015
15 May 2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "day_month") ``` ] .panel2-the_chunk-replace[
holiday
15 January
15 February
15 March
15 April
15 May
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "year") ``` ] .panel2-the_chunk-replace[
holiday
2015
2015
2015
2015
2015
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "month") ``` ] .panel2-the_chunk-replace[
holiday
January
February
March
April
May
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "day") ``` ] .panel2-the_chunk-replace[
holiday
15
15
15
15
15
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "year.mn.day") ``` ] .panel2-the_chunk-replace[
holiday
2015/01/15
2015/02/15
2015/03/15
2015/04/15
2015/05/15
] --- count: false .panel1-the_chunk-replace[ ```r library(gt) example %>% .[1:5, 4] %>% gt() %>% fmt_date(columns = vars(holiday), * date_style = "y.mn.day") ``` ] .panel2-the_chunk-replace[
holiday
15/01/15
15/02/15
15/03/15
15/04/15
15/05/15
] <style> .panel1-the_chunk-replace { color: black; width: 65.3333333333333%; hight: 32%; float: left; padding-left: 1%; font-size: 80% } .panel2-the_chunk-replace { color: black; width: 32.6666666666667%; 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: 90%} @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>