| sfc_is_compatible,sfc_sequence,sfc_sequence-method | R Documentation |
Whether two sfc_sequence objects are compatible
## S4 method for signature 'sfc_sequence,sfc_sequence'
sfc_is_compatible(p1, p2, strict = TRUE)
## S4 method for signature 'sfc_sequence,sfc_rules'
sfc_is_compatible(p1, p2)
## S4 method for signature 'sfc_rules,sfc_sequence'
sfc_is_compatible(p1, p2)
p1 |
An |
p2 |
An |
strict |
|
The function compares whether the two universe base pattern sets are identical.
If strict is TRUE, the order of the two universe sets should also be the same.
If strict is FALSE, the universe set of p2 can be a subset of the universe set of p1.
A logical scalar.
p1 = sfc_2x2("I")
p2 = sfc_2x2("R")
sfc_is_compatible(p1, p2)
p1 = sfc_2x2("I")
p2 = sfc_sequence("R")
sfc_is_compatible(p1, p2)
sfc_is_compatible(p1, p2, strict = FALSE)
p1 = sfc_sequence("ABC")
p2 = sfc_sequence("DEF")
sfc_is_compatible(p1, p2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.