0% found this document useful (0 votes)
16 views

ip project file for class 12

this file helps

Uploaded by

dasodakushwaha2
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

ip project file for class 12

this file helps

Uploaded by

dasodakushwaha2
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 25

CERTIFICATE

This is to certify that Yash


Ramani, Utkrash Jaiswal,
student of class XII ‘C’ has
successfully completed the
research on
the project “Analysis of Covid-
19 impact on India using
Data
Visualisation ” under the
guidance of Mr. Arvind Kumar
Gogna during the year 2024-25.

Teacher’s signature
ACKNOWLEDGEMENT
We would like to express our special
thanks of gratitude to our teacher
Mr.Viay Kumar Dayma as well as our
principal Mr. who gave us the golden
opportunity to do this wonderful project
on the topic ‘Analysis of Covid-19
impact on India using Data
Visualisation’ which also helped us in
doing a lot of research and we came to
know about so many new things.
Secondly, we would also like to thank
our parents and friends who helped us a
lot in finishing this project within the
time limit.
ANALYSIS OF
COVID-19
IMPACT ON
INDIA WITH
DATA
VISUALISATIO
N
Index
Sno Topic Pg
. No.
1. What is COVID-19?

2. COVID-19 in India

3. Worst and Least affected states


from COVID-19 in India
4. Death in each age group due to
COVID-19
5. Death in males and females due
to COVID-19
6. COVID-19 test conducted by
different countries in the world
7. Conclusion and Reference
What is covid-19
Coronavirus disease 2019 (COVID-19) is
a contagious disease caused by the virus SARS-
COV-2 (Severe Acute Respiratory Syndrome
Coronavirus). The first known case was
identified in Wuhan, China in December
2019. The disease quickly spread worldwide,
resulting in the COVID-19 pandemic.

The symptoms of COVID-19 are variable but


often include fever, cough, headache, breathing
difficulties, loss of smell, taste, etc. COVID-19
transmits when infectious particles are
breathed in or come into contact with the eyes,
nose or mouth. Transmission also occurs when
people touch their eyes, nose or mouth after
touching contaminated surfaces or objects.

Several COVID-19 vaccines have been approved


and distributed in various countries, which
have initiated mass vaccination campaigns.
Other preventive measures include physical
and social distancing, quarantining,
ventilation of indoor spaces, use of face
masks and sanitizers in public, covering
coughs and sneezes, handwashing and keeping
unwashed hands away from the face.
Various new strains of Coronavirus were
discovered n various parts of the world. Some
of the major variants were: -
Alpha- United Kingdom
Beta- South Africa
Gamma- Brazil
Delta- India
Omicron- South Africa
COVID-19 IN INDIA
The first case of COVID-19 in India, which
originated from China, was reported on 30
January 2020 in three towns of Kerala, among
three Indian students who had returned from
Wuhan, the epicentre of the pandemic.
On 23 March, the prime minister ordered a
nationwide lockdown for 21 days, affecting the
lives of entire population of India. On 14 April,
it was extended till 3 May, which was followed
by two weeks extension. Later on, from 1 June
the government started ‘unlocking’ the country
(baring ‘contaminated zones’) in three
unlocking phases.
India began its vaccination programme on 16
January 2021 with AstraZeneca
vaccine (Covishield) and the
indigenous Covaxin. Later, Sputnik V and
the Moderna vaccine was approved for
emergency use too. On 30 January 2022, India
announced that it administered about 1.7
billion doses of vaccines and more than 720
million people were fully vaccinated.
According to Indian government figures, India
has the second-highest number of confirmed
cases in the world (after the United States of
America) with 44,999,588 reported cases of
COVID-19 infection and the third-highest
number of COVID-19 deaths (after the United
States and Brazil) at 532,037 deaths.
Worst affected states
from covid-19 in India
Some of the most affected states in India were
Maharashtra, Karnataka, Andhra Pradesh,
Tamil Nadu, Kerala. Given below is the graph
of COVID-19 statistics in India at a point of time

DATA FRAME

{C= CASES}
{R= Recovery}
{D=Death}

Program
import pandas as pd
import matplotlib.pyplot as plt
data={'STATES':['Maharashtra','Karnataka','Andhra
Pradesh','Tamil Nadu','Kerala'],
'CASES':[1913382,914488,880430,812142,732084],
'RECOVERIES':
[1806298,888917,869478,790965,664951],
"DEATHS":[49129,12044,7091,12048,2930]}
df=pd.DataFrame(data)
print(df)
plt.bar(df['STATES'],df['CASES'],label='CASES',color='gre
en')
plt.bar(df['STATES'],df['RECOVERIES'],label='RECOVERI
ES',color='orange')
plt.bar(df['STATES'],df['DEATHS'],label='DEATHS',color=
'blue')
plt.xlabel('STATES')
plt.ylabel('NUMBER')
plt.title('MOST AFFECTED STATES DUE TO COVID-19')
plt.legend()
plt.grid()
plt.show()

OUTPUT
Least affected states
from COVID-19 in India
Some of the least affected states in India were of
North eastern part like Mizoram, Sikkim,
Nagaland, Meghalaya and Arunachal Pradesh.
Below is the graph of COVID-19 statistics in
India at a point of time: -

Data Frame

Program
import pandas as pd
import matplotlib.pyplot as plt
data={'STATE':
['Mizoram','Sikkim','Nagaland','Meghalaya','Arunachal
Pradesh'],
'CASES': [4178,5684,11845,13396,16678],
'RECOVERIES': [4036,5142,11544,12940,16454],
"DEATH": [8,125,77,135,56]}
df=pd.DataFrame(data)
print(df)
plt.bar(df['STATE'],df['CASES'],label='CASES',color='red')
plt.bar(df['STATE'],df['RECOVERIES'],label='RECOVERIE
S',color='yellow')
plt.bar(df['STATE'],df['DEATH'],label='DEATH',color='bl
ue')
plt.legend()
plt.xlabel('STATES')
plt.ylabel('NUMBER')
plt.title('LEAST AFFECTED STATES DUE TO COVID-19')
plt.grid()
plt.show()

OUTPUT
DEATH IN EACH
AGE GROUP
Death caused in each age group at
a point if time is shown below:
Data frame

program

import matplotlib.pyplot as plt


import pandas as pd
data={"AGE":['0-10','11-20','21-
30','31-40','41-50','51-60','61-
70','71-80',, '81-90',"90+"],
"PERCENTAGE":
[0.5,0.7,2.6,6.1,13.4,25.13,
28.6,17,5.3,8.5]}
df=pd.DataFrame(data)
print(df)
plt.plot(df["AGE"],df["PERCENTAGE"]
,marker='*',markeredgecolor='red')
plt.xlabel("Age")
plt.ylabel("Percentage")
plt.title("Percentage of death in each
group")
plt.legend()
plt.grid()
plt.show()
OUTPUT
Death in each age group
in male and female due
to covid-19
Statistics of death caused in each
age group in male and female due
to COVID-19 is given below: -

PROGRAM
import matplotlib.pyplot as plt
import pandas as pd
data = {'Age': ['0-10','11-20','21-30','31-40','41-
50','51-60','61-70','71-80','81-90','90+'],
'Male Deaths':
[180,202,926,2484,5230,9683,11142,6788,2141
,197],
'Female Deaths':
[109,195,529,952,2308,4548,4947,2766,857,10
4]}
df=pd.DataFrame(data)
print(df)
plt.bar(df['Age'],df['Male Deaths'],label='MALE')
plt.bar(df['Age'],df['Female Deaths'],
label='FEMALE')
plt.legend()
plt.xlabel('AGE')
plt.ylabel('NUMBER')
plt.title('NO. OF DEATHS UPTO 2nd SEP.2020')
plt.grid()
plt.show()

OUTPUT
COVID-19 TESTS
CONDUCTED BY
DIFFERENT COUNTRIES
IN THE WORLD
Number of COVID-19 test conducted by
different countries all around the world
until 01 January, 2021. According to
news, India has done 3rd largest testing
in the world.
Data frame

Program
import matplotlib.pyplot as plt
import pandas as pd
data={"COUNTRY":
['USA','China','India','Russia','UK','Germany','
France','Brazil','Spain','Italy'],
"NO. OF TESTS":
[224938642,160000000,156646280,838671
86,48488168,30494036,29323706,2570000
0,24918644,24482190]}
df=pd.DataFrame(data)
print(df)
plt.barh(df['COUNTRY'],df['NO.OF
TESTS'],color='red')
plt.title('NUMBER OF CORONAVIRUS TESTS
PERFORMED IN THE MOST IMPACTED
COUNTRIES WORLDWIDE AS OF DECEMBER
16,2020')
plt.xlabel('NUMBER OF TESTS')
plt.ylabel('COUNTRIES')
plt.grid()
plt.show()

OUTPUT
CONCLUSION
By visualizing data in form of bar and
line graphs we are able to easily
analyse that the states worsely
affected due to Covid-19 are states
with dense population and least
affected are not so densely populated.
The worst affected age group is 61 to
70 as there are more deaths caused
in this group due to Covid-19. We can
also clearly see that in every age
group there is more deathscaused in
males than in females.
We are also able to see that India
stands at third position in global
testing of coronavirus with more
than 15.6 crores sample already
tested.
REFERENCE
https://www.who.int
https://en.m.wikipedia.org
www.google.com
https://no2colaba.kvs.ac.in
https://www.statista.com

You might also like