jerome-white commited on
Commit
7ac39f3
1 Parent(s): adb3a9b

Simplify presentation of ability difference

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -147,7 +147,7 @@ class ComparisonPlotter(DataPlotter):
147
  ax = sns.histplot(data=self.df,
148
  stat='density',
149
  color=c_hist)
150
- ax.set_xlabel('logit$^{-1}$(\u03B1$_{1}$ - \u03B1$_{2}$)')
151
 
152
  self.pr(ax, hdi, c_hdi)
153
  self.min_inclusive(ax)
@@ -272,8 +272,8 @@ def layout(tab):
272
  gr.Markdown(f'''
273
 
274
  Probability that Model 1 is preferred to Model 2. The
275
- histogram is represents the distribution of inverse
276
- logit of the difference in model abilities. The dashed
277
  vertical line is its median. The shaded region
278
  demarcates the chosen [highest density
279
  interval](https://cran.r-project.org/package=HDInterval)
 
147
  ax = sns.histplot(data=self.df,
148
  stat='density',
149
  color=c_hist)
150
+ ax.set_xlabel('\u03B1$_{1}$ - \u03B1$_{2}$')
151
 
152
  self.pr(ax, hdi, c_hdi)
153
  self.min_inclusive(ax)
 
272
  gr.Markdown(f'''
273
 
274
  Probability that Model 1 is preferred to Model 2. The
275
+ histogram is represents the distribution of the
276
+ difference in estimated model abilities. The dashed
277
  vertical line is its median. The shaded region
278
  demarcates the chosen [highest density
279
  interval](https://cran.r-project.org/package=HDInterval)