Data Engineering Lab: List of Programs
Data Engineering Lab: List of Programs
Data Engineering Lab: List of Programs
List of Programs:
1. Creating Star Schema/snowflake Schema / Fact constellation Schema using any tool
3. Compute all the cuboids of 4D cube using Rollup and Cube operators of oracle SQL.
5. Write high level language programs to implement different data preprocessing techniques.
a. Suppose that the data for analysis includes the attribute age. The age values for the data
tuples are (in increasing order) 13, 15, 16, 16, 19, 20, 20, 21, 22, 22, 25, 25, 25, 25, 30,
33, 33, 35, 35, 35, 35, 36, 40, 45, 46, 52, 70. Write a C program to implement smoothing
by bin means to smooth the data, using a bin depth of 3.
b. Write a C program to calculate the correlation coefficient. Use the following data to check
your code.
Suppose a hospital tested the age and body fat data for 18 randomly selected adults with
the following result:
Suppose that the data for analysis includes the attribute age. The age values for the data tuples are
(in increasing order)
13, 15, 16, 16, 19, 20, 20, 21, 22, 22, 25, 25, 25, 25, 30, 33, 33, 35, 35, 35, 36, 40, 45, 52, 70.
9. Estimate the values of numeric attributes, through prediction, using a data mining tool.
10. Mine strong association rules out of a given data set using a mining tool.
11. Cluster the given set of data objects by applying various clustering techniques using a data
mining tool.
12. Write high level language programs to implement Association rule mining/ classification
techniques.