MVN

nz.ac.waikato.cms.weka : localOutlierFactor

Maven & Gradle

Jul 23, 2013

localOutlierFactor · A filter that applies the LOF (Local Outlier Factor) algorithm to compute an outlier score for each instance in the data. Can use multiple cores/cpus to speed up the LOF computation for large datasets. Nearest neighbor search methods and distance functions are pluggable. For more information, see: Markus M. Breunig, Hans-Peter Kriegel, Raymond T. Ng, Jorg Sander (2000). LOF: Identifying Density-Based Local Outliers. ACM SIGMOD Record. 29(2):93-104.

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>localOutlierFactor</artifactId>
    <version>1.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of nz.ac.waikato.cms.weka : localOutlierFactor to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.4

All Versions

Choose a version of nz.ac.waikato.cms.weka : localOutlierFactor to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
localOutlierFactor-1.0.4
localOutlierFactor-1.0.3
localOutlierFactor-1.0.2
localOutlierFactor-1.0.1

How to add a dependency to Maven

Add the following nz.ac.waikato.cms.weka : localOutlierFactor maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>localOutlierFactor</artifactId>
    <version>1.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following nz.ac.waikato.cms.weka : localOutlierFactor gradle dependency to your build.gradle file:

implementation 'nz.ac.waikato.cms.weka:localOutlierFactor:1.0.4'

Gradle Kotlin DSL: Add the following nz.ac.waikato.cms.weka : localOutlierFactor gradle kotlin dependency to your build.gradle.kts file:

implementation("nz.ac.waikato.cms.weka:localOutlierFactor:1.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following nz.ac.waikato.cms.weka : localOutlierFactor sbt scala dependency to your build.sbt file:

libraryDependencies += "nz.ac.waikato.cms.weka" % "localOutlierFactor" % "1.0.4"

Advertisement