R Examples¶
To learn more about R, check out my open-access textbook Deep R Programming.
How to Install¶
To install the package from CRAN, call:
install.packages("quitefastmst")
For best performance, advanced users will benefit from compiling the package from sources:
Sys.setenv(CXX_DEFS="-O3 -march=native") # for gcc and clang
install.packages("quitefastmst", type="source")
Basic Use¶
Note
This section is a work in progress. In the meantime, take a look at the documentation of the mst_euclid and knn_euclid functions.