0% found this document useful (0 votes)
8 views17 pages

Healthcare Management

Uploaded by

Coding Tracker
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views17 pages

Healthcare Management

Uploaded by

Coding Tracker
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

HEALTHCARE

MANAGEMENT
Submitted to

Shubhangi Mam

Submitted by
Prathamesh Nerurkar
Venkatraman Balchandran
Utkarsh Sahu
Charvi Jain
Royal International School

Certificate
Department of Computer Science

This is to certify that Venkatraman, a


student of class XII has successfully
completed the research on the project
- Health Management under the
guidance of Mrs. Shubhangi N. Sinkar
during the year 2024-25 in partial
fulfillment of the Computer Science
practical examination conducted by
AISSCE

Name and Sign Name and Sign Name and Sign


External Examiner Principal Internal Examiner
I am very grateful to everyone who
supported me to complete my project
effectively and moreover on time. My
deep acknowledgment and gratitude go
to all those who helped me present
these ideas well.
I would like to express my gratitude to
my Principal Dr. Rakhi Singh for her
support and guidance in completing this
project.
I respect and thank my teacher
Mrs.Shubhangi N. Sinkar for giving us
an opportunity to do this project and
providing us all the valuable support
and guidance which made us complete
the project on time.
Secondly, I would also like to thank my
parents and friends who helped me a
lot in finalizing this project within the
limited time frame.
INDEX

Sr.no Expanded Notation

1 About Project

2 Hardware and software requirements

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

Software: My SQL command line


client, Visual studio code
Modules
Used MYSQLCONNECTOR
While working with Python we need to
work with databases, they may be of
different types like MySQL, SQLite, NoSQL,
etc. In this article, we will be looking
forward to how to connect MySQL
databases using MySQL
Connector/Python.
MySQL Connector module of Python is
used to connect MySQL databases with
the Python programs, it does that using
the Python Database API Specification
v2.0 (PEP 249). It uses the Python
standard library and has no
dependencies.
Flow chart
MYSQL

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"
)

def create_patient(first_name, last_name, dob, gender, phone, address):


"""Insert a new patient into the Patients table."""
db = connect_db()
cursor = db.cursor()

sql = "INSERT INTO Patients (FirstName, LastName, DateOfBirth, Gender,


PhoneNumber, Address) VALUES (%s, %s, %s, %s, %s, %s)"
values = (first_name, last_name, dob, gender, phone, address)

cursor.execute(sql, values)
db.commit()

print("Patient added successfully.")

cursor.close()
db.close()

def view_patients():
"""Fetch and display all patients."""
db = connect_db()
cursor = db.cursor()

cursor.execute("SELECT * FROM Patients")


for patient in cursor.fetchall():
print(patient)

cursor.close()
db.close()

def update_patient(patient_id, first_name=None,


last_name=None):
"""Update patient details."""
db = connect_db()
cursor = db.cursor()

sql = "UPDATE Patients SET "

updates = []

if first_name:
updates.append(f"FirstName = '{first_name}'")

if last_name:
updates.append(f"LastName = '{last_name}'")

sql += ", ".join(updates) + f" WHERE PatientID = {patient_id}"

cursor.execute(sql)

db.commit()

print("Patient updated successfully.")

cursor.close()
db.close()

def delete_patient(patient_id):
"""Delete a patient from the Patients table."""
db = connect_db()
cursor = db.cursor()

sql = "DELETE FROM Patients WHERE PatientID = %s"

cursor.execute(sql, (patient_id,))

db.commit()

print("Patient deleted successfully.")

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.

3. The "black-box” problem:


Deep learning algorithms typically lack the ability to provide
convincing explanations for their forecasts. If the
recommendations are wrong, the system has no way to
defend itself legally.

4. Biased and Discriminatory Algorithms:


Biased software and technological artifacts may result from
poor design or from incorrect or unbalanced data being input
into algorithms. Therefore, AI only replicates the racial, gender,
and age prejudice which already exists in our society,
therefore widening the gap between the rich and the poor
Future Scope
Healthcare management is increasingly vital for several
reasons:

Efficiency Improvement: As healthcare systems evolve,


effective management ensures resources are used
efficiently, reducing waste and improving patient care.

Regulatory Compliance: With changing regulations and


standards, skilled management helps organizations stay
compliant, avoiding legal issues and fines.

Technology Integration: As telehealth and electronic


health records become more prevalent, healthcare
managers play a crucial role in integrating and
optimizing these technologies.

Cost Management: Rising healthcare costs require


strategic planning to control expenses while maintaining
quality care.
Bibliography

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

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy