library(dplyr)
library(ggplot2)
library(grcdr)
set.seed(101)
df1 = data.frame(x1 = rnorm(100), x2 = rnorm(100))
df1$x3 = with(df1, x1**2 + abs(x2))
df1$x4 = 100 * df1$x1 ** 2
df1 %>% ggplot(aes(x=x1, y=x2, x3=x3, x4=x4)) + geom_tailscatter()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.