SlideShare a Scribd company logo
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 Techniques
ijtsrd
 
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
aciijournal
 
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
eSAT 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
 
DataMining_CA2-4
DataMining_CA2-4DataMining_CA2-4
DataMining_CA2-4
Aravind Kumar
 
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 MODELS
cscpconf
 
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
 
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...
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 based
ijaia
 
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 Concepts
Vidya 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 location
IJAAS 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 technique
eSAT 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 ii
Ayurdata
 
Presentation 5.pptx
Presentation 5.pptxPresentation 5.pptx
Presentation 5.pptx
MDIBRAHIM107454
 
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 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 ayurveda
Ayurdata
 
Assigning Scores For Ordered Categorical Responses
Assigning Scores For Ordered Categorical ResponsesAssigning Scores For Ordered Categorical Responses
Assigning Scores For Ordered Categorical Responses
Mary 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 PREDICTION
IJDKP
 
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
IRJET 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 sets
eSAT Publishing House
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MINING
Ashish 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 DIAGNOSIS
AIRCC 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 DIAGNOSIS
ijcsit
 
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
IRJET Journal
 
Prediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability ApproachPrediction of Diabetes using Probability Approach
Prediction of Diabetes using Probability Approach
IRJET Journal
 
prediction using data mining.pdf
prediction using data mining.pdfprediction using data mining.pdf
prediction using data mining.pdf
NavAhmed3
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine Learning
IRJET 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 Databases
IOSR Journals
 
Issues in DTL.pptx
Issues in DTL.pptxIssues in DTL.pptx
Issues in DTL.pptx
Ramakrishna Reddy Bijjam
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data Mining
IRJET 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 distributions
Ayurdata
 
BMI
BMIBMI
Health Behaviour: An Ayurveda Perspective
Health Behaviour: An Ayurveda PerspectiveHealth Behaviour: An Ayurveda Perspective
Health Behaviour: An Ayurveda Perspective
Ayurdata
 
Ayur data
Ayur data Ayur data
Ayur data
Ayurdata
 
Ayurveda colleges and courses
Ayurveda colleges and coursesAyurveda colleges and courses
Ayurveda colleges and courses
Ayurdata
 
AyurData Ayurveda Webinar
AyurData Ayurveda WebinarAyurData Ayurveda Webinar
AyurData Ayurveda Webinar
Ayurdata
 
Advanced manual part 4
Advanced manual part 4Advanced manual part 4
Advanced manual part 4
Ayurdata
 
Investigation modes in ayurveda
Investigation modes in ayurvedaInvestigation modes in ayurveda
Investigation modes in ayurveda
Ayurdata
 
Advanced Statistical Manual Part III
Advanced Statistical Manual Part IIIAdvanced Statistical Manual Part III
Advanced Statistical Manual Part III
Ayurdata
 
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
Ayurdata
 
Ayurveda vs allopathy
Ayurveda vs allopathyAyurveda vs allopathy
Ayurveda vs allopathy
Ayurdata
 
Meta-Analysis in Ayurveda
Meta-Analysis in AyurvedaMeta-Analysis in Ayurveda
Meta-Analysis in Ayurveda
Ayurdata
 
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
Ayurdata
 
Ich sample size
Ich sample sizeIch sample size
Ich sample size
Ayurdata
 
Classifiers
ClassifiersClassifiers
Classifiers
Ayurdata
 
Logistic regression
Logistic regressionLogistic regression
Logistic regression
Ayurdata
 
Ayur data startup
Ayur data startupAyur data startup
Ayur data startup
Ayurdata
 
Naive bayes
Naive bayesNaive bayes
Naive bayes
Ayurdata
 

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

[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
Vietnam Cotton & Spinning Association
 
8 things to know before you start to code in 2024
8 things to know before you start to code in 20248 things to know before you start to code in 2024
8 things to know before you start to code in 2024
ArianaRamos54
 
一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理
一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理
一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理
mbawufebxi
 
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
oaxefes
 
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
eoxhsaa
 
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
ywqeos
 
Namma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdf
Namma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdfNamma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdf
Namma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdf
22ad0301
 
Digital Marketing Performance Marketing Sample .pdf
Digital Marketing Performance Marketing  Sample .pdfDigital Marketing Performance Marketing  Sample .pdf
Digital Marketing Performance Marketing Sample .pdf
Vineet
 
[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024
Vietnam Cotton & Spinning Association
 
Econ3060_Screen Time and Success_ final_GroupProject.pdf
Econ3060_Screen Time and Success_ final_GroupProject.pdfEcon3060_Screen Time and Success_ final_GroupProject.pdf
Econ3060_Screen Time and Success_ final_GroupProject.pdf
blueshagoo1
 
原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理
原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理 原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理
原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理
tzu5xla
 
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCAModule 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
yuvarajkumar334
 
一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理
一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理
一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理
hyfjgavov
 
Build applications with generative AI on Google Cloud
Build applications with generative AI on Google CloudBuild applications with generative AI on Google Cloud
Build applications with generative AI on Google Cloud
Márton Kodok
 
Sample Devops SRE Product Companies .pdf
Sample Devops SRE  Product Companies .pdfSample Devops SRE  Product Companies .pdf
Sample Devops SRE Product Companies .pdf
Vineet
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
bmucuha
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
SaffaIbrahim1
 
一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理
zsafxbf
 
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdfOverview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
nhutnguyen355078
 
一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理
一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理
一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理
actyx
 

Recently uploaded (20)

[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
 
8 things to know before you start to code in 2024
8 things to know before you start to code in 20248 things to know before you start to code in 2024
8 things to know before you start to code in 2024
 
一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理
一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理
一比一原版雷丁大学毕业证(UoR毕业证书)学历如何办理
 
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
 
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
 
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
 
Namma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdf
Namma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdfNamma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdf
Namma-Kalvi-11th-Physics-Study-Material-Unit-1-EM-221086.pdf
 
Digital Marketing Performance Marketing Sample .pdf
Digital Marketing Performance Marketing  Sample .pdfDigital Marketing Performance Marketing  Sample .pdf
Digital Marketing Performance Marketing Sample .pdf
 
[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics March 2024
 
Econ3060_Screen Time and Success_ final_GroupProject.pdf
Econ3060_Screen Time and Success_ final_GroupProject.pdfEcon3060_Screen Time and Success_ final_GroupProject.pdf
Econ3060_Screen Time and Success_ final_GroupProject.pdf
 
原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理
原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理 原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理
原版一比一爱尔兰都柏林大学毕业证(UCD毕业证书)如何办理
 
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCAModule 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
 
一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理
一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理
一比一原版兰加拉学院毕业证(Langara毕业证书)学历如何办理
 
Build applications with generative AI on Google Cloud
Build applications with generative AI on Google CloudBuild applications with generative AI on Google Cloud
Build applications with generative AI on Google Cloud
 
Sample Devops SRE Product Companies .pdf
Sample Devops SRE  Product Companies .pdfSample Devops SRE  Product Companies .pdf
Sample Devops SRE Product Companies .pdf
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
 
一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理
 
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdfOverview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
 
一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理
一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理
一比一原版斯威本理工大学毕业证(swinburne毕业证)如何办理
 

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/