PRACTICAL NO.
Aim:- Introduction to various Data Visualisation
tools and Basic Visualisation in Python.
Program 1:-
Program 2:-
PRACTICAL NO. 2
Aim:- Calculate Mean Median Mode for some Given
Data.
Program 1:-
Program 2:-
Program 3:-
Take input from the User to find mean , median and mode.
PRACTICAL NO. 3
Aim:- Implement Apriori Algorithm
Program :-
Output:-
PRACTICAL NO. 4
Aim:- Perform and Demonstrate Regression Model
Program 1:-
Output:-
Program 2:-
Output:-
PRACTICAL NO. 5
Aim:- Demonstration of Data Normalization
Techniques.
Program 1:-
Output:-
Program 2:-
Output:-
PRACTICAL NO. 6
Aim:- : Perform Smoothing of Data using Different
Binning Methods.
Program 1:-
Output:-
Program 2:-
Given a dataset, smooth the data using different binning methods
(equal frequency binning with mean and median smoothing).
Output:-
Bins: [[4, 8, 15], [16, 23, 42], [50, 60, 72, 85]]
Mean Smoothing: [9.0, 9.0, 9.0, 27.0, 27.0, 27.0, 66.75, 66.75,
66.75, 66.75]
Median Smoothing: [np.float64(8.0), np.float64(8.0),
np.float64(8.0), np.float64(23.0), np.float64(23.0),
np.float64(23.0), np.float64(66.0), np.float64(66.0),
np.float64(66.0), np.float64(66.0)]
Program 3:-
Equal Width Binning with Mean and Median Smoothing
Output:-
Equal Width Bins: [[4, 8, 15, 16, 23], [42, 50], [60, 72, 85]]
Mean Smoothing: [13.2, 13.2, 13.2, 13.2, 13.2, 46.0, 46.0,
72.33333333333333, 72.33333333333333, 72.33333333333333]
Median Smoothing: [np.float64(15.0), np.float64(15.0),
np.float64(15.0), np.float64(15.0), np.float64(15.0),
np.float64(46.0), np.float64(46.0), np.float64(72.0),
np.float64(72.0), np.float64(72.0)]
PRACTICAL NO. 7
Aim:- To launch Weka Tool and To classify
[Link] dataset using user training set.
Steps:-
1) Launching WEKA Explorer
2) ‘WEKA Explorer’ window appears on a screen
3) Preprocessing Data
4) Loading data
Output: