Commit
·
5f621c9
1
Parent(s):
dbed50b
Improve readability of the ability histogram section
Browse files- app.py +1 -1
- docs/ability.md +10 -6
app.py
CHANGED
@@ -229,7 +229,7 @@ class PersonLayout(ParameterLayout):
|
|
229 |
|
230 |
def extra(self, df, *args):
|
231 |
with gr.Row():
|
232 |
-
with gr.Column():
|
233 |
gr.Markdown(self.text)
|
234 |
|
235 |
with gr.Column(scale=3):
|
|
|
229 |
|
230 |
def extra(self, df, *args):
|
231 |
with gr.Row():
|
232 |
+
with gr.Column('Compare ability'):
|
233 |
gr.Markdown(self.text)
|
234 |
|
235 |
with gr.Column(scale=3):
|
docs/ability.md
CHANGED
@@ -1,7 +1,11 @@
|
|
1 |
-
Probability that Model 1 is preferred to Model 2
|
|
|
|
|
2 |
represents the distribution of the difference in estimated model
|
3 |
-
abilities
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
1 |
+
## Probability that Model 1 is preferred to Model 2
|
2 |
+
|
3 |
+
Select two models to compare their abilities. The generated histogram
|
4 |
represents the distribution of the difference in estimated model
|
5 |
+
abilities:
|
6 |
+
|
7 |
+
* The dashed vertical line is its median.
|
8 |
+
* The shaded region demarcates the chosen [highest density
|
9 |
+
interval](https://cran.r-project.org/package=HDInterval) (HDI).
|
10 |
+
* The note in the upper left denotes the smallest HDI that is
|
11 |
+
inclusive of $ci.
|