Learn R Programming

seriation (version 1.3.4)

register_optics: Register Seriation Based on OPTICS

Description

Use ordering points to identify the clustering structure (OPTICS) for seriate().

Usage

register_optics()

Arguments

Value

Nothing.

Details

Registers the method "optics" for seriate(). This method applies the OPTICS ordering algorithm to create an ordering.

Note: Package dbscan needs to be installed.

References

Mihael Ankerst, Markus M. Breunig, Hans-Peter Kriegel, Joerg Sander (1999). OPTICS: Ordering Points To Identify the Clustering Structure. ACM SIGMOD international conference on Management of data. ACM Press. pp. 49-60. 10.1145/304181.304187

See Also

dbscan::optics() in dbscan.

Other seriation: register_DendSer(), register_GA(), register_tsne(), register_umap(), registry_seriate, seriate()

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
register_optics()
get_seriation_method("dist", "optics")

d <- dist(random.robinson(50, pre=TRUE, noise=.1))

o <- seriate(d, method = "optics")
pimage(d, o)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab