Ludvig
commited on
Commit
·
380fb7b
1
Parent(s):
0cd6e83
Imrpoves text
Browse files- text_sections.py +11 -2
text_sections.py
CHANGED
|
@@ -55,6 +55,10 @@ def intro_text():
|
|
| 55 |
"--> Press **Generate plot**.\n\n"
|
| 56 |
)
|
| 57 |
st.markdown("""---""")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
st.write(
|
| 59 |
"The plot is created with the [**cvms**](https://github.com/LudvigOlsen/cvms) R package "
|
| 60 |
f"(v/{get_cvms_version()}, LR Olsen & HB Zachariae, 2019)."
|
|
@@ -127,8 +131,13 @@ def columns_text():
|
|
| 127 |
def design_text():
|
| 128 |
st.subheader("Design your plot")
|
| 129 |
st.write("This is where you customize the design of your confusion matrix plot.")
|
| 130 |
-
st.
|
| 131 |
-
"The width and height settings are usually necessary to adjust as they "
|
| 132 |
"change the relative size of the elements. Try adjusting 100px at a "
|
| 133 |
"time for a start."
|
| 134 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
"--> Press **Generate plot**.\n\n"
|
| 56 |
)
|
| 57 |
st.markdown("""---""")
|
| 58 |
+
st.markdown(
|
| 59 |
+
"This release is a **beta** version. Report errors or suggestions "
|
| 60 |
+
"on [GitHub](https://github.com/LudvigOlsen/cvms_plot_app/issues)."
|
| 61 |
+
)
|
| 62 |
st.write(
|
| 63 |
"The plot is created with the [**cvms**](https://github.com/LudvigOlsen/cvms) R package "
|
| 64 |
f"(v/{get_cvms_version()}, LR Olsen & HB Zachariae, 2019)."
|
|
|
|
| 131 |
def design_text():
|
| 132 |
st.subheader("Design your plot")
|
| 133 |
st.write("This is where you customize the design of your confusion matrix plot.")
|
| 134 |
+
st.markdown(
|
| 135 |
+
"The *width* and *height* settings are usually necessary to adjust as they "
|
| 136 |
"change the relative size of the elements. Try adjusting 100px at a "
|
| 137 |
"time for a start."
|
| 138 |
)
|
| 139 |
+
st.write(
|
| 140 |
+
"If you have previously saved your preferred design settings, "
|
| 141 |
+
"you can start by uploading the json file. "
|
| 142 |
+
"Otherwise, get designing!"
|
| 143 |
+
)
|