MVN

nz.ac.waikato.cms.weka : hotSpot

Maven & Gradle

Aug 10, 2021

hotSpot · HotSpot learns a set of rules (displayed in a tree-like structure) that maximize/minimize a target variable/value of interest. With a nominal target, one might want to look for segments of the data where there is a high probability of a minority value occuring (given the constraint of a minimum support). For a numeric target, one might be interested in finding segments where this is higher on average than in the whole data set. For example, in a health insurance scenario, find which health insurance groups are at the highest risk (have the highest claim ratio), or, which groups have the highest average insurance payout.

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

Latest Version

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

  • Latest Stable: 1.0.14

All Versions

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

Version Vulnerabilities Updated
1.0.x
hotSpot-1.0.14
hotSpot-1.0.13
hotSpot-1.0.12
hotSpot-1.0.11
hotSpot-1.0.10
hotSpot-1.0.9
hotSpot-1.0.8
hotSpot-1.0.7
hotSpot-1.0.6
hotSpot-1.0.3
hotSpot-1.0.2

How to add a dependency to Maven

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

<dependency>
    <groupId>nz.ac.waikato.cms.weka</groupId>
    <artifactId>hotSpot</artifactId>
    <version>1.0.14</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'nz.ac.waikato.cms.weka:hotSpot:1.0.14'

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

implementation("nz.ac.waikato.cms.weka:hotSpot:1.0.14")

How to add a dependency to SBT Scala

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

libraryDependencies += "nz.ac.waikato.cms.weka" % "hotSpot" % "1.0.14"

Advertisement