You are on page 1of 9

System Requirements

● Processor : INTEL ATOM/ i3 AND ABOVE OR AMD EQUIVALENT

● DISK SPACE : 500GB OR ABOVE

● OPERATING SYSTEM: WINDOWS,MAC,LINUX

● RAM: 8GB OR ABOVE


ABOUT PYTHON

Python is a widely used general-purpose, high level


programming language. It was created by Guido van
Rossum in 1991 and further developed by the Python
Software Foundation. It was designed with an
emphasis on code readability, and its syntax allows
programmers to express their concepts in fewer lines
of code. Python is a programming language that lets
you work quickly and integrate systems more
efficiently.

PROS AND CONS


PYTHON MODULES
A Python module is a file containing Python definitions
and statements. A module can define functions,
classes, and variables. A module can also include
runnable code. Grouping related code into a module
makes the code easier to understand and use. It also
makes the code logically organized.

1. NUMPY
It is a python library used for working with arrays.
Example :
import numpy
arr=numpy.array([1,2,3,4,5])
print(arr)

2.PANDAS
It is a most famous Python package for data science,
which offers powerful and flexible data structures that
make data analysis and manipulation easy. Pandas
makes data importing and data analyzing much easier.
Pandas builds on packages like NumPy and matplotlib
to give us a single & convenient place for data analysis
and visualization work.
PANDAS SERIES

A pandas series is like a column in a table. It is a


one - dimensional array holding data of any type.

Example :
import pandas as pd
a=[1,7,2]
ser=pd.Series(a)
print(ser)

PANDAS DATAFRAME

A pandas dataframe is a two - dimensional. Size


mutable, potentially heterogeneous tabular data
structure with labeled axes.
Example :
Import pandas as pd data={“Name”:
[“Tuhin”,”Bhawani”,”Sifi”,”Jatin”], “age”:
[22,21,19,18]
df=pd.DataFrame(data)
print(df)

3.MATPLOTLIB

Matplotlib is a low level graph plotting library in python


that serves as a visualization utility.
Example :
import matplotlib.pyplot as plt
Import numpy as np
xpoints=np.array([0,6])
ypoints=np.array([0,250])
plt.plot(xpoints,ypoints)
plt.show()
ABOUT THE PROJECT

Our project “ANALYSIS OF COVID19


VACCINATION ” provides a state wise report of
vaccination . The data is visually represented
through different ways of plotting like Line graph,
Bar graph, Scatter diagram, Pie chart etc.

By this project anyone can understand the covid


vaccination report state wise .

The programming language used for this project is


Python with different modules like Pandas, Matplotlib,
Numpy and data is imported from csv file.
BIBLIOGRAPHY

●INFORMATICS PRACTICES
TEXTBOOK CLASS 12th
●GOOGLE REFERENCE
THANK YOU!!!

You might also like