Power BI: I have used Power BI to analyze and visualize the COVID-19 vaccination data. I imported the data into Power BI, handled duplicates and null values using Power Query, and used various visualization options to represent the data in an easy-to-understand format. Presentation Slides: I have created presentation…
Neelam venkata sai krishna
updated on 23 Apr 2023
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 Neelam venkata sai krishna (10)
Project 2 - Supply and Demand Gap Analysis
Aim The aim of this presentation is to demonstrate the insights and findings obtained from analyzing the Super Mart sales data using Power BI. By exploring various charts and visualizations, we aim to provide a comprehensive understanding of the sales performance by category and subcategory, sales trends by region and…
30 Apr 2023 11:49 PM IST
Project 1 - COVID-19 Vaccinations Trend Analysis
Power BI: I have used Power BI to analyze and visualize the COVID-19 vaccination data. I imported the data into Power BI, handled duplicates and null values using Power Query, and used various visualization options to represent the data in an easy-to-understand format. Presentation Slides: I have created presentation…
23 Apr 2023 01:03 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
13 Dec 2022 06:46 AM 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 Total Sum of Sales Average of Sales Standard Deviation of Sales Variance of Sales Maximum Sales Minimum Sales c. Make worksheet from the given Data for categorical representation…
15 Nov 2022 07:06 AM IST
Project 2 - Gender Bias in Science and Technical field
24 Oct 2022 05:00 AM IST
Project 1 - Analyzing the Education trends in Tamilnadu
23 Oct 2022 06:57 AM IST
Project 2
# 1.Create new schema as alumniCREATE DATABASE alumni;# 2.Import all .csv files into MySQLUSE alumni;# 3. Run SQL command to see the structure of six tablesDESC college_a_hs;DESC college_a_se;DESC college_a_sj;DESC college_b_hs;DESC college_b_se;DESC college_b_sj;select * from college_a_hs;# 4. Display first…
26 Sep 2022 08:18 AM IST
Project 1
Business model Customer to Customer -- 1. Create new schema as ecommerceCREATE DATABASE ecommerce;-- 2.Import .csv file users_data into MySQLuse ecommerce;-- 3.Run SQL command to see the structure of tableDESC users_data;-- 4.Run SQL command to select first 100 rows of the databaseSELECT *FROM users_dataLIMIT 100;--…
10 Sep 2022 10:11 AM IST
Project 2 - EDA on Vehicle Insurance Customer Data
Done with the project2 ##STEP 1: Reading Dataimport pandas table1 = pandas.read_csv("customer_details.csv")table2 = pandas.read_csv("customer_policy_details.csv")print(table1.head())print('*'*100)print(table2.head()) ##STEP 2: Checking and Cleaning the data table1_labels={'0':'customer_id', '1':'gender', '2':'age',…
28 Aug 2022 09:13 PM IST
Project 1 - English Dictionary App & Library Book Management System
project 1 is done ## ENGLISH DICTINORY APP import osimport json def saveDictionary(tmp_dict):try:with open('word.txt','w') as dictionary:json.dump(tmp_dict,dictionary)print('Successfully entered')except Exception as e:print(f"ERROR:{e}") def getDictionary():try:with open('word.txt','r') as dictionary:tmp_dict=json.load(dictionary)print('Successfully…
28 Aug 2022 09:12 PM IST