Given student performance and other open source data, analyze and visualize it using charts and plots in Matplotlib. Create a student database table with attributes like ID, name, and marks, then perform operations like inserting, deleting, and selecting records. Write SQL queries to analyze customer data from a table, order records by marks, and find totals by country with group by.
Given student performance and other open source data, analyze and visualize it using charts and plots in Matplotlib. Create a student database table with attributes like ID, name, and marks, then perform operations like inserting, deleting, and selecting records. Write SQL queries to analyze customer data from a table, order records by marks, and find totals by country with group by.
1. Given the school result data, analyses the performance of
the students on different parameters, e.g subject wise or class wise. 2. For the Data frames created above, analyze, and plot appropriate charts with title and legend. 3.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 Data Management 1. Create a student table with the studentID, name, and marks as attributes where the student id is the primary key.
2. Insert the details of a new student in the above table
3. Delete the details of a student in the above table.
4. Use the select command to get the details of the students
with marks more than 80 5. Find the min, max, sum, and average of the marks in a student marks table. 6. Write a SQL query to order the (studentID, marks) table in descending order of the marks.
7. Find the total number of customers from each country
the table (customer ID, customer Name, country) using group by.