Nothing
Code
ctl_new_pillar(new_tbl(), 1:3, width = 20, title = "a")
Output
<pillar>
a
<int>
1
2
3
Code
ctl_new_pillar_list(new_tbl(), 1:3, width = 20, title = "a")
Output
[[1]]
<pillar>
a
<int>
1
2
3
attr(,"remaining_width")
[1] 14
attr(,"simple")
[1] TRUE
Code
ctl_new_pillar_list(new_tbl(), trees[1:3, ], width = 8, title = "a")
Output
[[1]]
<pillar>
a$Girth
<dbl>
8.3
8.6
8.8
attr(,"extra")
[1] "Height" "Volume"
attr(,"remaining_width")
[1] 0
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), trees[1:3, ], width = 20, title = "a")
Output
[[1]]
<pillar>
a$Girth
<dbl>
8.3
8.6
8.8
[[2]]
<pillar>
$Height
<dbl>
70
65
63
attr(,"extra")
[1] "Volume"
attr(,"remaining_width")
[1] 4
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), as.matrix(trees[1:3, ]), width = 8, title = "a")
Output
list()
attr(,"extra")
[1] 1 2 3
attr(,"remaining_width")
[1] 8
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), as.matrix(trees[1:3, ]), width = 20, title = "a")
Output
[[1]]
<pillar>
a[,"Girth"]
<dbl>
8.3
8.6
8.8
attr(,"extra")
[1] 2 3
attr(,"remaining_width")
[1] 8
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), matrix(1:6, ncol = 2), width = 8, title = "a")
Output
[[1]]
<pillar>
a[,1]
<int>
1
2
3
attr(,"extra")
[1] 2
attr(,"remaining_width")
[1] 2
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), matrix(1:6, ncol = 2), width = 20, title = "a")
Output
[[1]]
<pillar>
a[,1]
<int>
1
2
3
[[2]]
<pillar>
[,2]
<int>
4
5
6
attr(,"extra")
integer(0)
attr(,"remaining_width")
[1] 8
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), matrix(1:6, ncol = 3), width = 10, title = "a")
Output
[[1]]
<pillar>
a[,1]
<int>
1
2
attr(,"extra")
[1] 2 3
attr(,"remaining_width")
[1] 4
attr(,"simple")
[1] FALSE
Code
ctl_new_pillar_list(new_tbl(), Titanic, width = 20, title = "a")
Output
[[1]]
<pillar>
a
<table[,2,2,2]>
0 ...
0 ...
35 ...
0 ...
attr(,"remaining_width")
[1] 13
attr(,"simple")
[1] TRUE
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.