0% found this document useful (0 votes)
4 views10 pages

Fds Univ Labqp

The document outlines a series of programming exercises using NumPy and Pandas, focusing on data manipulation and analysis techniques. It includes tasks such as creating arrays, performing statistical analyses on the diabetes dataset, and generating various plots. Additionally, it emphasizes the importance of both univariate and bivariate analysis in data science.

Uploaded by

nandhinim.cse
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views10 pages

Fds Univ Labqp

The document outlines a series of programming exercises using NumPy and Pandas, focusing on data manipulation and analysis techniques. It includes tasks such as creating arrays, performing statistical analyses on the diabetes dataset, and generating various plots. Additionally, it emphasizes the importance of both univariate and bivariate analysis in data science.

Uploaded by

nandhinim.cse
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

1. a.

Write a NumPy program to create a null vector of size 10 and update sixth value to 11
b. Write a NumPy program to convert an array to a float type
c. Write a NumPy program to create a 3x3 matrix with values ranging from 2 to 10
d. Write a NumPy program to convert a list of numeric value into a one-dimensional
NumPy array

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. a. Write a NumPy program to convert an array to a float type


b. Write a NumPy program to create an empty and a full array
c. Write a NumPy program to convert a list and tuple into arrays
d. Write a NumPy program to find the real and imaginary parts of an array of complex
numbers

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER


1. . Write a Pandas program to get the powers of an array values element-wise.
Note: First array elements raised to powers from second array
Sample data: {'X':[78,85,96,80,86], 'Y':[84,94,89,83,86],'Z':[86,97,96,72,83]}
Expected Output:
XYZ
0 78 84 86
1 85 94 97
2 96 89 96
3 80 83 72
4 86 86 83

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Use the diabetes data set from Pima Indians Diabetes data set for performing the
following:
Apply Univariate analysis:
• Frequency
• Mean,
• Median,
• Mode,
• Variance
• Standard Deviation
• Skewness and Kurtosis

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)
INTERNAL EXAMINER EXTERNAL EXAMINER

1.Reading data from text files, Excel and the web and exploring various commands for doing
descriptive analytics on the Iris data set

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Use the diabetes data set from Pima Indians Diabetes data set for performing the following:
Apply Bivariate analysis:
• Linear and logistic regression modeling

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Use the diabetes data set from Pima Indians Diabetes data set for performing the
following:
Apply Bivariate analysis:
• Multiple Regression analysis

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)
INTERNAL EXAMINER EXTERNAL EXAMINER

1. Apply and explore various plotting functions on Pima Indians Diabetes data set for
performing the following:
a) Normal values
b) Density and contour plots
c) Three-dimensional plotting

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. Apply and explore various plotting functions on Pima Indians Diabetes data set for
performing the following:
a) Correlation and scatter plots
b) Histograms
c) Three-dimensional plotting

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER


1. Apply and explore various plotting functions on UCI data set for performing the following:
a) Correlation and scatter plots
b) Histograms
c) Three-dimensional plotting

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. Apply and explore various plotting functions on UCI data set for performing the following:
a) Normal values
b) Density and contour plots
c) Three-dimensional plotting

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.a. Write a NumPy program to convert an array to a float type


b. Write a NumPy program to add a border (filled with 0's) around an existing array
c. Write a NumPy program to convert a list and tuple into arrays
d. Write a NumPy program to append values to the end of an array

Aim/Principle/ Tabulation/ Calculatio Viva Recor Tota


Apparatus Circuit/ n& - d l
required/Procedure Program/Drawing Results Voce (10) (100)
(20) (30) (30) (10)

INTERNAL EXAMINER EXTERNAL EXAMINER


1. a. Write a NumPy program to convert an array to a float type
b. Write a NumPy program to create an empty and a full array
c. Write a NumPy program to convert a list and tuple into arrays
d. Write a NumPy program to find the real and imaginary parts of an array of complex numbers

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. Use the diabetes data set from UCI data set for performing the following:

Apply Univariate analysis:


• Frequency
• Mean,
• Median,
• Mode,
• Variance
• Standard Deviation
• Skewness and Kurtosis

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Use the diabetes data set from UCI data set for performing the following:
Apply Bivariate analysis:
• Linear and logistic regression modeling

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. Apply and explore various plotting functions on Pima Indians Diabetes data set for performing the
following:
a) Normal values
b) Density and contour plots
c) Three-dimensional plotting

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. Apply and explore various plotting functions on Pima Indians Diabetes data set for performing the
following:
a) Correlation and scatter plots
b) Histograms
c) Three-dimensional plotting

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER


1.. i. Write a NumPy program to convert a list and tuple into arrays
ii. Write a NumPy program to convert the values of Centigrade degrees into Fahrenheit
degrees and vice versa. Values have to be stored into a NumPy array.

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1. i. Write a NumPy program to find the real and imaginary parts of an array of complex
numbers
ii. Write a NumPy program to convert a NumPy array into a csv file

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Using Pandas library,


i.Load the iris.CSV file
ii.Convert it into the data frame and read it.
iii.Display records only with species "Iris-setosa".

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Use the diabetes data set from UCI, Perform Univariate analysis

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Use the diabetes data set from Pima Indians Diabetes , Perform Bivariate analysis

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

1.Apply and explore various plotting functions on UCI data sets

Aim/Principle/Apparatus Tabulation/ Calculation Viva- Record Total


required/Procedure Circuit/ & Results Voce (10) (100)
(20) Program/Drawing (30) (10)
(30)

INTERNAL EXAMINER EXTERNAL EXAMINER

You might also like