Entries by admin

Applying and evaluating the k-means data clustering algor…

A. Objective: Applying and evaluating the k-means data clustering algorithm, using the RapidMiner Data Mining tool on a given data set. B. Data Set One of the well-known datasets that is being referenced in data mining is the “Iris data set”. The data set contains five attributes. 1. Class Label: Type of Iris Plant ( […]

Arithmatic Operators

class Problem1{ public static void main( String[] args ){ int a=5, b=3, c; double x=2.2, y=1.3, z; c = fcn1(a, b); b = fcn2(x, y); z = fcn2(c, b); System.out.println(“a=”+a+”, b=”+b+”, c=”+c); System.out.println(“x=”+x+”, y=”+y+”, z=”+z); System.out.println(“bye!”); } static int fcn1(int i, int j){ int k = (i++) + (++j); return k+2; } static int fcn2(double […]

ARTIFICIAL INTELLIGENCE

How this DM method is conducted step by step? What are the special requirements of this method on data set? Which statistics are used for different type of data sets? In which application contexts, this DM method is used most frequently? What is the advantage of this method over other methods? What is the limitation […]