Healthcare Management
Healthcare Management
MANAGEMENT
Submitted to
Shubhangi Mam
Submitted by
Prathamesh Nerurkar
Venkatraman Balchandran
Utkarsh Sahu
Charvi Jain
Royal International School
Certificate
Department of Computer Science
1 About Project
3 Modules used
4 Flow chart
5 Codes
6 Output
7 Limitations
8 Future scope
9 Bibliography
10 Thank you
about project
The purpose of this project is to acknowledge
the presence of Machine learning and
Artificial intelligence in the field of Healthcare
management for the storage of record, we are
humans and we make mistakes but some
may lead to life changing decisions and that
is why we trust a machine more than a person
because it works by itself for hours and stores
records efficiently. We have depicted how it
worked by using a python program which
tells us how easily it works and just takes a
few seconds to store the data given.
Hardware and
software requirements
Hardware: Processor Intel(R)
Core(TM) i3-7020U CPU @ 2.30GHz
2.30 GHz
Installed RAM 4.00 GB (3.83 GB
usable)
System type 64-bit operating
system, x64-based processor
PATIENTS DOCTORS
PATIENT ID DOCTOR ID
FIRST NAME FIRST NAME
LAST NAME LAST NAME
DOB SPECIALIZATION
GENDER PHONE NUMBER
PHONE NUMBER
ADDRESS
PYTHON
CREATE
DELETE
PATIENTS
VIEW UPDATE PATIENTS
PATIENTS PATIENTS
SQL Code
Python Codes
import mysql.connector
def connect_db():
"""Connect to the MySQL database."""
return mysql.connector.connect(
host="localhost",
user="root",
password="1234",
database="health_management"
)
cursor.execute(sql, values)
db.commit()
cursor.close()
db.close()
def view_patients():
"""Fetch and display all patients."""
db = connect_db()
cursor = db.cursor()
cursor.close()
db.close()
updates = []
if first_name:
updates.append(f"FirstName = '{first_name}'")
if last_name:
updates.append(f"LastName = '{last_name}'")
cursor.execute(sql)
db.commit()
cursor.close()
db.close()
def delete_patient(patient_id):
"""Delete a patient from the Patients table."""
db = connect_db()
cursor = db.cursor()
cursor.execute(sql, (patient_id,))
db.commit()
cursor.close()
db.close()
if __name__ == "__main__":
create_patient("Alice", "Johnson", "1990-05-15", "Female", "555-
1234", "123 Main St")
print("Patients List:")
view_patients()
update_patient(1, first_name="Alicia")
delete_patient(1)
Output
Limitations
1. Privacy and consent concerns:
Because of the advancement of AI, users may mistake
artificial systems for people and provide their consent for more
covert data collecting, raising very serious privacy concerns.
2."Overfitting":
When the algorithm learns unimportant associations between
patient features and outcomes, this is called overfitting. It
happens when there are too many variables influencing the
results, leading the algorithm to make inaccurate predictions.
Thus, the algorithm may function well within the training
dataset, yet provide inaccurate results.
https://www.geeksforgeeks.org.
https://www.canva.com
https://www.emcure.com
https://www.ache.org
https://www.apollohospitals.com/
https://www.omegahms.com/
https://chatgpt.com
https://www.nlm.nih.gov/
Thank You