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/9ed00ed60c3750822d49 to your computer and use it in GitHub Desktop.
Save kenwebb/9ed00ed60c3750822d49 to your computer and use it in GitHub Desktop.
Bayesian inference 5
<?xml version="1.0" encoding="UTF-8"?>
<!--Xholon Workbook http://www.primordion.com/Xholon/gwt/ MIT License, Copyright (C) Ken Webb, Wed May 14 2014 07:40:06 GMT-0400 (EDT)-->
<XholonWorkbook>
<Notes><![CDATA[
Xholon
------
Title: Bayesian inference 5
Description:
Url: http://www.primordion.com/Xholon/gwt/
InternalName: 9ed00ed60c3750822d49
Keywords:
My Notes
--------
This is associated with XholonWorkbooks 8688253668d5fa489b4f, ceb4083319ebfa4a7bd0 and c48e278ac02dce038398,
and is based on "Example 3: Flipping Coins" from "Bayes' Rule - A Tutorial Introduction to Bayesian Analysis" by Dr James V Stone [1].
Here, our task is to decide how unfair a coin is, based on just two
coin flips. Normally, we assume that coins are fair or unbiased, so that
a large number of coin flips (eg 1000) yields an equal number of heads
and tails. But suppose there was a fault in the machine that minted
coins, so that each coin had more metal on one side or the other, with
the result that each coin is biased to produce more heads than tails, or
vice versa. Specifically, 25% of the coins produced by the machine have
a bias of 0.4, and 75% have a bias of 0.6. By definition, a coin with a
bias of 0.4 produces a head on 40% of flips, whereas a coin with a bias
of 0.6 produces a head on 60% of flips (on average). Now, suppose we
choose one coin at random, and attempt to decide which of the two bias
values it has.
References
----------
(1) http://jim-stone.staff.shef.ac.uk/BookBayes2012/bookbayesch01.pdf
(2) http://en.wikipedia.org/wiki/Bayesian_inference
(3) http://en.wikipedia.org/wiki/Bayes%27_rule
]]></Notes>
<_-.XholonClass>
<BayesianSystem/>
<!-- types of objects (entities) -->
<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." -->
<Theta_0.4/> <!-- hypothesis that the coin has a bias of 0.4 (heads on 40% of flips on average) -->
<Theta_0.6/> <!-- hypothesis that the coin has a bias of 0.6 (heads on 60% of flips on average) -->
</HypothesisBE>
<EvidenceBE> <!-- E data "the evidence E corresponds to new data that were not used in computing the prior probability" -->
<HeadsTails/> <!-- evidence from two flips of the same coin x = (x_h,x_t) -->
</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/>
<ModelsBE/> <!-- a set of candidate models -->
<ModelBE/>
</BayesianEntity>
</_-.XholonClass>
<xholonClassDetails>
<LikelihoodBE>
<port name="evidence" connector="../../../EvidencesBE/HeadsTails"/>
<port name="hypothesis" connector=".[@roleName='p(heads tails|theta_0.4)']/../../../HypothesesBE/Theta_0.4"/>
<port name="hypothesis" connector=".[@roleName='p(heads tails|theta_0.6)']/../../../HypothesesBE/Theta_0.6"/>
</LikelihoodBE>
<PriorProbabilityBE>
<port name="hypothesis" connector=".[@roleName='p(theta_0.4)']/../../../HypothesesBE/Theta_0.4"/>
<port name="hypothesis" connector=".[@roleName='p(theta_0.6)']/../../../HypothesesBE/Theta_0.6"/>
</PriorProbabilityBE>
<MarginalLikelihoodBE>
<port name="evidence" connector="../../../EvidencesBE/HeadsTails"/>
</MarginalLikelihoodBE>
<PosteriorProbabilityBE>
<port name="hypothesis" connector=".[@roleName='p(theta_0.4|heads tails)']/../../../HypothesesBE/Theta_0.4"/>
<port name="hypothesis" connector=".[@roleName='p(theta_0.6|heads tails)']/../../../HypothesesBE/Theta_0.6"/>
<port name="evidence" connector="../../../EvidencesBE/HeadsTails"/>
</PosteriorProbabilityBE>
</xholonClassDetails>
<BayesianSystem>
<!-- see Figure 1.7 [1] -->
<HypothesesBE>
<Theta_0.4/>
<Theta_0.6/>
</HypothesesBE>
<EvidencesBE>
<HeadsTails/>
</EvidencesBE>
<ModelsBE>
<!-- the goal is to select the most probable of these candidate models, this is called 'model selection' -->
<ModelBE>
<LikelihoodBE roleName="p(heads tails|theta_0.4)" val="0.24"/>
<PriorProbabilityBE roleName="p(theta_0.4)" val="0.25"/>
<MarginalLikelihoodBE roleName="p(heads tails)" val="0.24"/>
<PosteriorProbabilityBE roleName="p(theta_0.4|heads tails)"/> <!-- calculated result should be 0.25 -->
</ModelBE>
<ModelBE>
<LikelihoodBE roleName="p(heads tails|theta_0.6)" val="0.24"/> <!-- maximum likelihood estimate (MLE) -->
<PriorProbabilityBE roleName="p(theta_0.6)" val="0.75"/>
<MarginalLikelihoodBE roleName="p(heads tails)" val="0.24"/>
<PosteriorProbabilityBE roleName="p(theta_0.6|heads tails)"/> <!-- calculated result should be 0.75 -->
</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(2));
}
}
]]></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(2));
pratio.println("In summary:\n It's about " + (1 / pratio.val()).toFixed(0)
+ " times more probable that the coin is " + pprob2.hypothesis.xhc().name()
+ " rather than " + pprob1.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="693" 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 L2589 0 L2589 1381 L0 1381 L0 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
><path d="M0 0 L0 363 L689 363 L689 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 L542 273 L542 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 L466 185 L466 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 L397 119 L397 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
><path d="M0 0 L0 19 L297 19 L297 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
><path d="M0 0 L0 119 L324 119 L324 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
><path d="M0 0 L0 19 L224 19 L224 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
><path d="M0 0 L0 119 L296 119 L296 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
><path d="M0 0 L0 19 L196 19 L196 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
><path d="M0 0 L0 119 L330 119 L330 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
><path d="M0 0 L0 19 L230 19 L230 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
><path d="M0 0 L0 121 L277 121 L277 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
><path d="M0 0 L0 19 L75 19 L75 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
><path d="M0 0 L0 119 L182 119 L182 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
><path d="M0 0 L0 19 L82 19 L82 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
><path d="M0 0 L0 141 L280 141 L280 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
><path d="M0 0 L0 19 L86 19 L86 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
><path d="M0 0 L0 119 L174 119 L174 0 Z"
/></clipPath
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
><path d="M0 0 L0 19 L74 19 L74 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="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="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="6" horiz-adv-x="64.0" d="M33.015625 40.375 Q26.375 40.375 22.4921875 35.8359375 Q18.609375 31.296875 18.609375 23.390625 Q18.609375 15.53125 22.4921875 10.9609375 Q26.375 6.390625 33.015625 6.390625 Q39.65625 6.390625 43.53125 10.9609375 Q47.40625 15.53125 47.40625 23.390625 Q47.40625 31.296875 43.53125 35.8359375 Q39.65625 40.375 33.015625 40.375 ZM52.59375 71.296875 L52.59375 62.3125 Q48.875 64.0625 45.09375 64.9921875 Q41.3125 65.921875 37.59375 65.921875 Q27.828125 65.921875 22.6796875 59.328125 Q17.53125 52.734375 16.796875 39.40625 Q19.671875 43.65625 24.0234375 45.921875 Q28.375 48.1875 33.59375 48.1875 Q44.578125 48.1875 50.953125 41.5234375 Q57.328125 34.859375 57.328125 23.390625 Q57.328125 12.15625 50.6875 5.3671875 Q44.046875 -1.421875 33.015625 -1.421875 Q20.359375 -1.421875 13.671875 8.2734375 Q6.984375 17.96875 6.984375 36.375 Q6.984375 53.65625 15.1875 63.9375 Q23.390625 74.21875 37.203125 74.21875 Q40.921875 74.21875 44.703125 73.484375 Q48.484375 72.75 52.59375 71.296875 Z"
/><glyph unicode="." horiz-adv-x="32.0" d="M10.6875 12.40625 L21 12.40625 L21 0 L10.6875 0 L10.6875 12.40625 Z"
/><glyph unicode="0" horiz-adv-x="64.0" d="M31.78125 66.40625 Q24.171875 66.40625 20.3359375 58.9140625 Q16.5 51.421875 16.5 36.375 Q16.5 21.390625 20.3359375 13.890625 Q24.171875 6.390625 31.78125 6.390625 Q39.453125 6.390625 43.2890625 13.890625 Q47.125 21.390625 47.125 36.375 Q47.125 51.421875 43.2890625 58.9140625 Q39.453125 66.40625 31.78125 66.40625 ZM31.78125 74.21875 Q44.046875 74.21875 50.515625 64.5234375 Q56.984375 54.828125 56.984375 36.375 Q56.984375 17.96875 50.515625 8.2734375 Q44.046875 -1.421875 31.78125 -1.421875 Q19.53125 -1.421875 13.0625 8.2734375 Q6.59375 17.96875 6.59375 36.375 Q6.59375 54.828125 13.0625 64.5234375 Q19.53125 74.21875 31.78125 74.21875 Z"
/><glyph unicode="_" horiz-adv-x="50.0" d="M50.984375 -16.609375 L50.984375 -23.578125 L-0.984375 -23.578125 L-0.984375 -16.609375 L50.984375 -16.609375 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="(" 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="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="4" horiz-adv-x="64.0" d="M37.796875 64.3125 L12.890625 25.390625 L37.796875 25.390625 L37.796875 64.3125 ZM35.203125 72.90625 L47.609375 72.90625 L47.609375 25.390625 L58.015625 25.390625 L58.015625 17.1875 L47.609375 17.1875 L47.609375 0 L37.796875 0 L37.796875 17.1875 L4.890625 17.1875 L4.890625 26.703125 L35.203125 72.90625 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="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="T" horiz-adv-x="61.0" d="M-0.296875 72.90625 L61.375 72.90625 L61.375 64.59375 L35.5 64.59375 L35.5 0 L25.59375 0 L25.59375 64.59375 L-0.296875 64.59375 L-0.296875 72.90625 Z"
/></font
></defs
><g fill="white" text-rendering="optimizeSpeed" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(-1000,-559)" stroke="white"
><rect x="0" width="2589" height="1381" y="0" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" 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-weight="bold" font-family="sans-serif" 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-family="sans-serif" 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-family="sans-serif" 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="297" 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(theta_0.6|heads tails): posterior probability</text
></g
><g fill="white" text-rendering="optimizeSpeed" font-weight="bold" font-family="sans-serif" transform="translate(579,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="224" 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(heads tails): 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(#clipPath17)" x2="196" 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(#clipPath17)" stroke="none"
>P(theta_0.6): 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(#clipPath19)" x2="230" 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(#clipPath19)" stroke="none"
>P(heads tails|theta_0.6): likelihood</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(173,18)" 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,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(#clipPath13)" x2="297" 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(#clipPath13)" stroke="none"
>P(theta_0.4|heads tails): posterior probability</text
></g
><g fill="white" text-rendering="optimizeSpeed" font-weight="bold" font-family="sans-serif" transform="translate(579,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="224" 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(heads tails): 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(#clipPath17)" x2="196" 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(#clipPath17)" stroke="none"
>P(theta_0.4): 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(#clipPath19)" x2="230" 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(#clipPath19)" stroke="none"
>P(heads tails|theta_0.4): likelihood</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(97,-6)" stroke="gray"
><path fill="none" d="M124 70 C136 70 125 68 145 68" clip-path="url(#clipPath20)"
/></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(#clipPath21)" 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(#clipPath21)" 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(#clipPath23)" x2="82" 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(#clipPath23)" stroke="none"
>Heads tails</text
></g
><g fill="gray" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(97,-50)" stroke="gray"
><path fill="none" d="M135 79 C147 79 136 68 156 68" clip-path="url(#clipPath24)"
/><path fill="none" d="M135 79 C147 79 136 90 156 90" clip-path="url(#clipPath24)"
/></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(#clipPath25)" 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(#clipPath25)" 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(#clipPath27)" x2="74" 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(#clipPath27)" stroke="none"
>Theta_0.6</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(#clipPath27)" x2="74" 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(#clipPath27)" stroke="none"
>Theta_0.4</text
></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1522 636 C1728 636 1357 568 1327 568" clip-path="url(#clipPath1)"
/><polygon points=" 1327 568 1337 563 1337 573 1327 568" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1488 658 C1672 658 1357 568 1327 568" clip-path="url(#clipPath1)"
/><polygon points=" 1327 568 1337 563 1337 573 1327 568" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1589 702 C1883 702 1357 568 1327 568" clip-path="url(#clipPath1)"
/><polygon points=" 1327 568 1337 563 1337 573 1327 568" clip-path="url(#clipPath1)" stroke="none"
/></g
><g stroke-linecap="round" transform="translate(-1000,-559)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1327 568 1337 563 1337 573 1327 568" clip-path="url(#clipPath1)" stroke="none"
/><line y2="568" fill="none" x1="1327" clip-path="url(#clipPath1)" x2="1357" y1="568"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1522 724 C1758 724 1357 590 1327 590" clip-path="url(#clipPath1)"
/><polygon points=" 1327 590 1337 585 1337 595 1327 590" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1488 746 C1712 746 1357 590 1327 590" clip-path="url(#clipPath1)"
/><polygon points=" 1327 590 1337 585 1337 595 1327 590" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1589 790 C1918 790 1357 590 1327 590" clip-path="url(#clipPath1)"
/><polygon points=" 1327 590 1337 585 1337 595 1327 590" clip-path="url(#clipPath1)" stroke="none"
/></g
><g stroke-linecap="round" transform="translate(-1000,-559)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1327 590 1337 585 1337 595 1327 590" clip-path="url(#clipPath1)" stroke="none"
/><line y2="590" fill="none" x1="1327" clip-path="url(#clipPath1)" x2="1357" y1="590"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1522 636 C1721 636 1354 612 1324 612" clip-path="url(#clipPath1)"
/><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1516 680 C1719 680 1354 612 1324 612" clip-path="url(#clipPath1)"
/><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1589 702 C1868 702 1354 612 1324 612" clip-path="url(#clipPath1)"
/><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/></g
><g stroke-linecap="round" transform="translate(-1000,-559)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/><line y2="612" fill="none" x1="1324" clip-path="url(#clipPath1)" x2="1354" y1="612"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1522 724 C1749 724 1354 612 1324 612" clip-path="url(#clipPath1)"
/><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1516 768 C1763 768 1354 612 1324 612" clip-path="url(#clipPath1)"
/><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/></g
><g fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" transform="translate(-1000,-559)" stroke-linecap="butt" stroke="rgb(102,102,255)"
><path fill="none" d="M1589 790 C1908 790 1354 612 1324 612" clip-path="url(#clipPath1)"
/><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/></g
><g stroke-linecap="round" transform="translate(-1000,-559)" fill="rgb(102,102,255)" text-rendering="optimizeSpeed" font-family="sans-serif" stroke-linejoin="round" stroke-dasharray="0,3,0,3" stroke="rgb(102,102,255)" stroke-miterlimit="0"
><polygon points=" 1324 612 1334 607 1334 617 1324 612" clip-path="url(#clipPath1)" stroke="none"
/><line y2="612" fill="none" x1="1324" clip-path="url(#clipPath1)" x2="1354" y1="612"
/></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