make_klink_circles | R Documentation |
This function generates k
interlocked circular clusters in a
p
-dimensional space. The circles are constructed using
gen_multicluster()
, with each circle positioned in a different
coordinate plane and slightly offset so that they interlock with a
central circle (hub-like structure).
make_klink_circles(n = c(200, 100), p = 4, k = 2, offset = 0.5)
n |
An integer vector of length |
p |
Integer, the dimensionality of the embedding space. Must be
at least 3. Default is |
k |
Integer, the number of circles to generate. Default is |
offset |
Numeric, the amount of positional shift applied to each
circle along the second coordinate axis to prevent complete overlap.
Default is |
A data frame (or tibble, depending on gen_multicluster()
)
containing the generated points and cluster assignments.
# Generate two interlocked circles in 4-D
twolink_circles <- make_klink_circles()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.