We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13
SBIOA PUBLIC SCHOOL
PROJECT FILE INFORMATION PRACTICES
YUVRAJ DHAWAN XII SCI ACKNOWLEDGEMENT
I want to express my deepest appreciation to those
individuals who played crucial roles in the successful completion of my project. First and foremost, I want to extend my sincere gratitude to my devoted Class Teacher, Mr , whose constant support and encouragement were incredibly valuable throughout the project. I also want to thank Principal Preeti Sharma for creating an environment that values academic exploration and for providing the necessary resources. DATA HANDLING
Q.1 Create a panda’s series from a dictionary of values and
a ndarray. Q.2 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. Q.3 Create a data frame for examination result and display row labels, column labels data types of each column and the dimensions. Q.4 Filter out rows based on different criteria such as duplicate rows. Q.5 Importing and exporting data between pandas and CSV file. VISUALIZATION Q.1 Given the school results data, analyse the performance of the students on different parameters, eg subject wise or class wise. Q.2 For the Data frames created above, analyse and plot apropriate charts with title and legends. Q.3 Take data of your interest from an open source (eg data.gov.in) aggregate and summarise it. Then plot it using different plotting function of the Matplotlib library. DATA MANAGEMENT Q.1 Create a table with the student ID, name, and marks as attributes where the student ID is the primary key.
Q.2 Insert the details of a new student in the above table.
Q.3 Delete the details of a student in the above table.
Q.4 Use the select command to get the details of the student with marks more than 80.
Q.5 Find the min, max, sum and average of the marks in the student table.
Q.6 Find the total no. of customers from each country in
the table(customer ID, customer name, country) using group by. Q.7 Write a SQL query to order the (student ID, marks) table in descending order of the marks