#Draw a circle
#
#Wrapper for plotrix::draw.circle
#
Column binding of new columns, replacement of existing ones
1 | cbind_replace(x, y)
|
1 2 3 4 5 6 7 8 | a <- data.frame(a="a1")
ab <- data.frame(a="a2", b="b1")
c <- data.frame(c="c1")
bc <- data.frame(b="b2", c="c2")
cbind_replace(a, c)
cbind_replace(a, ab)
cbind_replace(ab, bc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.