IT Project Pandas Matplotlib SQL
IT Project Pandas Matplotlib SQL
Project Overview
The aim of this project is to develop a small IT application to solve a real-world problem by utilizing
data handling, visualization, and database management skills. I chose to analyze and visualize
import pandas as pd
import numpy as np
series_dict = pd.Series(data_dict)
series_array = pd.Series(data_array)
threshold = series.quantile(0.75)
sales_data = {
sales_df = pd.DataFrame(sales_data)
total_expenditure = sales_df.groupby('Category').sum()
exam_data = {
exam_df = pd.DataFrame(exam_data)
row_labels = exam_df.index
column_labels = exam_df.columns
data_types = exam_df.dtypes
dimensions = exam_df.shape
filtered_df = exam_df.drop_duplicates()
1.6 Importing and Exporting Data between Pandas and CSV File
exam_df.to_csv('exam_data.csv', index=False)
loaded_df = pd.read_csv('exam_data.csv')
plt.xlabel('Subjects')
plt.ylabel('Scores')
plt.title('Student Performance')
plt.show()
categories = total_expenditure.index
expenditures = total_expenditure['Expenditure']
plt.title('Expenditure by Category')
plt.show()
3.1 Create a Student Table with Student ID, Name, and Marks
name VARCHAR(50),
marks INT
);
INSERT INTO Students (student_id, name, marks) VALUES (1, 'Alice', 85);
Conclusion
In this project, I applied my knowledge of data handling, visualization, and database management to
analyze and visualize data meaningfully. This project demonstrates the practical application of