l_layer_expunge | R Documentation |
Delete a group layer and all it's descendants. Note that the
'model'
layer cannot be deleted.
l_layer_expunge(widget, layer)
widget |
widget path or layer object of class |
layer |
layer id. If the widget argument is of class |
0 if success otherwise the function throws an error
l_layer
, l_layer_delete
if(interactive()){
p <- l_plot()
g <- l_layer_group(p)
l1 <- l_layer_rectangle(p, x=0:1, y=0:1, parent=g, color="", linecolor="orange", linewidth=2)
l2 <- l_layer_line(p, x=c(0,.5,1), y=c(0,1,0), parent=g, color="blue")
l_layer_expunge(p, g)
# or l_layer_expunge(g)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.