MVN

nz.ac.waikato.cms.weka : denormalize

Maven & Gradle

Apr 29, 2014

denormalize · An instance filter that collapses instances with a common grouping ID value into a single instance. Useful for converting transactional data into a format that Weka's association rule learners can handle. IMPORTANT: assumes that the incoming batch of instances has been sorted on the grouping attribute. The values of nominal attributes are converted to indicator attributes. These can be either binary (with f and t values) or unary with missing values used to indicate absence. The later is Weka's old market basket format, which is useful for Apriori. Numeric attributes can be aggregated within groups by computing the average, sum, minimum or maximum.

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

Latest Version

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

  • Latest Stable: 1.0.3

All Versions

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

Version Vulnerabilities Updated
1.0.x
denormalize-1.0.3
denormalize-1.0.2
denormalize-1.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>denormalize</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:denormalize:1.0.3'

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

implementation("nz.ac.waikato.cms.weka:denormalize:1.0.3")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "denormalize" % "1.0.3"