Submitted by Neha
Submitted by Neha
1
JALAHALLI WEST, BANGALORE
A PROJECT REPORT
ON
STATISTICS OF COLLEGES IN INDIA
FOR
CBSE 2023 EXAMINATION
[AS A PART OF THE INFORMATICS PRACTICES(065)]
DONE BY
NEHA MISHRA
AKSHITHA LAKSHMI
ANEETA BOBBY
SUBMITTED BY
NEHA MISHRA
………………..
………………. Signature of Principal Signature of
Teacher/Guide
Name: MRS. DIVYA
Designation: PGT (Comp.Sc.)
ACKNOWLEDGEMENT
I undertook this Project work, as the part of my XII-
INFORMATION PRACTICES course. I have tried to apply best
of knowledge and experience, gained during the study and
class work experience. However, developing an efficient code
is generally a quite complex and time-consuming process. It
requires a systematic study, insight vision and professional
approach during the design and development.
I would like to extend my sincere thanks and gratitude to
my teacher MRS DIVYA C. K PGT (Comp.Sc).
I am very much thankful to our Principal Mr. Ravindra S
Devadiga for giving valuable time and moral support to
develop this code.
I would like to take the opportunity to extend my sincere
thanks and gratitude to our parents for being a source of
inspiration and providing time and freedom to develop this
project.
CONTENTS
1. AIM
2. INTRODUCTION
3.THEORITICAL APPROACH
5.CODE
6. OUTPUT
7. CONCLUSIONS
8. BIBLIOGRAPHY
AIM
1. Gathering data of number of the following
colleges:- Nursing, Medical ,Engineering, Catering
,Commerce
from a domain and displaying it:-
# graphically
# with the help of data frame.
Taking into account the following states of India:-
Kerala ,Karnataka, Tamil Nadu, Punjab, Goa,
Madhya Pradesh, Andhra Pradesh, Gujarat,
Manipur and West Bengal
# creating dataframe
l1=[31,149,145,3,3]
l2=[32,129,132,7,5]
l3=[60,157,314,21,32]
l4=[50,314,188,44,5]
l5=[16,107,10,30,1]
l6=[2,241,188,142,11]
l7=[29,197,103,119,6]
l8=[10,302,108,269,17]
l9=[2,4,8,3,1]
l10=[25,172,30,244,5]
i=["Andra Pradesh","Kerala","Karnataka","Tamil
Nadu","Bihar","Madhya
Pradesh","Gujarat","Punjab","Manipur","West Bengal"]
d=p.DataFrame([l1,l2,l3,l4,l5,l6,l7,l8,l9,l10],index=i,columns=["N
umber of Medical colleges","Number of Engineering
colleges","Number of Nursing colleges","Number of Commerce
colleges","Number of Catering technology colleges"])
print("-------------COUNT OF COLLEGES IN INDIA------------------")
print(d)
d.to_csv("C:\\Users\\DELL\\Documents\\pre.csv")
i2=["Manipur","Gujarat","West Bengal","Madhya
Pradesh","Punjab"]
m2=[2,29,25,2,10]
e2=[4,197,172,241,302]
n2=[8,103,30,188,108]
a2=np.arange(len(e2))
co2=[3,119,244,142,269]
ca2=[1,6,5,11,17]
pt.bar(i2,m2,width=0.1,label="Medical college")
pt.bar(a2+0.1,e2,width=0.1,label="Engineering college")
pt.bar(a2+0.2,n2,width=0.1,label="Nursing college")
pt.bar(a2+0.3,co2,width=0.1,label="Commerce college")
pt.bar(a2+0.4,ca2,width=0.1,label="Catering college")
pt.legend(loc="upper left")
pt.ylabel("No. of colleges")
pt.show()
d.plot(kind="pie",y="Number of Engineering
colleges",title="****STATE-WISE NUMBER OF ENGINEERING
COLLEGES****",legend=False)
d.plot(kind="pie",y="Number of Medical
colleges",title="****STATE-WISE NUMBER OF MEDICAL
COLLEGES****",legend=False)
pt.show()
# commerce colleges
import pandas as pd
c1={1:"Shri Ram college of Commerce",2:"Jain UNiversity
Bangalore",3:"Chandigarh University",4:"St. Xaviers College
Mumbai",5:"Lovely Professional University",6:"Christ University
Bangalore",7:"Hindu College New Delhi",8:"St. Joseph's College
of Commerce",9:"Narsee Monjee college of Commerce and
Economics",10:"St. Andrew's College of Arts Science and
Commerce"}
c2={1:"Delhi",2:"Karnataka",3:"Punjab",4:"Maharashtra",5:"Punj
ab",6:"Karnataka",7:"Delhi",8:"Karnataka",9:"Maharashtra",10:"
Maharashtra"}
c3={1:"28,910",2:"1,20,000",3:"1,02,000",4:"5,537",5:"95,200",6
:"1,85,000",7:"17,240",8:"60,000",9:"4,941",10:"19,087"}
c={"College name":c1,"State":c2,"Annual fees":c3}
CF=pd.DataFrame(c)
print("^^^^^^^^^TOP TEN COMMERCE COLLEGES IN
INDIA^^^^^^^^^^^^")
print(CF)
OUTPUT:
Annualfees
College name State
https://en.m.wikipedia.org/wiki/List_of_medical_colleges_in_India
https://en.m.wikipedia.org/wiki/Engineering_education_in_India
https://www.coa.gov.in/institutionStatus.php
https://pib.gov.in/PressReleasePage.aspx?PRID=1658280
https://blog.oureducation.in/top-state-wise-commerce-college-in-india/
https://medicine.careers360.com/articles/top-10-medical-colleges-fee-in-india
https://www.shiksha.com/engineering/ranking/top-engineering-colleges-in-india/44-2-0-0-
0https://zollege.in/hotel-management-collegeshttps://www.iesonline.co.in/commerce-colleges-in-
india-with-fees
https://zollege.in/bsc-nursing-colleges
Other than the above-mentioned books, the suggestions
and supervision of my teacher and my class experience
also helped me to develop this software project