Description Usage Arguments Details Value Examples
Limit or show a sample of a spark_tbl
1 2 3 4 5 6 |
.data |
a |
n |
numeric, the number of rows to collect |
x |
a |
... |
other arguments passed, currently unused |
limit
and head
just gets the top n
rows
of the spark_tbl
but does not collect
. take
does
a limit
and then collect
s. show
displays
the result of take
, but invisbly returns a spark_tbl
.
a spark_tbl
1 2 3 4 5 6 7 8 9 10 11 12 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.