23HCS4142 PDF
23HCS4142 PDF
PRACTICAL FILE
OF
PRACTICAL FILE
Q1. Write programs in Python using NumPy library to do the following:
a) Create a two-dimensional array, ARR1 having random values from 0 to 1. Compute the
mean, standard deviation, and variance of ARR1 along the second axis.
COMPUTER SCIENCE 3
b) Create a 2-dimensional array of size m x n integer elements, also print the shape, type and
data type of the array and then reshape it into an n x m array, where n and m are user
inputs given at the run time.
c) Test whether the elements of a given 1D array are zero, non-zero and NaN. Record the
indices of these elements in three separate arrays.
COMPUTER SCIENCE 4
d) Create three random arrays of the same size: Array1, Array2 and Array3. Subtract Array
2 from Array3 and store in Array4. Create another array Array5 having two times the
values in Array1. Find Covariance and Correlation of Array1 with Array4 and Array5
respectively.
e) Create two random arrays of the same size 10: Array1, and Array2. Find the sum of the
first half of both the arrays and product of the second half of both the arrays.
COMPUTER SCIENCE 5
f) Create an array with random values. Determine the size of the memory occupied by the
array.
g) Create a 2-dimensional array of size m x n having integer elements in the range (10,100).
Write statements to swap any two rows, reverse a specified column and store updated
array in another variable
Output
COMPUTER SCIENCE 6
a. Create a series with 5 elements. Display the series sorted on index and also sorted on
values separately
b. Create a series with N elements with some duplicate values. Find the minimum and
maximum ranks assigned to the values using ‘first’ and ‘max’ methods
COMPUTER SCIENCE 7
c. Display the index value of the minimum and maximum element of a Series
Q3. Create a data frame having at least 3 columns and 50 rows to store numeric dat
generated using a random function. Replace 10% of the values by null values whose
index positions are generated using random function.
Do the following:
COMPUTER SCIENCE 8
c. Identify the row label having maximum of the sum of all values in a row and drop that
row.
COMPUTER SCIENCE 9
f. Find the correlation between first and second column and covariance between second and
third column.
Q4. Consider two excel files having attendance of two workshops, each of duration 5 days.
Each file has three fields ‘Name’, ‘Date, duration (in minutes) where names may be
repetitive within a file. Note that duration may take one of three values (30, 40, 50) only.
Import the data into two data frames and do the following:
a. Perform merging of the two data frames to find the names of students who had attended
both workshops.
b. Find names of all students who have attended a single workshop only.
COMPUTER SCIENCE 11
c. Merge two data frames row-wise and find the total number of records in the data frame.
d. Merge two data frames row-wise and use two columns viz. names and dates as multi-row
indexes. Generate descriptive statistics for this hierarchical data frame.
COMPUTER SCIENCE 12
Q5. Using Iris data, plot the following with proper legend and axis labels: (Download IRIS
data from: https://archive.ics.uci.edu/ml/datasets/iris or import it from sklearn datasets)
a. Load data into pandas’ data frame. Use pandas.info () method to look at the info on
datatypes in the dataset.
b. Find the number of missing values in each column (Check number of null values in a
column using df.isnull().sum())
COMPUTER SCIENCE 13
c. Plot bar chart to show the frequency of each class label in the data.
Output
COMPUTER SCIENCE 14
d. Draw a scatter plot for Petal Length vs Sepal Length and fit a regression line
Output
Output
f. Use a pair plot to show pairwise bivariate distribution in the Iris Dataset.
Output
COMPUTER SCIENCE 16
Output
h. Compute mean, mode, median, standard deviation, confidence interval and standard error
for each numeric feature
COMPUTER SCIENCE 18
Output
i. Compute correlation coefficients between each pair of features and plot heatmap
Output
COMPUTER SCIENCE 19
Q6. Consider the following data frame containing a family name, gender of the family
member and her/his monthly income in each record.
a. Clean the data by dropping the column which has the largest number of missing values.
Output
COMPUTER SCIENCE 20
Output
f. Draw a scatter plot for passenger fare paid by Female and Male passengers separately
COMPUTER SCIENCE 21
Output
Output
h. Draw the pie chart for three groups labelled as class 1, class 2, class 3 respectively
displayed in different colors. The occurrence of each group converted into percentage
should be displayed in the pie chart. Appropriately Label the chart.
COMPUTER SCIENCE 23
Output
i. Find % of survived passengers for each class and answer the question “Did class play a
role in survival?”
Q7. Consider the following data frame containing a family name, gender of the family
member and her/his monthly income in each record.
Output