wk_handle_slice.data.frame | R Documentation |
Handle specific regions of objects
## S3 method for class 'data.frame'
wk_handle_slice(handleable, handler, from = NULL, to = NULL, ...)
wk_handle_slice(
handleable,
handler = wk_writer(handleable),
from = NULL,
to = NULL,
...
)
## Default S3 method:
wk_handle_slice(
handleable,
handler = wk_writer(handleable),
from = NULL,
to = NULL,
...
)
handleable |
A geometry vector (e.g., |
handler |
A wk_handler object. |
from |
1-based index of the feature to start from |
to |
1-based index of the feature to end at |
... |
Passed to the |
A subset of handleable
wk_handle_slice(xy(1:5, 1:5), wkt_writer(), from = 3, to = 5)
wk_handle_slice(
data.frame(let = letters[1:5], geom = xy(1:5, 1:5)),
wkt_writer(),
from = 3, to = 5
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.