SlideShare a Scribd company logo
1 of 29
Download to read offline
CONFIDENTIAL © 2019 AyurData
Balance
Calmness
Serenity
Introducing
Advanced Statistical Manual
for Ayurveda Research
Kadiroo Jayaraman
Praveen Venugopal
AyurData
© 2019 AyurData /CONFIDENTIAL 2
The basic manual
covered the syllabus
specified for M.D.
students on Medical
Statistics, by the Central
Council of Indian
Medicine.
Earlier Release
© 2019 AyurData /CONFIDENTIAL 3
In the advanced manual, we
have covered more
advanced statistical
applications including that in
data science.
The mode of presentation is
that the concept is
introduced first, followed by
illustration and the use in a
real context.
Some mathematics will be
involved but well explained
in the text.
Current Release
© 2019 AyurData /CONFIDENTIAL 4
TOPICS COVERED
1.Analysis of Repeated Measures
2.Multiple Linear Regression
3.Superiority, Bioequivalence and Non-inferiority trials
4.Logistic Regression
5.Decision Trees
6.Random Forest
7.Support Vector Machines
8.Naïve Bayes Classifier
9.Neural Networks
10.K-Nearest Neighbour Technique
11.Principal Component Analysis
12.Cluster Analysis
13.Stratified Multistage Sampling
14.Analysis of Time Series Data
15.Analysis of Time-to-event Data
© 2019 AyurData /CONFIDENTIAL 5
ANALYSIS OF REPEATED MEASURES
Repeated measurements is a common case in Ayurveda experiments.
Repeated measurements on the same individual would be correlated and
so require special analysis.
© 2019 AyurData /CONFIDENTIAL 6
ANALYSIS OF REPEATED MEASURES
ANOVA table for two-way with repeated measures for one factor
For instance, Factor A could be treatment and B could be age group provided
the patients have been stratified based on age group. In case age was a taken
as a baseline variable that is continuous, it can be included as a covariate in the
model. The computations and interpretations are well-explained in the manual.
© 2019 AyurData /CONFIDENTIAL 7
MULTIPLE LINEAR REGRESSION
The model we are covering is,
which in the matrix form would be,
The model fitting, testing and residual analysis are illustrated using
a real-life dataset.
© 2019 AyurData /CONFIDENTIAL 8
Superiority, Bioequivalence and Non-inferiority trials
In many practical situations, we encounter the following types of
comparisons:
• The new drug is better than the standard drug.
• The new drug is equivalent to the standard drug.
• The new drug is at least as good as the standard drug.
The hypothesis and test criterion to be employed in each of the above
cases have to be different. For instance,
Superiority hypothesis
H0: ∆ = 0
H1: ∆ ≠ 0, or (∆ > 0, or ∆ <0 for one-tailed tests)
© 2019 AyurData /CONFIDENTIAL 9
Superiority, Bioequivalence and Non-inferiority trials
Bio-equivalence hypothesis
H0: ∆ > ∆E or ∆ < -∆E
H1: ∆E ≤ ∆ ≤ ∆E where ∆E is a clinically relevant equivalence
margin (usually 10%).
Non-inferiority hypothesis
H0: ∆ ≤-∆NI
H1: ∆ >-∆NI where ∆NI is a clinically relevant non-inferiority margin
(usually 10%).
The tests involved and the interpretation are illustrated using
examples from Ayurveda.
© 2019 AyurData /CONFIDENTIAL 10
Logistic Regression
Logistic model (or logit model) is used to model the probability of events
realized in two classes such as alive/dead or healthy/sick etc. The
dependent variable in this case would take values of 1 or 0. The
theoretical form of the model is,
Logistic models are especially suited for case-control studies and are
useful in understanding the predisposing factors leading to a diseased
condition.
The fitting of the logistic model including the derivation of ROC curve and
optimal cut-off points and measuring the goodness of fit are illustrated
using real data from Ayurveda.
© 2019 AyurData /CONFIDENTIAL 11
Decision Trees
Decision tree is a type of supervised learning algorithm (having a pre-
defined target variable) that is mostly used in classification problems.
In this technique, we split the population or sample into two or more
homogeneous sets (or sub-populations) based on the most significant
splitter/differentiator in input variables.
One popular measure used for spitting is the information gain. This is
equivalent to selecting a particular node with maximum reduction in
entropy as measured by Shannon’s index (H).
where s is the number of groups at a node and indicate the proportion
of individuals in the ith group.
© 2019 AyurData /CONFIDENTIAL 12
Decision Trees
Decision tree for exposure factors of Coronary Artery Disease
© 2019 AyurData /CONFIDENTIAL 13
Random Forest
Random forest is an ensemble technique in which the idea is to generate
multiple models on a training dataset and then simply combine (average)
their output rules or their hypotheses to generate a stronger model which
performs very well.
For instance, in the case of fitting a decision tree, we consider fitting
several decision trees and taking the average decision tree. It consists of a
resampling plan that considers not only subsamples but also a subset of
features in each sample generated.
This way, it gives out a model with considerably better efficiency in
prediction or classification.
The use of random forest is illustrated in the context of some real data in
Ayurveda.
© 2019 AyurData /CONFIDENTIAL 14
Support Vector Machines
Given a set of training examples, each marked as belonging to one or the
other of two categories, a support vector machine (SVM) training algorithm
builds a model that assigns new examples to one category or the other. In
theory, SVM is a discriminative classifier formally defined by a separating
hyperplane.
It is useful for even for non-linear separation of the data points.
© 2019 AyurData /CONFIDENTIAL 15
Naïve Bayes Classifier
Naive Bayes is a common technique used in the field of medical science
and is especially used for cancer detection.
The foundation of naive Bayes algorithm is the Baye’s theorem which
states that
P(B/A) = P(B) * P(A/B) / P(A)
For the case multiple variables, we evaluate the posterior probability as,
For classification, we may use the following equation:
© 2019 AyurData /CONFIDENTIAL 16
Neural Networks
A neural network is a series of algorithms that endeavours to recognize
underlying relationships in a set of data through a process that mimics the
way the human brain operates.
A neural network is akin to the human brain’s neural network. The basic
computational unit of the brain is a neuron. A ‘neuron’ in a neural network
is a mathematical function that collects and classifies information
according to a specific architecture.
© 2019 AyurData /CONFIDENTIAL 17
Neural Networks
A neural network could involve both forward and backward propagation.
After a series of iterations, the algorithm arrives at a decision on
identification or classification.
The use of neural networks in classification is illustrated using example
from Ayurveda.
© 2019 AyurData /CONFIDENTIAL 18
K-Nearest Neighbour Technique (K-NN)
K-NN is a simple algorithm that stores all available cases and classifies
new cases based on a similarity measure (e.g., distance functions). K-NN
can be used for both classification and predictive problems.
A case is classified by a majority vote of its neighbours meaning the case
being assigned to the most common class amongst its K nearest
neighbours measured by a distance function. Some of the distance
measures applicable for continuous variables are the following.
© 2019 AyurData /CONFIDENTIAL 19
Principal Component Analysis
Principal component analysis (PCA) is a technique for reducing the
dimensionality of a dataset, increasing interpretability but at the same time
minimizing information loss.
PCA uses an orthogonal transformation to convert a set of observations of
possibly correlated variables into a set of values of linearly uncorrelated
variables called principal components.
© 2019 AyurData /CONFIDENTIAL 20
Principal Component Analysis
The real advantage is that the variables in the transformed scale are
independent and a few components can usually account for a substantial
part of the total variance.
By interpreting the components in terms of the functions of the original
variables, hidden factors operating in the system can be identified which
are not directly measurable.
PC1 PC2 PC3 PC4 PC5
Age 0.125 0.066 -0.207 0.821 0.253
BMI 0.260 0.499 0.426 -0.071 -0.232
Glucose 0.439 -0.186 -0.131 0.126 0.200
Insulin 0.444 -0.386 0.094 -0.060 -0.298
HOMA 0.493 -0.375 -0.012 -0.006 -0.139
Leptin 0.331 0.234 0.583 0.058 0.288
Adiponectin -0.173 -0.481 0.282 -0.277 0.529
Resistin 0.282 0.304 -0.289 -0.303 0.598
MCP.1 0.255 0.210 -0.497 -0.359 -0.119
© 2019 AyurData /CONFIDENTIAL 21
Cluster Analysis
Cluster analysis is a multivariate method which aims to classify a
collection of objects on the basis of a set of measured variables into a
number of different groups such that similar subjects are placed in the
same group.
Clustering algorithms start with computing a distance measure between
the objects and then grouping them based on a clustering algorithm. The
distance measure varies with the scale of measurement and many
clustering algorithms are available which can be broadly classed as
hierarchical and non-hierarchical.
In the final step, we are left with a cluster diagram that depicts the different
groups and the extent of similarity/dissimilarity between the objects.
© 2019 AyurData /CONFIDENTIAL 22
Cluster Analysis
Hierarchical vs. Non-hierarchical clustering
© 2019 AyurData /CONFIDENTIAL 23
Stratified Multistage Sampling
This is one of the most popular sampling schemes in large scale surveys.
In Ayurveda, this sampling design can be used effectively in prevalence
studies and other types status surveys.
The basic idea is to group the population into homogeneous units based
on geographical proximity or based on other characteristics and then
implement a multistage sampling within each stratum.
A two stage sampling will take a sample of larger clusters of sampling
units (primary stage units) and then get a subsample of smaller cluster of
units (second stage units) with each selected first stage units.
Stratified subsampling can provide greater precision than a simple random
sample of the same size. Multistage sampling works the other way that
variance gets inflated by subsampling but saves time and effort.
© 2019 AyurData /CONFIDENTIAL 24
Analysis of Time Series Data
A time series is a sequence of observations recorded at a succession of time
intervals. It could be an output from an ECG or EEG, serial recording of pulse rate or
recordings of gait or tremor through digital devises from patients suffering from
Parkinson’s disease.
The peculiarity with time series data is that of correlation between successive
measurements (autocorrelation) which calls for special methods of analysis.
Quite often, the object of interest is to recognize the pattern of movements or
fluctuations over time and compare such patterns across different experimental
settings.
Methods for time series analysis may be divided into two classes: time-
domain methods and frequency-domain methods.
Time-domain methods splits the series into trend, cyclical, seasonal and random
components. Frequency-domain methods identifies mainly cyclical patterns through
spectral analysis, after making the series stationary.
© 2019 AyurData /CONFIDENTIAL 25
Analysis of Time Series Data
The power spectrum obtained through spectral analysis of heart rate shows
concentration at a frequency of about 0.015 Hz equivalent to a cycle duration of
64 seconds. This pattern is commonly observed in the context of congestive heart
failure, where circulatory delays interfere with regulation of carbon dioxide and
oxygen in the blood, leading to slow oscillations of heart rate.
© 2019 AyurData /CONFIDENTIAL 26
Analysis of Time-to-event Data
Time-to-event (TTE) data is unique because the outcome of interest is not only
whether or not an event occurred, but also ‘when’ that event occurred such as in
survival studies.
The major objects of interest are:
• S(t) = 1 – F(t): The survival function and the cumulative probability density
function.
• h(t)=f(t)/S(t): The instantaneous hazard equals the unconditional probability of
experiencing the event at time t, scaled by the fraction alive at time t.
• H(t) = -log[S(t)] The cumulative hazard function equals the negative log of the
survival function.
• S(t) = e –H(t) The survival function equals the exponentiated negative cumulative
hazard function.
One challenge specific to survival analysis is that only some individuals will have
experienced the event by the end of the study, and therefore survival times will be
unknown for a subset of the study group.
One of
© 2019 AyurData /CONFIDENTIAL 27
Analysis of Time-to-event Data
Special estimation methods and models are available to deal with such data.
Kaplan-Meier Estimator
Cox proportional hazards model
Accelerated Failure Time (AFT) models
The advanced manual discusses all the above methods
Survival curves for the two treatment groups
© 2019 AyurData /CONFIDENTIAL 28
Recommendations
In order to bring Ayurveda research in line with the mainstream scientific
research, there is a need to incorporate modern methods in research.
Ours was a humble attempt in this regard to bring to light some of the
more popular analytical methods in the Ayurveda context.
Our recommendation is to understand and utilize these techniques in your
research activities and bring Ayurveda to the forefront.
We are willing to conduct a training workshop on these methods for the
benefit of the researchers in Ayurveda.
Kindle edition of the book is available in amazon (link available in the
AyurData Facebook page):
https://www.facebook.com/pg/AyurData/posts/?ref=page_internal
© 2019 AyurData /CONFIDENTIAL 29
THANK YOU
© 2019 AyurData /CONFIDENTIAL 29
AyurData Team
Website: http://ayurdata.in/#service-content
Facebook: https://www.facebook.com/AyurData/

More Related Content

What's hot

A Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction TechniquesA Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction Techniquesijtsrd
 
Automatic Unsupervised Data Classification Using Jaya Evolutionary Algorithm
Automatic Unsupervised Data Classification Using Jaya Evolutionary AlgorithmAutomatic Unsupervised Data Classification Using Jaya Evolutionary Algorithm
Automatic Unsupervised Data Classification Using Jaya Evolutionary Algorithmaciijournal
 
Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3eSAT Journals
 
Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...
Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...
Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...ijtsrd
 
A new model for iris data set classification based on linear support vector m...
A new model for iris data set classification based on linear support vector m...A new model for iris data set classification based on linear support vector m...
A new model for iris data set classification based on linear support vector m...IJECEIAES
 
Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...
Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...
Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...ahmedbohy
 
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...IRJET Journal
 
EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...
EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...
EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...ijistjournal
 
POSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELS
POSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELSPOSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELS
POSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELScscpconf
 
Fuzzy logic applications for data acquisition systems of practical measurement
Fuzzy logic applications for data acquisition systems  of practical measurement Fuzzy logic applications for data acquisition systems  of practical measurement
Fuzzy logic applications for data acquisition systems of practical measurement IJECEIAES
 
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...IOSRjournaljce
 
IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...
IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...
IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...csandit
 
A study on rough set theory based
A study on rough set theory basedA study on rough set theory based
A study on rough set theory basedijaia
 
Comparative study of various supervisedclassification methodsforanalysing def...
Comparative study of various supervisedclassification methodsforanalysing def...Comparative study of various supervisedclassification methodsforanalysing def...
Comparative study of various supervisedclassification methodsforanalysing def...eSAT Publishing House
 
Mis End Term Exam Theory Concepts
Mis End Term Exam Theory ConceptsMis End Term Exam Theory Concepts
Mis End Term Exam Theory ConceptsVidya sagar Sharma
 
Evidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care locationEvidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care locationIJAAS Team
 
Classification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueClassification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueeSAT Publishing House
 
Performance evaluation of hepatitis diagnosis using single and multi classifi...
Performance evaluation of hepatitis diagnosis using single and multi classifi...Performance evaluation of hepatitis diagnosis using single and multi classifi...
Performance evaluation of hepatitis diagnosis using single and multi classifi...ahmedbohy
 

What's hot (20)

A Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction TechniquesA Survey on Heart Disease Prediction Techniques
A Survey on Heart Disease Prediction Techniques
 
Automatic Unsupervised Data Classification Using Jaya Evolutionary Algorithm
Automatic Unsupervised Data Classification Using Jaya Evolutionary AlgorithmAutomatic Unsupervised Data Classification Using Jaya Evolutionary Algorithm
Automatic Unsupervised Data Classification Using Jaya Evolutionary Algorithm
 
Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3
 
Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...
Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...
Adaptive Classification of Imbalanced Data using ANN with Particle of Swarm O...
 
A new model for iris data set classification based on linear support vector m...
A new model for iris data set classification based on linear support vector m...A new model for iris data set classification based on linear support vector m...
A new model for iris data set classification based on linear support vector m...
 
Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...
Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...
Novel Frequency Domain Classification Algorithm Based On Parameter Weight Fac...
 
DataMining_CA2-4
DataMining_CA2-4DataMining_CA2-4
DataMining_CA2-4
 
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
 
EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...
EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...
EXTRACTING USEFUL RULES THROUGH IMPROVED DECISION TREE INDUCTION USING INFORM...
 
POSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELS
POSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELSPOSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELS
POSSIBILISTIC SHARPE RATIO BASED NOVICE PORTFOLIO SELECTION MODELS
 
Fuzzy logic applications for data acquisition systems of practical measurement
Fuzzy logic applications for data acquisition systems  of practical measurement Fuzzy logic applications for data acquisition systems  of practical measurement
Fuzzy logic applications for data acquisition systems of practical measurement
 
U0 vqmtq2otq=
U0 vqmtq2otq=U0 vqmtq2otq=
U0 vqmtq2otq=
 
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
 
IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...
IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...
IMPROVED NEURAL NETWORK PREDICTION PERFORMANCES OF ELECTRICITY DEMAND: MODIFY...
 
A study on rough set theory based
A study on rough set theory basedA study on rough set theory based
A study on rough set theory based
 
Comparative study of various supervisedclassification methodsforanalysing def...
Comparative study of various supervisedclassification methodsforanalysing def...Comparative study of various supervisedclassification methodsforanalysing def...
Comparative study of various supervisedclassification methodsforanalysing def...
 
Mis End Term Exam Theory Concepts
Mis End Term Exam Theory ConceptsMis End Term Exam Theory Concepts
Mis End Term Exam Theory Concepts
 
Evidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care locationEvidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care location
 
Classification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueClassification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining technique
 
Performance evaluation of hepatitis diagnosis using single and multi classifi...
Performance evaluation of hepatitis diagnosis using single and multi classifi...Performance evaluation of hepatitis diagnosis using single and multi classifi...
Performance evaluation of hepatitis diagnosis using single and multi classifi...
 

Similar to Advanced Statistical Manual for Ayurveda Research

Advanced statistical manual part ii
Advanced statistical manual part iiAdvanced statistical manual part ii
Advanced statistical manual part iiAyurdata
 
Analysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetAnalysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetIRJET Journal
 
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...IRJET Journal
 
Stat Methods in ayurveda
Stat Methods in ayurvedaStat Methods in ayurveda
Stat Methods in ayurvedaAyurdata
 
Assigning Scores For Ordered Categorical Responses
Assigning Scores For Ordered Categorical ResponsesAssigning Scores For Ordered Categorical Responses
Assigning Scores For Ordered Categorical ResponsesMary Montoya
 
MULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTION
MULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTIONMULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTION
MULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTIONIJDKP
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningIRJET Journal
 
A comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data setsA comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data setseSAT Publishing House
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MININGAshish Salve
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAIRCC Publishing Corporation
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISijcsit
 
IRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer PredictionIRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer PredictionIRJET Journal
 
Prediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachPrediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachIRJET Journal
 
prediction using data mining.pdf
prediction using data mining.pdfprediction using data mining.pdf
prediction using data mining.pdfNavAhmed3
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine LearningIRJET Journal
 
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...IRJET Journal
 
Efficiency of Prediction Algorithms for Mining Biological Databases
Efficiency of Prediction Algorithms for Mining Biological  DatabasesEfficiency of Prediction Algorithms for Mining Biological  Databases
Efficiency of Prediction Algorithms for Mining Biological DatabasesIOSR Journals
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET Journal
 

Similar to Advanced Statistical Manual for Ayurveda Research (20)

Advanced statistical manual part ii
Advanced statistical manual part iiAdvanced statistical manual part ii
Advanced statistical manual part ii
 
Presentation 5.pptx
Presentation 5.pptxPresentation 5.pptx
Presentation 5.pptx
 
Analysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetAnalysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease Dataset
 
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
 
Stat Methods in ayurveda
Stat Methods in ayurvedaStat Methods in ayurveda
Stat Methods in ayurveda
 
Assigning Scores For Ordered Categorical Responses
Assigning Scores For Ordered Categorical ResponsesAssigning Scores For Ordered Categorical Responses
Assigning Scores For Ordered Categorical Responses
 
MULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTION
MULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTIONMULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTION
MULTI MODEL DATA MINING APPROACH FOR HEART FAILURE PREDICTION
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep Learning
 
A comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data setsA comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data sets
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MINING
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
 
IRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer PredictionIRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer Prediction
 
Prediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachPrediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability Approach
 
prediction using data mining.pdf
prediction using data mining.pdfprediction using data mining.pdf
prediction using data mining.pdf
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine Learning
 
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
 
Efficiency of Prediction Algorithms for Mining Biological Databases
Efficiency of Prediction Algorithms for Mining Biological  DatabasesEfficiency of Prediction Algorithms for Mining Biological  Databases
Efficiency of Prediction Algorithms for Mining Biological Databases
 
Issues in DTL.pptx
Issues in DTL.pptxIssues in DTL.pptx
Issues in DTL.pptx
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data Mining
 

More from Ayurdata

Statistical distributions
Statistical distributionsStatistical distributions
Statistical distributionsAyurdata
 
Health Behaviour: An Ayurveda Perspective
Health Behaviour: An Ayurveda PerspectiveHealth Behaviour: An Ayurveda Perspective
Health Behaviour: An Ayurveda PerspectiveAyurdata
 
Ayur data
Ayur data Ayur data
Ayur data Ayurdata
 
Ayurveda colleges and courses
Ayurveda colleges and coursesAyurveda colleges and courses
Ayurveda colleges and coursesAyurdata
 
AyurData Ayurveda Webinar
AyurData Ayurveda WebinarAyurData Ayurveda Webinar
AyurData Ayurveda WebinarAyurdata
 
Advanced manual part 4
Advanced manual part 4Advanced manual part 4
Advanced manual part 4Ayurdata
 
Investigation modes in ayurveda
Investigation modes in ayurvedaInvestigation modes in ayurveda
Investigation modes in ayurvedaAyurdata
 
Advanced Statistical Manual Part III
Advanced Statistical Manual Part IIIAdvanced Statistical Manual Part III
Advanced Statistical Manual Part IIIAyurdata
 
Advanced statistical manual for ayurveda research sample
Advanced statistical manual for ayurveda research sampleAdvanced statistical manual for ayurveda research sample
Advanced statistical manual for ayurveda research sampleAyurdata
 
Ayurveda vs allopathy
Ayurveda vs allopathyAyurveda vs allopathy
Ayurveda vs allopathyAyurdata
 
Meta-Analysis in Ayurveda
Meta-Analysis in AyurvedaMeta-Analysis in Ayurveda
Meta-Analysis in AyurvedaAyurdata
 
A manual on statistical analysis in ayurveda research
A manual on statistical analysis in ayurveda researchA manual on statistical analysis in ayurveda research
A manual on statistical analysis in ayurveda researchAyurdata
 
Ich sample size
Ich sample sizeIch sample size
Ich sample sizeAyurdata
 
Classifiers
ClassifiersClassifiers
ClassifiersAyurdata
 
Logistic regression
Logistic regressionLogistic regression
Logistic regressionAyurdata
 
Ayur data startup
Ayur data startupAyur data startup
Ayur data startupAyurdata
 
Naive bayes
Naive bayesNaive bayes
Naive bayesAyurdata
 

More from Ayurdata (18)

Statistical distributions
Statistical distributionsStatistical distributions
Statistical distributions
 
BMI
BMIBMI
BMI
 
Health Behaviour: An Ayurveda Perspective
Health Behaviour: An Ayurveda PerspectiveHealth Behaviour: An Ayurveda Perspective
Health Behaviour: An Ayurveda Perspective
 
Ayur data
Ayur data Ayur data
Ayur data
 
Ayurveda colleges and courses
Ayurveda colleges and coursesAyurveda colleges and courses
Ayurveda colleges and courses
 
AyurData Ayurveda Webinar
AyurData Ayurveda WebinarAyurData Ayurveda Webinar
AyurData Ayurveda Webinar
 
Advanced manual part 4
Advanced manual part 4Advanced manual part 4
Advanced manual part 4
 
Investigation modes in ayurveda
Investigation modes in ayurvedaInvestigation modes in ayurveda
Investigation modes in ayurveda
 
Advanced Statistical Manual Part III
Advanced Statistical Manual Part IIIAdvanced Statistical Manual Part III
Advanced Statistical Manual Part III
 
Advanced statistical manual for ayurveda research sample
Advanced statistical manual for ayurveda research sampleAdvanced statistical manual for ayurveda research sample
Advanced statistical manual for ayurveda research sample
 
Ayurveda vs allopathy
Ayurveda vs allopathyAyurveda vs allopathy
Ayurveda vs allopathy
 
Meta-Analysis in Ayurveda
Meta-Analysis in AyurvedaMeta-Analysis in Ayurveda
Meta-Analysis in Ayurveda
 
A manual on statistical analysis in ayurveda research
A manual on statistical analysis in ayurveda researchA manual on statistical analysis in ayurveda research
A manual on statistical analysis in ayurveda research
 
Ich sample size
Ich sample sizeIch sample size
Ich sample size
 
Classifiers
ClassifiersClassifiers
Classifiers
 
Logistic regression
Logistic regressionLogistic regression
Logistic regression
 
Ayur data startup
Ayur data startupAyur data startup
Ayur data startup
 
Naive bayes
Naive bayesNaive bayes
Naive bayes
 

Recently uploaded

Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingNeil Barnes
 
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Bookvip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Bookmanojkuma9823
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...soniya singh
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改yuu sss
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxFurkanTasci3
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptxthyngster
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 

Recently uploaded (20)

Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data Storytelling
 
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Bookvip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptx
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 

Advanced Statistical Manual for Ayurveda Research

  • 1. CONFIDENTIAL © 2019 AyurData Balance Calmness Serenity Introducing Advanced Statistical Manual for Ayurveda Research Kadiroo Jayaraman Praveen Venugopal AyurData
  • 2. © 2019 AyurData /CONFIDENTIAL 2 The basic manual covered the syllabus specified for M.D. students on Medical Statistics, by the Central Council of Indian Medicine. Earlier Release
  • 3. © 2019 AyurData /CONFIDENTIAL 3 In the advanced manual, we have covered more advanced statistical applications including that in data science. The mode of presentation is that the concept is introduced first, followed by illustration and the use in a real context. Some mathematics will be involved but well explained in the text. Current Release
  • 4. © 2019 AyurData /CONFIDENTIAL 4 TOPICS COVERED 1.Analysis of Repeated Measures 2.Multiple Linear Regression 3.Superiority, Bioequivalence and Non-inferiority trials 4.Logistic Regression 5.Decision Trees 6.Random Forest 7.Support Vector Machines 8.Naïve Bayes Classifier 9.Neural Networks 10.K-Nearest Neighbour Technique 11.Principal Component Analysis 12.Cluster Analysis 13.Stratified Multistage Sampling 14.Analysis of Time Series Data 15.Analysis of Time-to-event Data
  • 5. © 2019 AyurData /CONFIDENTIAL 5 ANALYSIS OF REPEATED MEASURES Repeated measurements is a common case in Ayurveda experiments. Repeated measurements on the same individual would be correlated and so require special analysis.
  • 6. © 2019 AyurData /CONFIDENTIAL 6 ANALYSIS OF REPEATED MEASURES ANOVA table for two-way with repeated measures for one factor For instance, Factor A could be treatment and B could be age group provided the patients have been stratified based on age group. In case age was a taken as a baseline variable that is continuous, it can be included as a covariate in the model. The computations and interpretations are well-explained in the manual.
  • 7. © 2019 AyurData /CONFIDENTIAL 7 MULTIPLE LINEAR REGRESSION The model we are covering is, which in the matrix form would be, The model fitting, testing and residual analysis are illustrated using a real-life dataset.
  • 8. © 2019 AyurData /CONFIDENTIAL 8 Superiority, Bioequivalence and Non-inferiority trials In many practical situations, we encounter the following types of comparisons: • The new drug is better than the standard drug. • The new drug is equivalent to the standard drug. • The new drug is at least as good as the standard drug. The hypothesis and test criterion to be employed in each of the above cases have to be different. For instance, Superiority hypothesis H0: ∆ = 0 H1: ∆ ≠ 0, or (∆ > 0, or ∆ <0 for one-tailed tests)
  • 9. © 2019 AyurData /CONFIDENTIAL 9 Superiority, Bioequivalence and Non-inferiority trials Bio-equivalence hypothesis H0: ∆ > ∆E or ∆ < -∆E H1: ∆E ≤ ∆ ≤ ∆E where ∆E is a clinically relevant equivalence margin (usually 10%). Non-inferiority hypothesis H0: ∆ ≤-∆NI H1: ∆ >-∆NI where ∆NI is a clinically relevant non-inferiority margin (usually 10%). The tests involved and the interpretation are illustrated using examples from Ayurveda.
  • 10. © 2019 AyurData /CONFIDENTIAL 10 Logistic Regression Logistic model (or logit model) is used to model the probability of events realized in two classes such as alive/dead or healthy/sick etc. The dependent variable in this case would take values of 1 or 0. The theoretical form of the model is, Logistic models are especially suited for case-control studies and are useful in understanding the predisposing factors leading to a diseased condition. The fitting of the logistic model including the derivation of ROC curve and optimal cut-off points and measuring the goodness of fit are illustrated using real data from Ayurveda.
  • 11. © 2019 AyurData /CONFIDENTIAL 11 Decision Trees Decision tree is a type of supervised learning algorithm (having a pre- defined target variable) that is mostly used in classification problems. In this technique, we split the population or sample into two or more homogeneous sets (or sub-populations) based on the most significant splitter/differentiator in input variables. One popular measure used for spitting is the information gain. This is equivalent to selecting a particular node with maximum reduction in entropy as measured by Shannon’s index (H). where s is the number of groups at a node and indicate the proportion of individuals in the ith group.
  • 12. © 2019 AyurData /CONFIDENTIAL 12 Decision Trees Decision tree for exposure factors of Coronary Artery Disease
  • 13. © 2019 AyurData /CONFIDENTIAL 13 Random Forest Random forest is an ensemble technique in which the idea is to generate multiple models on a training dataset and then simply combine (average) their output rules or their hypotheses to generate a stronger model which performs very well. For instance, in the case of fitting a decision tree, we consider fitting several decision trees and taking the average decision tree. It consists of a resampling plan that considers not only subsamples but also a subset of features in each sample generated. This way, it gives out a model with considerably better efficiency in prediction or classification. The use of random forest is illustrated in the context of some real data in Ayurveda.
  • 14. © 2019 AyurData /CONFIDENTIAL 14 Support Vector Machines Given a set of training examples, each marked as belonging to one or the other of two categories, a support vector machine (SVM) training algorithm builds a model that assigns new examples to one category or the other. In theory, SVM is a discriminative classifier formally defined by a separating hyperplane. It is useful for even for non-linear separation of the data points.
  • 15. © 2019 AyurData /CONFIDENTIAL 15 Naïve Bayes Classifier Naive Bayes is a common technique used in the field of medical science and is especially used for cancer detection. The foundation of naive Bayes algorithm is the Baye’s theorem which states that P(B/A) = P(B) * P(A/B) / P(A) For the case multiple variables, we evaluate the posterior probability as, For classification, we may use the following equation:
  • 16. © 2019 AyurData /CONFIDENTIAL 16 Neural Networks A neural network is a series of algorithms that endeavours to recognize underlying relationships in a set of data through a process that mimics the way the human brain operates. A neural network is akin to the human brain’s neural network. The basic computational unit of the brain is a neuron. A ‘neuron’ in a neural network is a mathematical function that collects and classifies information according to a specific architecture.
  • 17. © 2019 AyurData /CONFIDENTIAL 17 Neural Networks A neural network could involve both forward and backward propagation. After a series of iterations, the algorithm arrives at a decision on identification or classification. The use of neural networks in classification is illustrated using example from Ayurveda.
  • 18. © 2019 AyurData /CONFIDENTIAL 18 K-Nearest Neighbour Technique (K-NN) K-NN is a simple algorithm that stores all available cases and classifies new cases based on a similarity measure (e.g., distance functions). K-NN can be used for both classification and predictive problems. A case is classified by a majority vote of its neighbours meaning the case being assigned to the most common class amongst its K nearest neighbours measured by a distance function. Some of the distance measures applicable for continuous variables are the following.
  • 19. © 2019 AyurData /CONFIDENTIAL 19 Principal Component Analysis Principal component analysis (PCA) is a technique for reducing the dimensionality of a dataset, increasing interpretability but at the same time minimizing information loss. PCA uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components.
  • 20. © 2019 AyurData /CONFIDENTIAL 20 Principal Component Analysis The real advantage is that the variables in the transformed scale are independent and a few components can usually account for a substantial part of the total variance. By interpreting the components in terms of the functions of the original variables, hidden factors operating in the system can be identified which are not directly measurable. PC1 PC2 PC3 PC4 PC5 Age 0.125 0.066 -0.207 0.821 0.253 BMI 0.260 0.499 0.426 -0.071 -0.232 Glucose 0.439 -0.186 -0.131 0.126 0.200 Insulin 0.444 -0.386 0.094 -0.060 -0.298 HOMA 0.493 -0.375 -0.012 -0.006 -0.139 Leptin 0.331 0.234 0.583 0.058 0.288 Adiponectin -0.173 -0.481 0.282 -0.277 0.529 Resistin 0.282 0.304 -0.289 -0.303 0.598 MCP.1 0.255 0.210 -0.497 -0.359 -0.119
  • 21. © 2019 AyurData /CONFIDENTIAL 21 Cluster Analysis Cluster analysis is a multivariate method which aims to classify a collection of objects on the basis of a set of measured variables into a number of different groups such that similar subjects are placed in the same group. Clustering algorithms start with computing a distance measure between the objects and then grouping them based on a clustering algorithm. The distance measure varies with the scale of measurement and many clustering algorithms are available which can be broadly classed as hierarchical and non-hierarchical. In the final step, we are left with a cluster diagram that depicts the different groups and the extent of similarity/dissimilarity between the objects.
  • 22. © 2019 AyurData /CONFIDENTIAL 22 Cluster Analysis Hierarchical vs. Non-hierarchical clustering
  • 23. © 2019 AyurData /CONFIDENTIAL 23 Stratified Multistage Sampling This is one of the most popular sampling schemes in large scale surveys. In Ayurveda, this sampling design can be used effectively in prevalence studies and other types status surveys. The basic idea is to group the population into homogeneous units based on geographical proximity or based on other characteristics and then implement a multistage sampling within each stratum. A two stage sampling will take a sample of larger clusters of sampling units (primary stage units) and then get a subsample of smaller cluster of units (second stage units) with each selected first stage units. Stratified subsampling can provide greater precision than a simple random sample of the same size. Multistage sampling works the other way that variance gets inflated by subsampling but saves time and effort.
  • 24. © 2019 AyurData /CONFIDENTIAL 24 Analysis of Time Series Data A time series is a sequence of observations recorded at a succession of time intervals. It could be an output from an ECG or EEG, serial recording of pulse rate or recordings of gait or tremor through digital devises from patients suffering from Parkinson’s disease. The peculiarity with time series data is that of correlation between successive measurements (autocorrelation) which calls for special methods of analysis. Quite often, the object of interest is to recognize the pattern of movements or fluctuations over time and compare such patterns across different experimental settings. Methods for time series analysis may be divided into two classes: time- domain methods and frequency-domain methods. Time-domain methods splits the series into trend, cyclical, seasonal and random components. Frequency-domain methods identifies mainly cyclical patterns through spectral analysis, after making the series stationary.
  • 25. © 2019 AyurData /CONFIDENTIAL 25 Analysis of Time Series Data The power spectrum obtained through spectral analysis of heart rate shows concentration at a frequency of about 0.015 Hz equivalent to a cycle duration of 64 seconds. This pattern is commonly observed in the context of congestive heart failure, where circulatory delays interfere with regulation of carbon dioxide and oxygen in the blood, leading to slow oscillations of heart rate.
  • 26. © 2019 AyurData /CONFIDENTIAL 26 Analysis of Time-to-event Data Time-to-event (TTE) data is unique because the outcome of interest is not only whether or not an event occurred, but also ‘when’ that event occurred such as in survival studies. The major objects of interest are: • S(t) = 1 – F(t): The survival function and the cumulative probability density function. • h(t)=f(t)/S(t): The instantaneous hazard equals the unconditional probability of experiencing the event at time t, scaled by the fraction alive at time t. • H(t) = -log[S(t)] The cumulative hazard function equals the negative log of the survival function. • S(t) = e –H(t) The survival function equals the exponentiated negative cumulative hazard function. One challenge specific to survival analysis is that only some individuals will have experienced the event by the end of the study, and therefore survival times will be unknown for a subset of the study group. One of
  • 27. © 2019 AyurData /CONFIDENTIAL 27 Analysis of Time-to-event Data Special estimation methods and models are available to deal with such data. Kaplan-Meier Estimator Cox proportional hazards model Accelerated Failure Time (AFT) models The advanced manual discusses all the above methods Survival curves for the two treatment groups
  • 28. © 2019 AyurData /CONFIDENTIAL 28 Recommendations In order to bring Ayurveda research in line with the mainstream scientific research, there is a need to incorporate modern methods in research. Ours was a humble attempt in this regard to bring to light some of the more popular analytical methods in the Ayurveda context. Our recommendation is to understand and utilize these techniques in your research activities and bring Ayurveda to the forefront. We are willing to conduct a training workshop on these methods for the benefit of the researchers in Ayurveda. Kindle edition of the book is available in amazon (link available in the AyurData Facebook page): https://www.facebook.com/pg/AyurData/posts/?ref=page_internal
  • 29. © 2019 AyurData /CONFIDENTIAL 29 THANK YOU © 2019 AyurData /CONFIDENTIAL 29 AyurData Team Website: http://ayurdata.in/#service-content Facebook: https://www.facebook.com/AyurData/