Lab 7
Lab 7
1. a) Compute the Z-score for following data points without using built-in function.
X= 10,20,30,5,50
b) Calculate the Z-score for the following data points using the built-in function of scipy.
2. a) Compute the Pearson correlation coefficient between two list without using built-in function.
b) Compute the Pearson correlation coefficient between two list by using built-in function.
c) Compute the Pearson correlation coefficient between two column mpg and weight of Auto_Weight_mpg
dataset.
d) Compute the correlation of column "Duration" against all other columns in Bio_data.csv dataset.
3. a) Normalize the following data points using Min-max normalization without using built in function.
b) Normalize each column of the Bio Data.csv dataset using Min-Max normalization.