import pandas as pd customer_detail=pd.read_csv("customer_details.csv")customer_policy=pd.read_csv("customer_policy_details.csv")customer_detail.columns=["customer_id","Gender","Age","Driving License Present","Region Code","Previously Insured","Vehicle Age", "Vehicle Damage"]customer_policy.columns=["customer_id","Annual…
Saurabh Srivastava
updated on 12 Sep 2022
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Saurabh Srivastava (10)
Project 2 - Supply and Demand Gap Analysis
Aim: The objective is to identify and analyze the problems in Supply-Demand of Uber trips from City to Airport and vice-versa across various hours of the day and find out possible solutions to address the problem. Problem Statement: Uber is an app-based transportation network and taxi company. In its Airport rides in a…
26 Mar 2023 03:05 PM IST
Project 1 - COVID-19 Vaccinations Trend Analysis
Project 1 COVID-19 Vaccinations Trend Analysis Power Bi Saurabh Srivastava The Detailed Documentation of the Project should contain. Aim: - This project aims to analyse data in detail on vaccinated people and fully vaccinated by year and country. Introduction: - The main objective of this project is to…
26 Mar 2023 05:47 AM IST
Project 2 - Gender Bias in Science and Technical field
Project Link - https://public.tableau.com/views/LITERACYRATEINTAMILNADU/Lite_racyrateDashboard?:language=en-US&publish=yes&:display_count=n&:origin=viz_share_link
16 Jan 2023 03:40 AM IST
Project 1 - Analyzing the Education trends in Tamilnadu
Project link - https://public.tableau.com/views/WomeninSTEM_16732034625170/Dashboard1?:language=en-US&:display_count=n&:origin=viz_share_link
08 Jan 2023 06:59 PM IST
Project 2 - Create a report using PowerQuery, Macro VBA, List Functions and Data Validation functions for Data Reporting of Supply Chain Management companies
PROJECT LINK - https://drive.google.com/drive/folders/1513SMxBj0xNSejCMWm0REczjwQkju7gR?usp=share_link
30 Dec 2022 06:19 PM IST
Project 1 - Data Cleaning and Transformation using Pivot table and Charts for the Report on requirement of Team Hiring
a. Do proper formatting of the data with using borders, font size and appropriate alignment of the content. b. Make summary of Products Sales by providing Make worksheet from the given Data for categorical representation of table based on fields Status, ProductLine and Sales using Pivot Table. Make Customized Ribbon…
15 Dec 2022 02:11 PM IST
Project 2
#Question1 CREATE DATABASE alumni ;USE alumni ; #Question3DESC college_a_hs;DESC college_a_se;DESC college_a_sj;DESC college_b_hs;DESC college_b_se;DESC college_b_sj; #Question4 --Respective Python File is attached import mysql.connector testdb=mysql.connector.connect(host="localhost",user='root',password='Saurabh@123',database='alumni')testcursor=testdb.cursor()testcursor.execute("SELECT…
04 Nov 2022 04:01 PM IST
Project 1
#Project 1#Create new schema as ecommerceCREATE DATABASE ecommerce ; #Run SQL command to see the structure of tableUSE ecommerce;DESC users_data; #Run SQL command to select first 100 rows of the databaseSELECT * FROM users_data LIMIT 100; #How many distinct values exist in table for field country and languageSELECT COUNT(DISTINCT…
05 Oct 2022 06:33 AM IST
Project 2 - EDA on Vehicle Insurance Customer Data
import pandas as pd customer_detail=pd.read_csv("customer_details.csv")customer_policy=pd.read_csv("customer_policy_details.csv")customer_detail.columns=["customer_id","Gender","Age","Driving License Present","Region Code","Previously Insured","Vehicle Age", "Vehicle Damage"]customer_policy.columns=["customer_id","Annual…
12 Sep 2022 05:01 PM IST
Project 1 - English Dictionary App & Library Book Management System
#ENGLISH DICTIONARY APP import json print("Welcome to the Dictionary App")print("1) Add a Word")print('2) Find a Meaning')print("3) Update the Word")print("4) Exit") f=open("words.txt","w")d={}json.dump(d,f)f.close()while True: choice=int(input("Enter Your Choice")) if choice==1: f=open("words.txt","w") word=input("Enter…
11 Sep 2022 02:54 PM IST