Skip to content

Instantly share code, notes, and snippets.

@kenwebb
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenwebb/c48e278ac02dce038398 to your computer and use it in GitHub Desktop.
Save kenwebb/c48e278ac02dce038398 to your computer and use it in GitHub Desktop.
Bayesian inference 3
<?xml version="1.0" encoding="UTF-8"?>
<!--Xholon Workbook http://www.primordion.com/Xholon/gwt/ MIT License, Copyright (C) Ken Webb, Mon May 12 2014 08:20:26 GMT-0400 (EDT)-->
<XholonWorkbook>
<Notes><![CDATA[
Xholon
------
Title: Bayesian inference 3
Description:
Url: http://www.primordion.com/Xholon/gwt/
InternalName: c48e278ac02dce038398
Keywords:
My Notes
--------
This is associated with XholonWorkbook ceb4083319ebfa4a7bd0
Dr James V Stone of the Psychology Department at Sheffield University in the UK, has written a book called "Bayes' Rule - A Tutorial Introduction to Bayesian Analysis". The first chapter[1] includes an extensive introductory example called "Poxy Diseases".
Updated May 12, 2014
--------------------
I've exported the loaded app to mind map (Freemind .mm) format.
I loaded the resulting .mm file into Freemind 1.0.1, and exported it from Freemind as SVG.
I pasted the resulting SVG into this workbook.
This is a quick way to get a nice graphic.
References
----------
(1) http://jim-stone.staff.shef.ac.uk/BookBayes2012/bookbayesch01.pdf
(2) http://en.wikipedia.org/wiki/Bayesian_inference
(3) http://freemind.sourceforge.net/wiki/index.php/Main_Page
]]></Notes>
<_-.XholonClass>
<BayesianSystem/>
<!-- types of objects (entities) in the statistician Thomas Bayes' domain [2] -->
<BayesianEntity>
<HypothesisBE> <!-- H "H stands for any hypothesis whose probability may be affected by data (called evidence below). Often there are competing hypotheses, from which one chooses the most probable." -->
<Smallpox/> <!-- hypothesis that the patient's disease is smallpox -->
<Chickenpox/> <!-- hypothesis that the patient's disease is chickenpox -->
</HypothesisBE>
<EvidenceBE> <!-- E data "the evidence E corresponds to new data that were not used in computing the prior probability" -->
<Spots/> <!-- evidence that the patient's symptoms are spots -->
</EvidenceBE>
<AntecedentBE>
<PriorProbabilityBE/> <!-- P(H) "the prior probability, is the probability of H before E is observed. This indicates one's previous estimate of the probability that a hypothesis is true, before gaining the current evidence." -->
<LikelihoodBE/> <!-- P(E|H) "the probability of observing E given H. As a function of E with H fixed, this is the likelihood. The likelihood function should not be confused with P(H | E) as a function of H rather than of E. It indicates the compatibility of the evidence with the given hypothesis." -->
</AntecedentBE>
<PosteriorProbabilityBE/> <!-- P(H|E) "the posterior probability, is the probability of H given E, i.e., after E is observed. This tells us what we want to know: the probability of a hypothesis given the observed evidence." -->
<MarginalLikelihoodBE/> <!-- P(E) "P(E) is sometimes termed the marginal likelihood or 'model evidence'. This factor is the same for all possible hypotheses being considered. (This can be seen by the fact that the hypothesis H does not appear anywhere in the symbol, unlike for all the other factors.) This means that this factor does not enter into determining the relative probabilities of different hypotheses." -->
<PosteriorRatioBE/> <!-- ratio between two (or more?) posterior probabilities -->
<!-- collections, containers -->
<HypothesesBE/>
<EvidencesBE/> <!-- symptoms -->
<ModelsBE/> <!-- diseases, a set of candidate models -->
<ModelBE/> <!-- disease -->
</BayesianEntity>
</_-.XholonClass>
<xholonClassDetails>
<LikelihoodBE>
<port name="evidence" connector="../../../EvidencesBE/Spots"/>
<port name="hypothesis" connector=".[@roleName='p(spots|chickenpox)']/../../../HypothesesBE/Chickenpox"/>
<port name="hypothesis" connector=".[@roleName='p(spots|smallpox)']/../../../HypothesesBE/Smallpox"/>
</LikelihoodBE>
<PriorProbabilityBE>
<port name="hypothesis" connector=".[@roleName='p(chickenpox)']/../../../HypothesesBE/Chickenpox"/>
<port name="hypothesis" connector=".[@roleName='p(smallpox)']/../../../HypothesesBE/Smallpox"/>
</PriorProbabilityBE>
<MarginalLikelihoodBE>
<port name="evidence" connector="../../../EvidencesBE/Spots"/>
</MarginalLikelihoodBE>
<PosteriorProbabilityBE>
<port name="hypothesis" connector=".[@roleName='p(chickenpox|spots)']/../../../HypothesesBE/Chickenpox"/>
<port name="hypothesis" connector=".[@roleName='p(smallpox|spots)']/../../../HypothesesBE/Smallpox"/>
<port name="evidence" connector="../../../EvidencesBE/Spots"/>
</PosteriorProbabilityBE>
</xholonClassDetails>
<BayesianSystem>
<!-- see Figure 1.4 [1] -->
<HypothesesBE>
<Chickenpox/>
<Smallpox/>
</HypothesesBE>
<EvidencesBE>
<Spots/>
</EvidencesBE>
<ModelsBE>
<!-- the goal is to select the most probable of these candidate models, this is called 'model selection' -->
<ModelBE>
<LikelihoodBE roleName="p(spots|chickenpox)" val="0.8"/>
<PriorProbabilityBE roleName="p(chickenpox)" val="0.1"/>
<MarginalLikelihoodBE roleName="p(spots)" val="0.081"/>
<PosteriorProbabilityBE roleName="p(chickenpox|spots)"/> <!-- calculated result should be 0.988 -->
</ModelBE>
<ModelBE>
<LikelihoodBE roleName="p(spots|smallpox)" val="0.9"/> <!-- maximum likelihood estimate (MLE) -->
<PriorProbabilityBE roleName="p(smallpox)" val="0.001"/>
<MarginalLikelihoodBE roleName="p(spots)" val="0.081"/>
<PosteriorProbabilityBE roleName="p(smallpox|spots)"/> <!-- calculated result should be 0.011 -->
</ModelBE>
</ModelsBE>
<PosteriorRatioBE/>
</BayesianSystem>
<PosteriorProbabilityBEbehavior implName="org.primordion.xholon.base.Behavior_gwtjs"><![CDATA[
var posterior;
var beh = {
postConfigure: function() {
posterior = this.cnode.parent();
var likelihood = posterior.parent().first();
var prior = likelihood.next();
var marginalLikelihood = prior.next();
posterior.val((likelihood.val() * prior.val() / marginalLikelihood.val()));
posterior.println(posterior.xhc().name() + " " + posterior.role() + " = "
+ posterior.val().toFixed(3));
}
}
]]></PosteriorProbabilityBEbehavior>
<PosteriorRatioBEbehavior implName="org.primordion.xholon.base.Behavior_gwtjs"><![CDATA[
var pratio;
var beh = {
postConfigure: function() {
pratio = this.cnode.parent();
var pprob1 = pratio.xpath("../ModelsBE/ModelBE[1]/PosteriorProbabilityBE");
var pprob2 = pratio.xpath("../ModelsBE/ModelBE[2]/PosteriorProbabilityBE");
pratio.val(pprob1.val() / pprob2.val());
pratio.println(pratio.xhc().name() + " " + pprob1.role() + " / "
+ pprob2.role() + " = " + pratio.val().toFixed(1));
pratio.println("In summary:\n It's about " + Math.ceil(pratio.val())
+ " times more probable that the patient has " + pprob1.hypothesis.xhc().name()
+ " rather than " + pprob2.hypothesis.xhc().name() + ".");
}
}
]]></PosteriorRatioBEbehavior>
<SvgClient><Attribute_String roleName="svgUri"><![CDATA[data:image/svg+xml,
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg fill-opacity="1" xmlns:xlink="http://www.w3.org/1999/xlink" color-rendering="auto" color-interpolation="auto" stroke="black" text-rendering="auto" stroke-linecap="square" width="651" stroke-miterlimit="10" stroke-opacity="1" shape-rendering="auto" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" height="263" xmlns="http://www.w3.org/2000/svg" font-family="&apos;Dialog&apos;" font-style="normal" stroke-linejoin="miter" font-size="12" stroke-dashoffset="0" image-rendering="auto"
><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
/><g
><defs id="defs1"
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
><path d="M0 0 L2565 0 L2565 1367 L0 1367 L0 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
><path d="M0 0 L0 363 L665 363 L665 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
><path d="M0 0 L0 38 L127 38 L127 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
><path d="M0 0 L0 119 L202 119 L202 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
><path d="M0 0 L0 19 L10 19 L10 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
><path d="M0 0 L0 19 L102 19 L102 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
><path d="M0 0 L0 26 L26 26 L26 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
><path d="M0 0 L0 273 L518 273 L518 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
><path d="M0 0 L0 19 L56 19 L56 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
><path d="M0 0 L0 185 L426 185 L426 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
><path d="M0 0 L0 19 L49 19 L49 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
><path d="M0 0 L0 119 L357 119 L357 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
><path d="M0 0 L0 19 L257 19 L257 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
><path d="M0 0 L0 119 L290 119 L290 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
><path d="M0 0 L0 19 L190 19 L190 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
><path d="M0 0 L0 185 L442 185 L442 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
><path d="M0 0 L0 119 L373 119 L373 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
><path d="M0 0 L0 19 L273 19 L273 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
><path d="M0 0 L0 119 L306 119 L306 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
><path d="M0 0 L0 19 L206 19 L206 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
><path d="M0 0 L0 121 L243 121 L243 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
><path d="M0 0 L0 19 L75 19 L75 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
><path d="M0 0 L0 119 L148 119 L148 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
><path d="M0 0 L0 19 L48 19 L48 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
><path d="M0 0 L0 141 L289 141 L289 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
><path d="M0 0 L0 19 L86 19 L86 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
><path d="M0 0 L0 119 L167 119 L167 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
><path d="M0 0 L0 19 L67 19 L67 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
><path d="M0 0 L0 119 L183 119 L183 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
><path d="M0 0 L0 19 L83 19 L83 0 Z"
/></clipPath
><font horiz-adv-x="60.0" id="font1"
><font-face ascent="92.822266" font-style="normal" descent="23.583984" units-per-em="100" font-family="sans-serif" font-weight="normal"
/><missing-glyph horiz-adv-x="60.0" d="M4.984375 -17.671875 L4.984375 70.515625 L54.984375 70.515625 L54.984375 -17.671875 L4.984375 -17.671875 ZM10.59375 -12.109375 L49.421875 -12.109375 L49.421875 64.890625 L10.59375 64.890625 L10.59375 -12.109375 Z"
/><glyph unicode="m" horiz-adv-x="97.0" d="M52 44.1875 Q55.375 50.25 60.0625 53.125 Q64.75 56 71.09375 56 Q79.640625 56 84.28125 50.0234375 Q88.921875 44.046875 88.921875 33.015625 L88.921875 0 L79.890625 0 L79.890625 32.71875 Q79.890625 40.578125 77.1015625 44.3828125 Q74.3125 48.1875 68.609375 48.1875 Q61.625 48.1875 57.5703125 43.5546875 Q53.515625 38.921875 53.515625 30.90625 L53.515625 0 L44.484375 0 L44.484375 32.71875 Q44.484375 40.625 41.703125 44.40625 Q38.921875 48.1875 33.109375 48.1875 Q26.21875 48.1875 22.1640625 43.53125 Q18.109375 38.875 18.109375 30.90625 L18.109375 0 L9.078125 0 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.1875 Q21.1875 51.21875 25.484375 53.609375 Q29.78125 56 35.6875 56 Q41.65625 56 45.828125 52.9765625 Q50 49.953125 52 44.1875 Z"
/><glyph unicode="t" horiz-adv-x="39.0" d="M18.3125 70.21875 L18.3125 54.6875 L36.8125 54.6875 L36.8125 47.703125 L18.3125 47.703125 L18.3125 18.015625 Q18.3125 11.328125 20.140625 9.421875 Q21.96875 7.515625 27.59375 7.515625 L36.8125 7.515625 L36.8125 0 L27.59375 0 Q17.1875 0 13.234375 3.8828125 Q9.28125 7.765625 9.28125 18.015625 L9.28125 47.703125 L2.6875 47.703125 L2.6875 54.6875 L9.28125 54.6875 L9.28125 70.21875 L18.3125 70.21875 Z"
/><glyph unicode=" " horiz-adv-x="32.0" d=""
/><glyph unicode="n" horiz-adv-x="63.0" d="M54.890625 33.015625 L54.890625 0 L45.90625 0 L45.90625 32.71875 Q45.90625 40.484375 42.875 44.3359375 Q39.84375 48.1875 33.796875 48.1875 Q26.515625 48.1875 22.3125 43.5546875 Q18.109375 38.921875 18.109375 30.90625 L18.109375 0 L9.078125 0 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.1875 Q21.34375 51.125 25.7109375 53.5625 Q30.078125 56 35.796875 56 Q45.21875 56 50.0546875 50.171875 Q54.890625 44.34375 54.890625 33.015625 Z"
/><glyph unicode="i" horiz-adv-x="28.0" d="M9.421875 54.6875 L18.40625 54.6875 L18.40625 0 L9.421875 0 L9.421875 54.6875 ZM9.421875 75.984375 L18.40625 75.984375 L18.40625 64.59375 L9.421875 64.59375 L9.421875 75.984375 Z"
/><glyph unicode="s" horiz-adv-x="52.0" d="M44.28125 53.078125 L44.28125 44.578125 Q40.484375 46.53125 36.3828125 47.5078125 Q32.28125 48.484375 27.875 48.484375 Q21.1875 48.484375 17.84375 46.4375 Q14.5 44.390625 14.5 40.28125 Q14.5 37.15625 16.890625 35.375 Q19.28125 33.59375 26.515625 31.984375 L29.59375 31.296875 Q39.15625 29.25 43.1875 25.515625 Q47.21875 21.78125 47.21875 15.09375 Q47.21875 7.46875 41.1875 3.0234375 Q35.15625 -1.421875 24.609375 -1.421875 Q20.21875 -1.421875 15.453125 -0.5625 Q10.6875 0.296875 5.421875 2 L5.421875 11.28125 Q10.40625 8.6875 15.234375 7.3984375 Q20.0625 6.109375 24.8125 6.109375 Q31.15625 6.109375 34.5703125 8.28125 Q37.984375 10.453125 37.984375 14.40625 Q37.984375 18.0625 35.5234375 20.015625 Q33.0625 21.96875 24.703125 23.78125 L21.578125 24.515625 Q13.234375 26.265625 9.5234375 29.90625 Q5.8125 33.546875 5.8125 39.890625 Q5.8125 47.609375 11.28125 51.8046875 Q16.75 56 26.8125 56 Q31.78125 56 36.1796875 55.2734375 Q40.578125 54.546875 44.28125 53.078125 Z"
/><glyph unicode="e" horiz-adv-x="62.0" d="M56.203125 29.59375 L56.203125 25.203125 L14.890625 25.203125 Q15.484375 15.921875 20.484375 11.0625 Q25.484375 6.203125 34.421875 6.203125 Q39.59375 6.203125 44.453125 7.46875 Q49.3125 8.734375 54.109375 11.28125 L54.109375 2.78125 Q49.265625 0.734375 44.1875 -0.34375 Q39.109375 -1.421875 33.890625 -1.421875 Q20.796875 -1.421875 13.15625 6.1953125 Q5.515625 13.8125 5.515625 26.8125 Q5.515625 40.234375 12.765625 48.1171875 Q20.015625 56 32.328125 56 Q43.359375 56 49.78125 48.8984375 Q56.203125 41.796875 56.203125 29.59375 ZM47.21875 32.234375 Q47.125 39.59375 43.09375 43.9921875 Q39.0625 48.390625 32.421875 48.390625 Q24.90625 48.390625 20.390625 44.140625 Q15.875 39.890625 15.1875 32.171875 L47.21875 32.234375 Z"
/><glyph unicode="y" horiz-adv-x="59.0" d="M32.171875 -5.078125 Q28.375 -14.84375 24.7578125 -17.8203125 Q21.140625 -20.796875 15.09375 -20.796875 L7.90625 -20.796875 L7.90625 -13.28125 L13.1875 -13.28125 Q16.890625 -13.28125 18.9453125 -11.5234375 Q21 -9.765625 23.484375 -3.21875 L25.09375 0.875 L2.984375 54.6875 L12.5 54.6875 L29.59375 11.921875 L46.6875 54.6875 L56.203125 54.6875 L32.171875 -5.078125 Z"
/><glyph unicode="a" horiz-adv-x="61.0" d="M34.28125 27.484375 Q23.390625 27.484375 19.1875 25 Q14.984375 22.515625 14.984375 16.5 Q14.984375 11.71875 18.140625 8.9140625 Q21.296875 6.109375 26.703125 6.109375 Q34.1875 6.109375 38.703125 11.40625 Q43.21875 16.703125 43.21875 25.484375 L43.21875 27.484375 L34.28125 27.484375 ZM52.203125 31.203125 L52.203125 0 L43.21875 0 L43.21875 8.296875 Q40.140625 3.328125 35.546875 0.953125 Q30.953125 -1.421875 24.3125 -1.421875 Q15.921875 -1.421875 10.9609375 3.296875 Q6 8.015625 6 15.921875 Q6 25.140625 12.1796875 29.828125 Q18.359375 34.515625 30.609375 34.515625 L43.21875 34.515625 L43.21875 35.40625 Q43.21875 41.609375 39.140625 45 Q35.0625 48.390625 27.6875 48.390625 Q23 48.390625 18.5546875 47.265625 Q14.109375 46.140625 10.015625 43.890625 L10.015625 52.203125 Q14.9375 54.109375 19.578125 55.0546875 Q24.21875 56 28.609375 56 Q40.484375 56 46.34375 49.8515625 Q52.203125 43.703125 52.203125 31.203125 Z"
/><glyph unicode="B" horiz-adv-x="69.0" d="M19.671875 34.8125 L19.671875 8.109375 L35.5 8.109375 Q43.453125 8.109375 47.2890625 11.40625 Q51.125 14.703125 51.125 21.484375 Q51.125 28.328125 47.2890625 31.5703125 Q43.453125 34.8125 35.5 34.8125 L19.671875 34.8125 ZM19.671875 64.796875 L19.671875 42.828125 L34.28125 42.828125 Q41.5 42.828125 45.0390625 45.5390625 Q48.578125 48.25 48.578125 53.8125 Q48.578125 59.328125 45.0390625 62.0625 Q41.5 64.796875 34.28125 64.796875 L19.671875 64.796875 ZM9.8125 72.90625 L35.015625 72.90625 Q46.296875 72.90625 52.3984375 68.21875 Q58.5 63.53125 58.5 54.890625 Q58.5 48.1875 55.375 44.234375 Q52.25 40.28125 46.1875 39.3125 Q53.46875 37.75 57.5 32.7890625 Q61.53125 27.828125 61.53125 20.40625 Q61.53125 10.640625 54.890625 5.3203125 Q48.25 0 35.984375 0 L9.8125 0 L9.8125 72.90625 Z"
/><glyph unicode="r" horiz-adv-x="41.0" d="M41.109375 46.296875 Q39.59375 47.171875 37.8125 47.5859375 Q36.03125 48 33.890625 48 Q26.265625 48 22.1875 43.046875 Q18.109375 38.09375 18.109375 28.8125 L18.109375 0 L9.078125 0 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.1875 Q20.953125 51.171875 25.4921875 53.5859375 Q30.03125 56 36.53125 56 Q37.453125 56 38.578125 55.8828125 Q39.703125 55.765625 41.0625 55.515625 L41.109375 46.296875 Z"
/><glyph unicode="o" horiz-adv-x="61.0" d="M30.609375 48.390625 Q23.390625 48.390625 19.1875 42.75 Q14.984375 37.109375 14.984375 27.296875 Q14.984375 17.484375 19.1640625 11.84375 Q23.34375 6.203125 30.609375 6.203125 Q37.796875 6.203125 41.9921875 11.8671875 Q46.1875 17.53125 46.1875 27.296875 Q46.1875 37.015625 41.9921875 42.703125 Q37.796875 48.390625 30.609375 48.390625 ZM30.609375 56 Q42.328125 56 49.0234375 48.3828125 Q55.71875 40.765625 55.71875 27.296875 Q55.71875 13.875 49.0234375 6.2265625 Q42.328125 -1.421875 30.609375 -1.421875 Q18.84375 -1.421875 12.1796875 6.2265625 Q5.515625 13.875 5.515625 27.296875 Q5.515625 40.765625 12.1796875 48.3828125 Q18.84375 56 30.609375 56 Z"
/><glyph unicode="P" horiz-adv-x="60.0" d="M19.671875 64.796875 L19.671875 37.40625 L32.078125 37.40625 Q38.96875 37.40625 42.7265625 40.96875 Q46.484375 44.53125 46.484375 51.125 Q46.484375 57.671875 42.7265625 61.234375 Q38.96875 64.796875 32.078125 64.796875 L19.671875 64.796875 ZM9.8125 72.90625 L32.078125 72.90625 Q44.34375 72.90625 50.6171875 67.359375 Q56.890625 61.8125 56.890625 51.125 Q56.890625 40.328125 50.6171875 34.8125 Q44.34375 29.296875 32.078125 29.296875 L19.671875 29.296875 L19.671875 0 L9.8125 0 L9.8125 72.90625 Z"
/><glyph unicode="l" horiz-adv-x="28.0" d="M9.421875 75.984375 L18.40625 75.984375 L18.40625 0 L9.421875 0 L9.421875 75.984375 Z"
/><glyph unicode="d" horiz-adv-x="63.0" d="M45.40625 46.390625 L45.40625 75.984375 L54.390625 75.984375 L54.390625 0 L45.40625 0 L45.40625 8.203125 Q42.578125 3.328125 38.2578125 0.953125 Q33.9375 -1.421875 27.875 -1.421875 Q17.96875 -1.421875 11.7421875 6.4921875 Q5.515625 14.40625 5.515625 27.296875 Q5.515625 40.1875 11.7421875 48.09375 Q17.96875 56 27.875 56 Q33.9375 56 38.2578125 53.6328125 Q42.578125 51.265625 45.40625 46.390625 ZM14.796875 27.296875 Q14.796875 17.390625 18.875 11.75 Q22.953125 6.109375 30.078125 6.109375 Q37.203125 6.109375 41.3046875 11.75 Q45.40625 17.390625 45.40625 27.296875 Q45.40625 37.203125 41.3046875 42.84375 Q37.203125 48.484375 30.078125 48.484375 Q22.953125 48.484375 18.875 42.84375 Q14.796875 37.203125 14.796875 27.296875 Z"
/><glyph unicode="M" horiz-adv-x="86.0" d="M9.8125 72.90625 L24.515625 72.90625 L43.109375 23.296875 L61.8125 72.90625 L76.515625 72.90625 L76.515625 0 L66.890625 0 L66.890625 64.015625 L48.09375 14.015625 L38.1875 14.015625 L19.390625 64.015625 L19.390625 0 L9.8125 0 L9.8125 72.90625 Z"
/><glyph unicode="b" horiz-adv-x="63.0" d="M48.6875 27.296875 Q48.6875 37.203125 44.609375 42.84375 Q40.53125 48.484375 33.40625 48.484375 Q26.265625 48.484375 22.1875 42.84375 Q18.109375 37.203125 18.109375 27.296875 Q18.109375 17.390625 22.1875 11.75 Q26.265625 6.109375 33.40625 6.109375 Q40.53125 6.109375 44.609375 11.75 Q48.6875 17.390625 48.6875 27.296875 ZM18.109375 46.390625 Q20.953125 51.265625 25.2734375 53.6328125 Q29.59375 56 35.59375 56 Q45.5625 56 51.7890625 48.09375 Q58.015625 40.1875 58.015625 27.296875 Q58.015625 14.40625 51.7890625 6.4921875 Q45.5625 -1.421875 35.59375 -1.421875 Q29.59375 -1.421875 25.2734375 0.953125 Q20.953125 3.328125 18.109375 8.203125 L18.109375 0 L9.078125 0 L9.078125 75.984375 L18.109375 75.984375 L18.109375 46.390625 Z"
/><glyph unicode=":" horiz-adv-x="34.0" d="M11.71875 12.40625 L22.015625 12.40625 L22.015625 0 L11.71875 0 L11.71875 12.40625 ZM11.71875 51.703125 L22.015625 51.703125 L22.015625 39.3125 L11.71875 39.3125 L11.71875 51.703125 Z"
/><glyph unicode=")" horiz-adv-x="39.0" d="M8.015625 75.875 L15.828125 75.875 Q23.140625 64.359375 26.78125 53.3203125 Q30.421875 42.28125 30.421875 31.390625 Q30.421875 20.453125 26.78125 9.375 Q23.140625 -1.703125 15.828125 -13.1875 L8.015625 -13.1875 Q14.5 -2 17.703125 9.0625 Q20.90625 20.125 20.90625 31.390625 Q20.90625 42.671875 17.703125 53.6640625 Q14.5 64.65625 8.015625 75.875 Z"
/><glyph unicode="|" horiz-adv-x="34.0" d="M21 76.421875 L21 -23.578125 L12.703125 -23.578125 L12.703125 76.421875 L21 76.421875 Z"
/><glyph unicode="x" horiz-adv-x="59.0" d="M54.890625 54.6875 L35.109375 28.078125 L55.90625 0 L45.3125 0 L29.390625 21.484375 L13.484375 0 L2.875 0 L24.125 28.609375 L4.6875 54.6875 L15.28125 54.6875 L29.78125 35.203125 L44.28125 54.6875 L54.890625 54.6875 Z"
/><glyph unicode="p" horiz-adv-x="63.0" d="M18.109375 8.203125 L18.109375 -20.796875 L9.078125 -20.796875 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.390625 Q20.953125 51.265625 25.2734375 53.6328125 Q29.59375 56 35.59375 56 Q45.5625 56 51.7890625 48.09375 Q58.015625 40.1875 58.015625 27.296875 Q58.015625 14.40625 51.7890625 6.4921875 Q45.5625 -1.421875 35.59375 -1.421875 Q29.59375 -1.421875 25.2734375 0.953125 Q20.953125 3.328125 18.109375 8.203125 ZM48.6875 27.296875 Q48.6875 37.203125 44.609375 42.84375 Q40.53125 48.484375 33.40625 48.484375 Q26.265625 48.484375 22.1875 42.84375 Q18.109375 37.203125 18.109375 27.296875 Q18.109375 17.390625 22.1875 11.75 Q26.265625 6.109375 33.40625 6.109375 Q40.53125 6.109375 44.609375 11.75 Q48.6875 17.390625 48.6875 27.296875 Z"
/><glyph unicode="(" horiz-adv-x="39.0" d="M31 75.875 Q24.46875 64.65625 21.2890625 53.6640625 Q18.109375 42.671875 18.109375 31.390625 Q18.109375 20.125 21.3125 9.0625 Q24.515625 -2 31 -13.1875 L23.1875 -13.1875 Q15.875 -1.703125 12.234375 9.375 Q8.59375 20.453125 8.59375 31.390625 Q8.59375 42.28125 12.2109375 53.3203125 Q15.828125 64.359375 23.1875 75.875 L31 75.875 Z"
/><glyph unicode="h" horiz-adv-x="63.0" d="M54.890625 33.015625 L54.890625 0 L45.90625 0 L45.90625 32.71875 Q45.90625 40.484375 42.875 44.3359375 Q39.84375 48.1875 33.796875 48.1875 Q26.515625 48.1875 22.3125 43.5546875 Q18.109375 38.921875 18.109375 30.90625 L18.109375 0 L9.078125 0 L9.078125 75.984375 L18.109375 75.984375 L18.109375 46.1875 Q21.34375 51.125 25.7109375 53.5625 Q30.078125 56 35.796875 56 Q45.21875 56 50.0546875 50.171875 Q54.890625 44.34375 54.890625 33.015625 Z"
/><glyph unicode="k" horiz-adv-x="58.0" d="M9.078125 75.984375 L18.109375 75.984375 L18.109375 31.109375 L44.921875 54.6875 L56.390625 54.6875 L27.390625 29.109375 L57.625 0 L45.90625 0 L18.109375 26.703125 L18.109375 0 L9.078125 0 L9.078125 75.984375 Z"
/><glyph unicode="g" horiz-adv-x="63.0" d="M45.40625 27.984375 Q45.40625 37.75 41.3828125 43.1171875 Q37.359375 48.484375 30.078125 48.484375 Q22.859375 48.484375 18.828125 43.1171875 Q14.796875 37.75 14.796875 27.984375 Q14.796875 18.265625 18.828125 12.890625 Q22.859375 7.515625 30.078125 7.515625 Q37.359375 7.515625 41.3828125 12.890625 Q45.40625 18.265625 45.40625 27.984375 ZM54.390625 6.78125 Q54.390625 -7.171875 48.1953125 -13.984375 Q42 -20.796875 29.203125 -20.796875 Q24.46875 -20.796875 20.265625 -20.09375 Q16.0625 -19.390625 12.109375 -17.921875 L12.109375 -9.1875 Q16.0625 -11.328125 19.921875 -12.3515625 Q23.78125 -13.375 27.78125 -13.375 Q36.625 -13.375 41.015625 -8.765625 Q45.40625 -4.15625 45.40625 5.171875 L45.40625 9.625 Q42.625 4.78125 38.28125 2.390625 Q33.9375 0 27.875 0 Q17.828125 0 11.671875 7.6640625 Q5.515625 15.328125 5.515625 27.984375 Q5.515625 40.671875 11.671875 48.3359375 Q17.828125 56 27.875 56 Q33.9375 56 38.28125 53.609375 Q42.625 51.21875 45.40625 46.390625 L45.40625 54.6875 L54.390625 54.6875 L54.390625 6.78125 Z"
/><glyph unicode="c" horiz-adv-x="55.0" d="M48.78125 52.59375 L48.78125 44.1875 Q44.96875 46.296875 41.140625 47.34375 Q37.3125 48.390625 33.40625 48.390625 Q24.65625 48.390625 19.8203125 42.8515625 Q14.984375 37.3125 14.984375 27.296875 Q14.984375 17.28125 19.8203125 11.7421875 Q24.65625 6.203125 33.40625 6.203125 Q37.3125 6.203125 41.140625 7.25 Q44.96875 8.296875 48.78125 10.40625 L48.78125 2.09375 Q45.015625 0.34375 40.9921875 -0.5390625 Q36.96875 -1.421875 32.421875 -1.421875 Q20.0625 -1.421875 12.7890625 6.34375 Q5.515625 14.109375 5.515625 27.296875 Q5.515625 40.671875 12.8671875 48.3359375 Q20.21875 56 33.015625 56 Q37.15625 56 41.109375 55.1484375 Q45.0625 54.296875 48.78125 52.59375 Z"
/><glyph unicode="v" horiz-adv-x="59.0" d="M2.984375 54.6875 L12.5 54.6875 L29.59375 8.796875 L46.6875 54.6875 L56.203125 54.6875 L35.6875 0 L23.484375 0 L2.984375 54.6875 Z"
/><glyph unicode="E" horiz-adv-x="63.0" d="M9.8125 72.90625 L55.90625 72.90625 L55.90625 64.59375 L19.671875 64.59375 L19.671875 43.015625 L54.390625 43.015625 L54.390625 34.71875 L19.671875 34.71875 L19.671875 8.296875 L56.78125 8.296875 L56.78125 0 L9.8125 0 L9.8125 72.90625 Z"
/><glyph unicode="S" horiz-adv-x="63.0" d="M53.515625 70.515625 L53.515625 60.890625 Q47.90625 63.578125 42.921875 64.8984375 Q37.9375 66.21875 33.296875 66.21875 Q25.25 66.21875 20.875 63.09375 Q16.5 59.96875 16.5 54.203125 Q16.5 49.359375 19.40625 46.8984375 Q22.3125 44.4375 30.421875 42.921875 L36.375 41.703125 Q47.40625 39.59375 52.65625 34.296875 Q57.90625 29 57.90625 20.125 Q57.90625 9.515625 50.8046875 4.046875 Q43.703125 -1.421875 29.984375 -1.421875 Q24.8125 -1.421875 18.9765625 -0.25 Q13.140625 0.921875 6.890625 3.21875 L6.890625 13.375 Q12.890625 10.015625 18.65625 8.3046875 Q24.421875 6.59375 29.984375 6.59375 Q38.421875 6.59375 43.015625 9.9140625 Q47.609375 13.234375 47.609375 19.390625 Q47.609375 24.75 44.3125 27.78125 Q41.015625 30.8125 33.5 32.328125 L27.484375 33.5 Q16.453125 35.6875 11.5234375 40.375 Q6.59375 45.0625 6.59375 53.421875 Q6.59375 63.09375 13.40625 68.65625 Q20.21875 74.21875 32.171875 74.21875 Q37.3125 74.21875 42.6328125 73.2890625 Q47.953125 72.359375 53.515625 70.515625 Z"
/><glyph unicode="H" horiz-adv-x="75.0" d="M9.8125 72.90625 L19.671875 72.90625 L19.671875 43.015625 L55.515625 43.015625 L55.515625 72.90625 L65.375 72.90625 L65.375 0 L55.515625 0 L55.515625 34.71875 L19.671875 34.71875 L19.671875 0 L9.8125 0 L9.8125 72.90625 Z"
/><glyph unicode="C" horiz-adv-x="70.0" d="M64.40625 67.28125 L64.40625 56.890625 Q59.421875 61.53125 53.78125 63.8203125 Q48.140625 66.109375 41.796875 66.109375 Q29.296875 66.109375 22.65625 58.46875 Q16.015625 50.828125 16.015625 36.375 Q16.015625 21.96875 22.65625 14.328125 Q29.296875 6.6875 41.796875 6.6875 Q48.140625 6.6875 53.78125 8.984375 Q59.421875 11.28125 64.40625 15.921875 L64.40625 5.609375 Q59.234375 2.09375 53.4453125 0.3359375 Q47.65625 -1.421875 41.21875 -1.421875 Q24.65625 -1.421875 15.1328125 8.7109375 Q5.609375 18.84375 5.609375 36.375 Q5.609375 53.953125 15.1328125 64.0859375 Q24.65625 74.21875 41.21875 74.21875 Q47.75 74.21875 53.5390625 72.484375 Q59.328125 70.75 64.40625 67.28125 Z"
/></font
></defs
><g font-size="14.666666984558" transform="translate(-1000,-552)" fill="white" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" shape-rendering="crispEdges" stroke="white"
><rect x="0" width="2565" height="1367" y="0" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(-50,-50)" stroke="gray"
><path fill="none" d="M153 168 C153 168 177 79 197 79" clip-path="url(#clipPath2)"
/><path fill="none" d="M162 171 C162 171 177 114 197 114" clip-path="url(#clipPath2)"
/><path fill="none" d="M172 188 C172 188 177 213 197 213" clip-path="url(#clipPath2)"
/><path fill="none" d="M147 197 C147 197 177 312 197 312" clip-path="url(#clipPath2)"
/></g
><g fill="white" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(0,113)" stroke="white"
><ellipse rx="62.5" ry="18" clip-path="url(#clipPath3)" cx="63.5" cy="19" stroke="none"
/><ellipse clip-path="url(#clipPath3)" fill="none" rx="63" cx="63" ry="18.5" cy="18.5" stroke="gray"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(0,113)"
><text x="11" xml:space="preserve" y="24" clip-path="url(#clipPath3)" stroke="none"
>Bayesian system</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(147,244)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath6)" x2="102" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(147,244)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath6)" stroke="none"
>Posterior ratio</text
></g
><g fill="white" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(239,250)" stroke="white"
><circle r="3" clip-path="url(#clipPath7)" cx="12" cy="12" stroke="none"
/><circle fill="none" r="3" clip-path="url(#clipPath7)" cx="12" cy="12" stroke="gray"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(97,18)" stroke="gray"
><path fill="none" d="M105 145 C117 145 106 101 126 101" clip-path="url(#clipPath8)"
/><path fill="none" d="M105 145 C117 145 106 189 126 189" clip-path="url(#clipPath8)"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(147,145)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath9)" x2="56" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(147,145)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath9)" stroke="none"
>Models</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(173,106)" stroke="gray"
><path fill="none" d="M98 101 C110 101 99 68 119 68" clip-path="url(#clipPath10)"
/><path fill="none" d="M98 101 C110 101 99 90 119 90" clip-path="url(#clipPath10)"
/><path fill="none" d="M98 101 C110 101 99 112 119 112" clip-path="url(#clipPath10)"
/><path fill="none" d="M98 101 C110 101 99 134 119 134" clip-path="url(#clipPath10)"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(223,189)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath11)" x2="49" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(223,189)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath11)" stroke="none"
>Model</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,222)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath13)" x2="257" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,222)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath13)" stroke="none"
>P(smallpox|spots): posterior probability</text
></g
><g fill="white" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(539,228)" stroke="white"
><circle r="3" clip-path="url(#clipPath7)" cx="12" cy="12" stroke="none"
/><circle fill="none" r="3" clip-path="url(#clipPath7)" cx="12" cy="12" stroke="gray"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,200)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath15)" x2="190" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,200)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath15)" stroke="none"
>P(spots): marginal likelihood</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,178)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath15)" x2="190" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,178)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath15)" stroke="none"
>P(smallpox): prior probability</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,156)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath15)" x2="190" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,156)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath15)" stroke="none"
>P(spots|smallpox): likelihood</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(173,18)" stroke="gray"
><path fill="none" d="M98 101 C110 101 99 68 119 68" clip-path="url(#clipPath16)"
/><path fill="none" d="M98 101 C110 101 99 90 119 90" clip-path="url(#clipPath16)"
/><path fill="none" d="M98 101 C110 101 99 112 119 112" clip-path="url(#clipPath16)"
/><path fill="none" d="M98 101 C110 101 99 134 119 134" clip-path="url(#clipPath16)"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(223,101)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath11)" x2="49" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(223,101)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath11)" stroke="none"
>Model</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,134)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath18)" x2="273" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,134)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath18)" stroke="none"
>P(chickenpox|spots): posterior probability</text
></g
><g fill="white" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(555,140)" stroke="white"
><circle r="3" clip-path="url(#clipPath7)" cx="12" cy="12" stroke="none"
/><circle fill="none" r="3" clip-path="url(#clipPath7)" cx="12" cy="12" stroke="gray"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,112)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath15)" x2="190" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,112)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath15)" stroke="none"
>P(spots): marginal likelihood</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,90)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath20)" x2="206" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,90)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath20)" stroke="none"
>P(chickenpox): prior probability</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(292,68)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath20)" x2="206" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(292,68)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath20)" stroke="none"
>P(spots|chickenpox): likelihood</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(97,-6)" stroke="gray"
><path fill="none" d="M124 70 C136 70 125 68 145 68" clip-path="url(#clipPath21)"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(147,46)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath22)" x2="75" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(147,46)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath22)" stroke="none"
>Evidences</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(242,44)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath24)" x2="48" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(242,44)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath24)" stroke="none"
>Spots</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-size="14.666666984558" font-family="&apos;Ubuntu&apos;" transform="translate(97,-50)" stroke="gray"
><path fill="none" d="M135 79 C147 79 136 68 156 68" clip-path="url(#clipPath25)"
/><path fill="none" d="M135 79 C147 79 136 90 156 90" clip-path="url(#clipPath25)"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(147,11)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath26)" x2="86" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(147,11)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath26)" stroke="none"
>Hypotheses</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(253,22)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath28)" x2="67" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(253,22)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath28)" stroke="none"
>Smallpox</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(253,0)" stroke="gray"
><line y2="18" fill="none" x1="0" clip-path="url(#clipPath30)" x2="83" y1="18"
/></g
><g text-rendering="geometricPrecision" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(253,0)"
><text x="6" xml:space="preserve" y="14" clip-path="url(#clipPath30)" stroke="none"
>Chickenpox</text
></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1498 629 C1673 629 1366 561 1336 561" clip-path="url(#clipPath1)"
/><polygon points=" 1336 561 1346 556 1346 566 1336 561" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1498 651 C1683 651 1366 561 1336 561" clip-path="url(#clipPath1)"
/><polygon points=" 1336 561 1346 556 1346 566 1336 561" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1565 695 C1830 695 1366 561 1336 561" clip-path="url(#clipPath1)"
/><polygon points=" 1336 561 1346 556 1346 566 1336 561" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="round" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1336 561 1346 556 1346 566 1336 561" clip-path="url(#clipPath1)" stroke="none"
/><line y2="561" fill="none" x1="1336" clip-path="url(#clipPath1)" x2="1366" y1="561"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1482 717 C1692 717 1350 583 1320 583" clip-path="url(#clipPath1)"
/><polygon points=" 1320 583 1330 578 1330 588 1320 583" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1482 739 C1706 739 1350 583 1320 583" clip-path="url(#clipPath1)"
/><polygon points=" 1320 583 1330 578 1330 588 1320 583" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1549 783 C1853 783 1350 583 1320 583" clip-path="url(#clipPath1)"
/><polygon points=" 1320 583 1330 578 1330 588 1320 583" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="round" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1320 583 1330 578 1330 588 1320 583" clip-path="url(#clipPath1)" stroke="none"
/><line y2="583" fill="none" x1="1320" clip-path="url(#clipPath1)" x2="1350" y1="583"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1498 629 C1707 629 1320 605 1290 605" clip-path="url(#clipPath1)"
/><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1482 673 C1685 673 1320 605 1290 605" clip-path="url(#clipPath1)"
/><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1565 695 C1854 695 1320 605 1290 605" clip-path="url(#clipPath1)"
/><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="round" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/><line y2="605" fill="none" x1="1290" clip-path="url(#clipPath1)" x2="1320" y1="605"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1482 717 C1704 717 1320 605 1290 605" clip-path="url(#clipPath1)"
/><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1482 761 C1729 761 1320 605 1290 605" clip-path="url(#clipPath1)"
/><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="butt" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke="rgb(102,102,255)"
><path fill="none" d="M1549 783 C1863 783 1320 605 1290 605" clip-path="url(#clipPath1)"
/><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/></g
><g font-size="14.666666984558" stroke-linecap="round" transform="translate(-1000,-552)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="&apos;Ubuntu&apos;" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1290 605 1300 600 1300 610 1290 605" clip-path="url(#clipPath1)" stroke="none"
/><line y2="605" fill="none" x1="1290" clip-path="url(#clipPath1)" x2="1320" y1="605"
/></g
></g
></svg>
]]></Attribute_String><Attribute_String roleName="setup">${MODELNAME_DEFAULT},${SVGURI_DEFAULT}</Attribute_String></SvgClient>
</XholonWorkbook>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment