[.sfc_sequence | R Documentation |
Utility functions
## S3 method for class 'sfc_sequence'
x[i]
## S3 replacement method for class 'sfc_sequence'
x[i] <- value
## S3 method for class 'sfc_sequence'
length(x)
## S3 method for class 'sfc_sequence'
c(...)
x |
An |
i |
Numeric index. |
value |
An |
... |
A list of |
For efficiency, c.sfc_sequence()
does not check whether the input sfc_sequence
objects are compatible.
length.sfc_sequence()
returns an integer scalar.
c.sfc_sequence()
returns an sfc_sequence
object.
p = sfc_sequence("ABCDEFGH")
p
p[1:4]
p[1:4] = p[8:5]
p
length(p)
c(p, p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.