Ip Practical File
Ip Practical File
[065]
SESSION[2023-2024]
This is to certify that praveen Kumawat , Roll No. 05 of class 12th Session A
has prepared the Practical File as per the prescribed Practical Syllabus of
supervision. It is the original work done by him/her. His/ Her work is really
appreciable.
__________________ ________________
Signature of subject Signature of External
Teacher’s Examiner’s
_______________
Signature of
Principal’
Index
N PRACTICAL Sign
O
1 Create a panda’s series from a dictionary of values and a
ndarray
2 Given a Series, print all the elements that are above the
75th percentile.
3 Create a Data Frame quarterly sales where each row
contains the item category, item name, and expenditure.
Group the rows by the category and print the total
expenditure per category.
4 Create a data frame for examination result and display
row labels, column labels data types of each column and
the dimensions
5 Filter out rows based on different criteria such as
duplicate rows.
6 Importing and exporting data between pandas and CSV
file
7 Given the school result data, analyses the performance
of the students on different parameters, e.g subject wise
or class wise.
8 For the Data frames created above, analyze, and plot
appropriate charts with title and legend.
9 Take data of your interest from an open source (e.g.
data.gov.in), aggregate and summarize it. Then plot it
using different plotting functions of the Matplotlib
library.
10 Create a student table with the student id, name, and
marks as attributes where the student id is the primary
key.
11 2. Insert the details of a new student in the above table.
12 3. Delete the details of a student in the above table.
13 Use the select command to get the details of the students
with marks more than 80.
14 Find the min, max, sum, and average of the marks in a
student marks table.
15 Find the total number of customers from each country in
the table (customer ID, customer Name, country) using
group by.
16 Write a SQL query to order the (student ID, marks)
table in descending order of the marks.
17 Create following table ‘Doctor’ and write SQL
command to display female doctor names with
remainder of Consultation and experience of department
Medicine.
18 Consider table ‘Doctor’ of practical 8 and write SQL
command to display the average consultation charges of
all doctors having more than 5 year experience.
19 Consider table ‘Doctor’ of practical 8 and display
minimum consultation charge of male doctors.
20 Write SQL command to fetch four characters of doctor
name. (refer ‘Doctor’ table of Practical 8)
21 Use all text function of practical 8.
22 Use all math function of practical 8.
23 Use all date function.
24 Use all aggregate Functions of practical 8.
Acknowledgement
Praveen Kumawat
(12th A)
1:Create a panda’s series from a dictionary of values and a
ndarray?
OUTPUT:
2: Given a Series, print all the elements that are above the
75th percentile?
OUTPUT:
3: Create a Data Frame quarterly sales where each row
contains the item category, item name, and expenditure.
Group the rows by the category and print the total
expenditure per category?
Output:
4: Create a data frame for examination result and display row
labels, column labels data types of each column and the
dimensions?
Output:
5 Filter out rows based on different criteria such as
duplicate rows?
OUTPUT:
6: Importing and exporting data between pandas and CSV file ?
1. importing
CSV FILE:
OUTPUT:
2. Exporting
Output :
7: Given the school result data, analyses the performance of the
students on different parameters, e.g subject wise or class wise?
OUTPUT:
8: For the Data frames created above, analyze, and plot
appropriate charts with title and legend?
OUTPUT
9: Take data of your interest from an open source (e.g.
data.gov.in), aggregate and summarize it. Then plot it using
different plotting functions of the Matplotlib library?
OUTPUT
## MY SQL ##
10: Create a student table with the student id, name, and marks
as attributes where the student id is the primary key?
13: Use the select command to get the details of the students with
marks more than 80 ?
14: Find the min, max, sum, and average of the marks in a
student marks table ?
15: Find the total number of customers from each country in the
table (customer ID, customer Name, country) using group by ?