The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Power Fuzzy Clustering (PFC) and Power Fuzzy Cluster-wise Regression
(PFCR) in R, with Minkowski distances (p = 1 via IRLS,
p > 1 via coordinate-wise root finding) and an adaptive,
regularised Mahalanobis distance.
# from a local clone
devtools::install("path/to/pfclust")library(pfclust)
# Clustering
res <- PFC(iris[, 1:4], K = 3)
table(res$l, iris[, 5])
# Cluster-wise regression
library(flexCWM)
data("students")
res <- PFCR(students[, 4], students[, 2:3], K = 2, distance = "Mahalanobis")
table(res$l, students[, 1])See inst/examples/demo.R for a full walkthrough.
The NAMESPACE and man/*.Rd files in this
repo were written to match what roxygen2 produces. To
regenerate them from the roxygen comments:
devtools::document()These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.