SlideShare a Scribd company logo
Insights extraction
through Knowledge Graph
of medical booking data
Giampaolo Casolla - Vincenzo Schiano Di Cola
University of Naples Federico II
Department of Mathematics and Applications "Renato Caccioppoli" (DMA)
Department of Electrical Engineering and Information Technology (DIETI)
MODAL research group
2
Brief History
Credits: https://media.timeout.com/images/105237777/1372/772/image.jpg
To be:
● Apply AI on legacy data
● Generate a knowledge graph form
tuple data
● Real time analytics and prediction
3
Challenges:
● Quickly build a knowledge
base
● Apply Machine Learning (ML)
on Knowledge Graph (KG)
● Shift to knowledge graph
complex applications:
○ entity resolution
○ link prediction
○ pattern discovery
Why?
● Booking processes are widely used
● Predict load of health service
provider or next patient access
● Medical booking data is semantical
4
5
referral book appointment health service
Credits: https://www.vectorstock.com/ https://sbmi.uth.edu/blog/apr-15/04152015.htm
practitioner
patientpatient patient patient
6 years of appointments booked for medical prescriptions
SUM UP TO: 10M rows.
Main table: 33 attributes,
+2 tables,with the pairs:
● medical-branch-id branch-description
● health-service-id health-service-description
6
Field-
Name
booked
-date
reservation-date encrypted-
nin-id
gender patient-
age
booking-age
nt-id
medical-bra
nch-id
health-se
rvice-id
practitioner-id referral-cent
re-id
referral-id
7
Code medical-branch
02 Cardiologia
002 CARDIOLOGIA
CAR Cardiologia
Main issues:
● Spelling errors
● Naming convention changes
● Text contraction
Tabular data manually modified by
human operators
Solution:
● String matching algorithm
● Added flag-columns
Code health-service-provision
800191 Visita Cardiologica
VISCAR Visita di Controllo Cardiologica
VIS CA VISIT CARD
8
Referral id Patient id Practitioner id
1371797 729104 24236
1371797 789722 35664
Last Reservation
Change Date
Health
service id
Referral id
15/06/2016 94.09 5729131
11/07/2016 94.09 5729131
9
Patient id
Patient
gender
Practitioner id
510423 M 23901
510424 M 23902
510425 F 23901
510426 F 23901
510423 M 23902
510426 F 23903
510426 F 23901
510426 F 23903
510423 M 23903
510424 M 23902
Single Patient id Patient gender Practitioner id
Unique 4 2 3
Couple (Patient id,
Patient gender)
(Patient gender,
Practitioner id)
(Practitioner id,
Patient id)
Unique 4 5 7
4 = 4
ENTITY ATTRIBUTE
Patient id Patient gender
10
practitioner
patient
event-date
referral
health-service-provision
11
12
13
14
15
16
17
● Ubuntu 18.04 LTS
● Python 3.7
● Grakn core 1.5.9
● Grakn Workbase 1.2.7
● R 3.5.3
● Tensorflow GPU 1.14
● Ampligraph 1.2.0
Credits: https://www.nvidia.it/Download/index.aspx, https://hd.tudocdn.net/851711?w=660&h=440, https://i.ebayimg.com/images/g/dbYAAOSwIShbhvQq/s-l300.jpg
● Core i9-9900K
● 128 GB DDR4
● Geforce RTX 2080 Ti, 11GB
● 1 TB M.2 NVMe
Inspired by phone-calls migration example
on GitHub
Loaded 1747 patients.
Each patient:
60 < health services < 100.
18
Entities &
meta-Relations
# of instances
reservation 123k
referral 32k
health-care 10k
provision 9k
practitioner 2k
appointment-provider 2k
patient 2k
booking-staff 1k
medical-branch 1k
Credits: https://github.com/graknlabs/docs/blob/master/08-examples/04-phone-calls-migration-python.md
19
20
relation_template(data):
query = "match "
for r, roleplayer in enumerate(data["roleplayers"]):
****
****
if "roleplayers_relation" in data:
****
****
21
Patient Rel: Referral Rel: Reservation Triplets Time
1k 1,8k 5,6k 52k 04 min
2k 3,5k 12k 110k 10 min
4k 7k 24k 214k 24 min
8k ~14k ~48k ~450k ~1 h
16k ~28k ~96k ~900k ~2 h
Selected patients: 1-3 health services
22
Goal: Map each node in a network into a low-dimensional space
23
Why network embedding?
● Distributed representations for nodes
● Similarity of embeddings between nodes indicates their network similarity
● Encode network information and generate node representation
Credits: http://web.stanford.edu/class/cs224w/slides/07-noderepr.pdf
24Credits: https://www.frontiersin.org/articles/10.3389/fgene.2019.00381/full
25Credits: http://pengcui.thumedialab.com/papers/NetworkEmbeddingSurvey.pdf
@has-type relations extracted from Grakn
26
@has-relations # of instances
@has-booked-date 149k
@has-reservation-date 123k
@has-booking-type 123k
@has-referral-id 32k
@has-patient-age 32k
@has-exemption-code 22k
… ...
1 558 700Total triples:
27
Score function
Translational
TransE
Credits: https://www.researchgate.net/figure/Illustrations-of-the-translation-mechanisms-of-TransE-and-TransR_fig2_335786058,
http://homepages.inf.ed.ac.uk/s1656585/assets/ICANN_2019_HypER_slides.pdf
28
Score function
Bilinear
ComplEx
Credits: https://www.researchgate.net/publication/267428940_Querying_Factorized_Probabilistic_Triple_Databases/figures?lo=1, https://arxiv.org/pdf/1606.06357
29
PCA
Key points:
➔ Good partitioning
➔ Grouped by relations
t-SNE
Goal:
Find hidden groups
of different entities
30
Methods:
● K-Means
● Hierarchical Clustering
● DbScan
31
32
Entities distribution
33
Cluster 7 Cluster 8
34
35
36
37
38
39
40
41
42
match
$1 isa patient, has encrypted-nin-id 777937;
$2 isa patient, has encrypted-nin-id 706294;
$3 isa practitioner, has practitioner-id 23909;
get; limit 100;
43
Methods:
● Nearest Neighbors
● Linear SVM
● RBF SVM
● Gaussian Process
● Random Forest
● Neural Network
● Naive Bayes
● QDA
● XGBoost
Goal:
Predict patients’ visits
44
MEAN
Conclusions:
● Analyzed Booking of Medical data
● From SQL to KG
● Machine Learning on embedding
45
Future Work:
● Investigate other embedding algorithms
● DeepMind's Graph Nets + KGLIB
Grakn useful for:
● KG schema creation
● Reasoning
● Triples extraction
● Link analysis
1. R&D AI solutions
2. Any data can be exploited
3. Not an easy task (human hours, high specs)
4. Many tools out there to be used correctly
5. Producing insights can be cumbersome
46
47
University of Naples Federico II
Department of Mathematics and Applications "Renato Caccioppoli" (DMA)
Department of Electrical Engineering and Information Technology (DIETI)
M.O.D.A.L. research group

More Related Content

Similar to Insights extraction through knowledge graph of medical booking data

combinepdf
combinepdfcombinepdf
combinepdf
Gaurav Gopal Gupta
 
CLINIC_MANAGEMENT_SYSTEM.pdf
CLINIC_MANAGEMENT_SYSTEM.pdfCLINIC_MANAGEMENT_SYSTEM.pdf
CLINIC_MANAGEMENT_SYSTEM.pdf
JeevanPThankachan
 
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNINGPARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
IRJET Journal
 
Hosptal management system
Hosptal management systemHosptal management system
Hosptal management system
Kartik Chaudhari
 
Patient Privacy Control for Health Care in Cloud Computing System
Patient Privacy Control for Health Care in Cloud Computing  SystemPatient Privacy Control for Health Care in Cloud Computing  System
Patient Privacy Control for Health Care in Cloud Computing System
IRJET Journal
 
Sample projectdocumentation
Sample projectdocumentationSample projectdocumentation
Sample projectdocumentation
hlksd
 
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
IRJET Journal
 
Artificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern RecognitionArtificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern Recognition
Dr. Amarjeet Singh
 
Taverna workflow management system (2010 11-30 Bath Workflow Tools) PPTX
Taverna workflow management system (2010 11-30 Bath Workflow Tools) PPTXTaverna workflow management system (2010 11-30 Bath Workflow Tools) PPTX
Taverna workflow management system (2010 11-30 Bath Workflow Tools) PPTX
Stian Soiland-Reyes
 
Taverna workflow management system (2010 11-30 Bath Workflow Tools)
Taverna workflow management system (2010 11-30 Bath Workflow Tools)Taverna workflow management system (2010 11-30 Bath Workflow Tools)
Taverna workflow management system (2010 11-30 Bath Workflow Tools)
Stian Soiland-Reyes
 
Fingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOTFingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOT
IRJET Journal
 
dc09ttp-2011-thesis
dc09ttp-2011-thesisdc09ttp-2011-thesis
dc09ttp-2011-thesis
Theofilos Papapanagiotou
 
Project Documentation
Project DocumentationProject Documentation
Project Documentation
Rohan Reddy
 
Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...
Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...
Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...
vivatechijri
 
“Detection of Diseases using Machine Learning”
“Detection of Diseases using Machine Learning”“Detection of Diseases using Machine Learning”
“Detection of Diseases using Machine Learning”
IRJET Journal
 
C programming project by navin thapa
C programming project by navin thapaC programming project by navin thapa
C programming project by navin thapa
Navinthp
 
Clone of an organization
Clone of an organizationClone of an organization
Clone of an organization
IRJET Journal
 
Fault Detection in Mobile Communication Networks Using Data Mining Techniques...
Fault Detection in Mobile Communication Networks Using Data Mining Techniques...Fault Detection in Mobile Communication Networks Using Data Mining Techniques...
Fault Detection in Mobile Communication Networks Using Data Mining Techniques...
ijcisjournal
 
008_23035research061214_49_55
008_23035research061214_49_55008_23035research061214_49_55
008_23035research061214_49_55
mehdi nakhzari moghadam
 
2005年EI收录浙江财经学院论文7篇
2005年EI收录浙江财经学院论文7篇2005年EI收录浙江财经学院论文7篇
2005年EI收录浙江财经学院论文7篇
butest
 

Similar to Insights extraction through knowledge graph of medical booking data (20)

combinepdf
combinepdfcombinepdf
combinepdf
 
CLINIC_MANAGEMENT_SYSTEM.pdf
CLINIC_MANAGEMENT_SYSTEM.pdfCLINIC_MANAGEMENT_SYSTEM.pdf
CLINIC_MANAGEMENT_SYSTEM.pdf
 
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNINGPARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
 
Hosptal management system
Hosptal management systemHosptal management system
Hosptal management system
 
Patient Privacy Control for Health Care in Cloud Computing System
Patient Privacy Control for Health Care in Cloud Computing  SystemPatient Privacy Control for Health Care in Cloud Computing  System
Patient Privacy Control for Health Care in Cloud Computing System
 
Sample projectdocumentation
Sample projectdocumentationSample projectdocumentation
Sample projectdocumentation
 
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
 
Artificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern RecognitionArtificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern Recognition
 
Taverna workflow management system (2010 11-30 Bath Workflow Tools) PPTX
Taverna workflow management system (2010 11-30 Bath Workflow Tools) PPTXTaverna workflow management system (2010 11-30 Bath Workflow Tools) PPTX
Taverna workflow management system (2010 11-30 Bath Workflow Tools) PPTX
 
Taverna workflow management system (2010 11-30 Bath Workflow Tools)
Taverna workflow management system (2010 11-30 Bath Workflow Tools)Taverna workflow management system (2010 11-30 Bath Workflow Tools)
Taverna workflow management system (2010 11-30 Bath Workflow Tools)
 
Fingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOTFingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOT
 
dc09ttp-2011-thesis
dc09ttp-2011-thesisdc09ttp-2011-thesis
dc09ttp-2011-thesis
 
Project Documentation
Project DocumentationProject Documentation
Project Documentation
 
Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...
Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...
Smart Portal: A Platform for Student's Profile Creation, Evaluation and Clust...
 
“Detection of Diseases using Machine Learning”
“Detection of Diseases using Machine Learning”“Detection of Diseases using Machine Learning”
“Detection of Diseases using Machine Learning”
 
C programming project by navin thapa
C programming project by navin thapaC programming project by navin thapa
C programming project by navin thapa
 
Clone of an organization
Clone of an organizationClone of an organization
Clone of an organization
 
Fault Detection in Mobile Communication Networks Using Data Mining Techniques...
Fault Detection in Mobile Communication Networks Using Data Mining Techniques...Fault Detection in Mobile Communication Networks Using Data Mining Techniques...
Fault Detection in Mobile Communication Networks Using Data Mining Techniques...
 
008_23035research061214_49_55
008_23035research061214_49_55008_23035research061214_49_55
008_23035research061214_49_55
 
2005年EI收录浙江财经学院论文7篇
2005年EI收录浙江财经学院论文7篇2005年EI收录浙江财经学院论文7篇
2005年EI收录浙江财经学院论文7篇
 

More from Vaticle

Building Biomedical Knowledge Graphs for In-Silico Drug Discovery
Building Biomedical Knowledge Graphs for In-Silico Drug DiscoveryBuilding Biomedical Knowledge Graphs for In-Silico Drug Discovery
Building Biomedical Knowledge Graphs for In-Silico Drug Discovery
Vaticle
 
Loading Huge Amounts of Data
Loading Huge Amounts of DataLoading Huge Amounts of Data
Loading Huge Amounts of Data
Vaticle
 
Natural Language Interface to Knowledge Graph
Natural Language Interface to Knowledge GraphNatural Language Interface to Knowledge Graph
Natural Language Interface to Knowledge Graph
Vaticle
 
A Data Modelling Framework to Unify Cyber Security Knowledge
A Data Modelling Framework to Unify Cyber Security KnowledgeA Data Modelling Framework to Unify Cyber Security Knowledge
A Data Modelling Framework to Unify Cyber Security Knowledge
Vaticle
 
Unifying Space Mission Knowledge with NLP & Knowledge Graph
Unifying Space Mission Knowledge with NLP & Knowledge GraphUnifying Space Mission Knowledge with NLP & Knowledge Graph
Unifying Space Mission Knowledge with NLP & Knowledge Graph
Vaticle
 
The Next Big Thing in AI - Causality
The Next Big Thing in AI - CausalityThe Next Big Thing in AI - Causality
The Next Big Thing in AI - Causality
Vaticle
 
Building a Cyber Threat Intelligence Knowledge Graph
Building a Cyber Threat Intelligence Knowledge GraphBuilding a Cyber Threat Intelligence Knowledge Graph
Building a Cyber Threat Intelligence Knowledge Graph
Vaticle
 
Knowledge Graphs for Supply Chain Operations.pdf
Knowledge Graphs for Supply Chain Operations.pdfKnowledge Graphs for Supply Chain Operations.pdf
Knowledge Graphs for Supply Chain Operations.pdf
Vaticle
 
Building a Distributed Database with Raft.pdf
Building a Distributed Database with Raft.pdfBuilding a Distributed Database with Raft.pdf
Building a Distributed Database with Raft.pdf
Vaticle
 
Enabling the Computational Future of Biology.pdf
Enabling the Computational Future of Biology.pdfEnabling the Computational Future of Biology.pdf
Enabling the Computational Future of Biology.pdf
Vaticle
 
TypeDB Academy | Inference with Rules
TypeDB Academy | Inference with RulesTypeDB Academy | Inference with Rules
TypeDB Academy | Inference with Rules
Vaticle
 
TypeDB Academy | Modelling Principles
TypeDB Academy | Modelling PrinciplesTypeDB Academy | Modelling Principles
TypeDB Academy | Modelling Principles
Vaticle
 
Beyond SQL - Comparing SQL to TypeQL
Beyond SQL - Comparing SQL to TypeQLBeyond SQL - Comparing SQL to TypeQL
Beyond SQL - Comparing SQL to TypeQL
Vaticle
 
TypeDB Academy- Getting Started with Schema Design
TypeDB Academy- Getting Started with Schema DesignTypeDB Academy- Getting Started with Schema Design
TypeDB Academy- Getting Started with Schema Design
Vaticle
 
Comparing Semantic Web Technologies to TypeDB
Comparing Semantic Web Technologies to TypeDBComparing Semantic Web Technologies to TypeDB
Comparing Semantic Web Technologies to TypeDB
Vaticle
 
Reasoner, Meet Actors | TypeDB's Native Reasoning Engine
Reasoner, Meet Actors | TypeDB's Native Reasoning EngineReasoner, Meet Actors | TypeDB's Native Reasoning Engine
Reasoner, Meet Actors | TypeDB's Native Reasoning Engine
Vaticle
 
Intro to TypeDB and TypeQL | A strongly-typed database
Intro to TypeDB and TypeQL | A strongly-typed databaseIntro to TypeDB and TypeQL | A strongly-typed database
Intro to TypeDB and TypeQL | A strongly-typed database
Vaticle
 
Graph Databases vs TypeDB | What you can't do with graphs
Graph Databases vs TypeDB | What you can't do with graphsGraph Databases vs TypeDB | What you can't do with graphs
Graph Databases vs TypeDB | What you can't do with graphs
Vaticle
 
Pandora Paper Leaks With TypeDB
 Pandora Paper Leaks With TypeDB Pandora Paper Leaks With TypeDB
Pandora Paper Leaks With TypeDB
Vaticle
 
Strongly Typed Data for Machine Learning
Strongly Typed Data for Machine LearningStrongly Typed Data for Machine Learning
Strongly Typed Data for Machine Learning
Vaticle
 

More from Vaticle (20)

Building Biomedical Knowledge Graphs for In-Silico Drug Discovery
Building Biomedical Knowledge Graphs for In-Silico Drug DiscoveryBuilding Biomedical Knowledge Graphs for In-Silico Drug Discovery
Building Biomedical Knowledge Graphs for In-Silico Drug Discovery
 
Loading Huge Amounts of Data
Loading Huge Amounts of DataLoading Huge Amounts of Data
Loading Huge Amounts of Data
 
Natural Language Interface to Knowledge Graph
Natural Language Interface to Knowledge GraphNatural Language Interface to Knowledge Graph
Natural Language Interface to Knowledge Graph
 
A Data Modelling Framework to Unify Cyber Security Knowledge
A Data Modelling Framework to Unify Cyber Security KnowledgeA Data Modelling Framework to Unify Cyber Security Knowledge
A Data Modelling Framework to Unify Cyber Security Knowledge
 
Unifying Space Mission Knowledge with NLP & Knowledge Graph
Unifying Space Mission Knowledge with NLP & Knowledge GraphUnifying Space Mission Knowledge with NLP & Knowledge Graph
Unifying Space Mission Knowledge with NLP & Knowledge Graph
 
The Next Big Thing in AI - Causality
The Next Big Thing in AI - CausalityThe Next Big Thing in AI - Causality
The Next Big Thing in AI - Causality
 
Building a Cyber Threat Intelligence Knowledge Graph
Building a Cyber Threat Intelligence Knowledge GraphBuilding a Cyber Threat Intelligence Knowledge Graph
Building a Cyber Threat Intelligence Knowledge Graph
 
Knowledge Graphs for Supply Chain Operations.pdf
Knowledge Graphs for Supply Chain Operations.pdfKnowledge Graphs for Supply Chain Operations.pdf
Knowledge Graphs for Supply Chain Operations.pdf
 
Building a Distributed Database with Raft.pdf
Building a Distributed Database with Raft.pdfBuilding a Distributed Database with Raft.pdf
Building a Distributed Database with Raft.pdf
 
Enabling the Computational Future of Biology.pdf
Enabling the Computational Future of Biology.pdfEnabling the Computational Future of Biology.pdf
Enabling the Computational Future of Biology.pdf
 
TypeDB Academy | Inference with Rules
TypeDB Academy | Inference with RulesTypeDB Academy | Inference with Rules
TypeDB Academy | Inference with Rules
 
TypeDB Academy | Modelling Principles
TypeDB Academy | Modelling PrinciplesTypeDB Academy | Modelling Principles
TypeDB Academy | Modelling Principles
 
Beyond SQL - Comparing SQL to TypeQL
Beyond SQL - Comparing SQL to TypeQLBeyond SQL - Comparing SQL to TypeQL
Beyond SQL - Comparing SQL to TypeQL
 
TypeDB Academy- Getting Started with Schema Design
TypeDB Academy- Getting Started with Schema DesignTypeDB Academy- Getting Started with Schema Design
TypeDB Academy- Getting Started with Schema Design
 
Comparing Semantic Web Technologies to TypeDB
Comparing Semantic Web Technologies to TypeDBComparing Semantic Web Technologies to TypeDB
Comparing Semantic Web Technologies to TypeDB
 
Reasoner, Meet Actors | TypeDB's Native Reasoning Engine
Reasoner, Meet Actors | TypeDB's Native Reasoning EngineReasoner, Meet Actors | TypeDB's Native Reasoning Engine
Reasoner, Meet Actors | TypeDB's Native Reasoning Engine
 
Intro to TypeDB and TypeQL | A strongly-typed database
Intro to TypeDB and TypeQL | A strongly-typed databaseIntro to TypeDB and TypeQL | A strongly-typed database
Intro to TypeDB and TypeQL | A strongly-typed database
 
Graph Databases vs TypeDB | What you can't do with graphs
Graph Databases vs TypeDB | What you can't do with graphsGraph Databases vs TypeDB | What you can't do with graphs
Graph Databases vs TypeDB | What you can't do with graphs
 
Pandora Paper Leaks With TypeDB
 Pandora Paper Leaks With TypeDB Pandora Paper Leaks With TypeDB
Pandora Paper Leaks With TypeDB
 
Strongly Typed Data for Machine Learning
Strongly Typed Data for Machine LearningStrongly Typed Data for Machine Learning
Strongly Typed Data for Machine Learning
 

Recently uploaded

“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...
“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...
“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...
Université de Montréal
 
Pune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOW
Pune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOWPune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOW
Pune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOW
Get New Sim
 
Giloy in Ayurveda - Classical Categorization and Synonyms
Giloy in Ayurveda - Classical Categorization and SynonymsGiloy in Ayurveda - Classical Categorization and Synonyms
Giloy in Ayurveda - Classical Categorization and Synonyms
Planet Ayurveda
 
Nutritional deficiency disorder in Child
Nutritional deficiency disorder in ChildNutritional deficiency disorder in Child
Nutritional deficiency disorder in Child
Bhavyakelawadiya
 
Public Health Lecture 4 Social Sciences and Public Health
Public Health Lecture 4 Social Sciences and Public HealthPublic Health Lecture 4 Social Sciences and Public Health
Public Health Lecture 4 Social Sciences and Public Health
phuakl
 
Introduction to British pharmacopeia.pptx
Introduction to British pharmacopeia.pptxIntroduction to British pharmacopeia.pptx
Introduction to British pharmacopeia.pptx
taiba qazi
 
Foundation of Yoga, YCB Level-3, Unit-1
Foundation of Yoga, YCB Level-3, Unit-1 Foundation of Yoga, YCB Level-3, Unit-1
Foundation of Yoga, YCB Level-3, Unit-1
Jyoti Bhaghasra
 
STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7
STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7
STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7
shruti jagirdar
 
Nano-gold for Cancer Therapy chemistry investigatory project
Nano-gold for Cancer Therapy chemistry investigatory projectNano-gold for Cancer Therapy chemistry investigatory project
Nano-gold for Cancer Therapy chemistry investigatory project
SIVAVINAYAKPK
 
pharmacy exam preparation for undergradute students.pptx
pharmacy exam preparation for undergradute students.pptxpharmacy exam preparation for undergradute students.pptx
pharmacy exam preparation for undergradute students.pptx
AdugnaWari
 
Tele Optometry (kunj'sppt) / Basics of tele optometry.
Tele Optometry (kunj'sppt) / Basics of tele optometry.Tele Optometry (kunj'sppt) / Basics of tele optometry.
Tele Optometry (kunj'sppt) / Basics of tele optometry.
Kunj Vihari
 
District Residency Programme (DRP) for PGs in India.pptx
District Residency Programme (DRP) for PGs in India.pptxDistrict Residency Programme (DRP) for PGs in India.pptx
District Residency Programme (DRP) for PGs in India.pptx
CommunityMedicine46
 
RESPIRATORY DISEASES by bhavya kelavadiya
RESPIRATORY DISEASES by bhavya kelavadiyaRESPIRATORY DISEASES by bhavya kelavadiya
RESPIRATORY DISEASES by bhavya kelavadiya
Bhavyakelawadiya
 
Know the difference between Endodontics and Orthodontics.
Know the difference between Endodontics and Orthodontics.Know the difference between Endodontics and Orthodontics.
Know the difference between Endodontics and Orthodontics.
Gokuldas Hospital
 
June 2024 Oncology Cartoons By Dr Kanhu Charan Patro
June 2024 Oncology Cartoons By Dr Kanhu Charan PatroJune 2024 Oncology Cartoons By Dr Kanhu Charan Patro
June 2024 Oncology Cartoons By Dr Kanhu Charan Patro
Kanhu Charan
 
5 Effective Homeopathic Medicines for Irregular Periods
5 Effective Homeopathic Medicines for Irregular Periods5 Effective Homeopathic Medicines for Irregular Periods
5 Effective Homeopathic Medicines for Irregular Periods
Dr. Deepika's Homeopathy - Gaur City
 
Cervical Disc Arthroplasty ORSI 2024.pptx
Cervical Disc Arthroplasty ORSI 2024.pptxCervical Disc Arthroplasty ORSI 2024.pptx
Cervical Disc Arthroplasty ORSI 2024.pptx
LEFLOT Jean-Louis
 
KENT'S REPERTORY by dr niranjan mohanty.pptx
KENT'S REPERTORY by dr niranjan mohanty.pptxKENT'S REPERTORY by dr niranjan mohanty.pptx
KENT'S REPERTORY by dr niranjan mohanty.pptx
SravsPandu1
 
Travel Clinic Cardiff: Health Advice for International Travelers
Travel Clinic Cardiff: Health Advice for International TravelersTravel Clinic Cardiff: Health Advice for International Travelers
Travel Clinic Cardiff: Health Advice for International Travelers
NX Healthcare
 
Physical demands in sports - WCSPT Oslo 2024
Physical demands in sports - WCSPT Oslo 2024Physical demands in sports - WCSPT Oslo 2024
Physical demands in sports - WCSPT Oslo 2024
Torstein Dalen-Lorentsen
 

Recently uploaded (20)

“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...
“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...
“Psychiatry and the Humanities”: An Innovative Course at the University of Mo...
 
Pune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOW
Pune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOWPune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOW
Pune Call Girls 7339748667 AVAILABLE HOT GIRLS AUNTY BOOK NOW
 
Giloy in Ayurveda - Classical Categorization and Synonyms
Giloy in Ayurveda - Classical Categorization and SynonymsGiloy in Ayurveda - Classical Categorization and Synonyms
Giloy in Ayurveda - Classical Categorization and Synonyms
 
Nutritional deficiency disorder in Child
Nutritional deficiency disorder in ChildNutritional deficiency disorder in Child
Nutritional deficiency disorder in Child
 
Public Health Lecture 4 Social Sciences and Public Health
Public Health Lecture 4 Social Sciences and Public HealthPublic Health Lecture 4 Social Sciences and Public Health
Public Health Lecture 4 Social Sciences and Public Health
 
Introduction to British pharmacopeia.pptx
Introduction to British pharmacopeia.pptxIntroduction to British pharmacopeia.pptx
Introduction to British pharmacopeia.pptx
 
Foundation of Yoga, YCB Level-3, Unit-1
Foundation of Yoga, YCB Level-3, Unit-1 Foundation of Yoga, YCB Level-3, Unit-1
Foundation of Yoga, YCB Level-3, Unit-1
 
STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7
STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7
STUDIES IN SUPPORT OF SPECIAL POPULATIONS: GERIATRICS E7
 
Nano-gold for Cancer Therapy chemistry investigatory project
Nano-gold for Cancer Therapy chemistry investigatory projectNano-gold for Cancer Therapy chemistry investigatory project
Nano-gold for Cancer Therapy chemistry investigatory project
 
pharmacy exam preparation for undergradute students.pptx
pharmacy exam preparation for undergradute students.pptxpharmacy exam preparation for undergradute students.pptx
pharmacy exam preparation for undergradute students.pptx
 
Tele Optometry (kunj'sppt) / Basics of tele optometry.
Tele Optometry (kunj'sppt) / Basics of tele optometry.Tele Optometry (kunj'sppt) / Basics of tele optometry.
Tele Optometry (kunj'sppt) / Basics of tele optometry.
 
District Residency Programme (DRP) for PGs in India.pptx
District Residency Programme (DRP) for PGs in India.pptxDistrict Residency Programme (DRP) for PGs in India.pptx
District Residency Programme (DRP) for PGs in India.pptx
 
RESPIRATORY DISEASES by bhavya kelavadiya
RESPIRATORY DISEASES by bhavya kelavadiyaRESPIRATORY DISEASES by bhavya kelavadiya
RESPIRATORY DISEASES by bhavya kelavadiya
 
Know the difference between Endodontics and Orthodontics.
Know the difference between Endodontics and Orthodontics.Know the difference between Endodontics and Orthodontics.
Know the difference between Endodontics and Orthodontics.
 
June 2024 Oncology Cartoons By Dr Kanhu Charan Patro
June 2024 Oncology Cartoons By Dr Kanhu Charan PatroJune 2024 Oncology Cartoons By Dr Kanhu Charan Patro
June 2024 Oncology Cartoons By Dr Kanhu Charan Patro
 
5 Effective Homeopathic Medicines for Irregular Periods
5 Effective Homeopathic Medicines for Irregular Periods5 Effective Homeopathic Medicines for Irregular Periods
5 Effective Homeopathic Medicines for Irregular Periods
 
Cervical Disc Arthroplasty ORSI 2024.pptx
Cervical Disc Arthroplasty ORSI 2024.pptxCervical Disc Arthroplasty ORSI 2024.pptx
Cervical Disc Arthroplasty ORSI 2024.pptx
 
KENT'S REPERTORY by dr niranjan mohanty.pptx
KENT'S REPERTORY by dr niranjan mohanty.pptxKENT'S REPERTORY by dr niranjan mohanty.pptx
KENT'S REPERTORY by dr niranjan mohanty.pptx
 
Travel Clinic Cardiff: Health Advice for International Travelers
Travel Clinic Cardiff: Health Advice for International TravelersTravel Clinic Cardiff: Health Advice for International Travelers
Travel Clinic Cardiff: Health Advice for International Travelers
 
Physical demands in sports - WCSPT Oslo 2024
Physical demands in sports - WCSPT Oslo 2024Physical demands in sports - WCSPT Oslo 2024
Physical demands in sports - WCSPT Oslo 2024
 

Insights extraction through knowledge graph of medical booking data