Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rmj3197 committed Feb 7, 2025
1 parent 30e7798 commit 75d7a01
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 10 deletions.
4 changes: 3 additions & 1 deletion QuadratiK/ui/pages/1_Normality_Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def run_normality_test(h_val, num_iter, b, x):
"2. The file may contain a header (see image below for reference). If headers are present, check the box. The checkbox is selected by default."
)
st.write("3. Specify the separator or delimiter used; the default is a comma (,).")
st.write("4. Once the data is uploaded, specify the values of bandwidth parameter, proportion of subsampling samples to be used, and number of iterations for critical value estimation. Default values are provided.")
st.write(
"4. Once the data is uploaded, specify the values of bandwidth parameter, proportion of subsampling samples to be used, and number of iterations for critical value estimation. Default values are provided."
)

st.image(
str(
Expand Down
12 changes: 9 additions & 3 deletions QuadratiK/ui/pages/2_Two_Sample_Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,18 @@ def run_twosample_test(h_val, num_iter, b, X, Y):
st.code(code_R, language="r")

st.subheader("Input Instructions", divider="grey")
st.write("1. Upload the data file in .txt or .csv format for both the X and Y datasets.")
st.write(
"1. Upload the data file in .txt or .csv format for both the X and Y datasets."
)
st.write(
"2. The file may contain a header (see image below for reference). If headers are present, check the box. The checkbox is selected by default. Please ensure that both X and Y either contain headers or neither contain headers."
)
st.write("3. Specify the separator or delimiter used in both the X and Y datasets; the default is a comma (,).")
st.write("4. Once the data files are uploaded, specify the values of bandwidth parameter, proportion of subsampling samples to be used, and number of iterations for critical value estimation. Default values are provided.")
st.write(
"3. Specify the separator or delimiter used in both the X and Y datasets; the default is a comma (,)."
)
st.write(
"4. Once the data files are uploaded, specify the values of bandwidth parameter, proportion of subsampling samples to be used, and number of iterations for critical value estimation. Default values are provided."
)

st.image(
str(
Expand Down
16 changes: 12 additions & 4 deletions QuadratiK/ui/pages/3_K_Sample_Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,21 @@ def run_ksample_test(h_val, num_iter, b, X, y):
st.code(code_R, language="r")

st.subheader("Input Instructions", divider="grey")
st.write("1. Upload the data file in .txt or .csv format for both the X and Y datasets.")
st.write(
"1. Upload the data file in .txt or .csv format for both the X and Y datasets."
)
st.write(
"2. The file may contain a header (see image below for reference). If headers are present, check the box. The checkbox is selected by default. Please ensure that both X and Y either contain headers or neither contain headers."
)
st.write("3. Specify the separator or delimiter used in both the X and Y datasets; the default is a comma (,).")
st.write("4. Once the data is uploaded, specify the column in the data file that contains the labels.")
st.write("5. Furthermore please specify the values of bandwidth parameter, proportion of subsampling samples to be used, and number of iterations for critical value estimation. Default values are provided.")
st.write(
"3. Specify the separator or delimiter used in both the X and Y datasets; the default is a comma (,)."
)
st.write(
"4. Once the data is uploaded, specify the column in the data file that contains the labels."
)
st.write(
"5. Furthermore please specify the values of bandwidth parameter, proportion of subsampling samples to be used, and number of iterations for critical value estimation. Default values are provided."
)

st.image(
str(
Expand Down
6 changes: 4 additions & 2 deletions QuadratiK/ui/pages/5_Uniformity_Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,17 @@ def run_uniformity_test(rho, num_iter, x):
show(res_unif)
"""
st.code(code_R, language="r")

st.subheader("Input Instructions", divider="grey")

st.write("1. Upload the data file in .txt or .csv format.")
st.write(
"2. The file may contain a header (see image below for reference). If headers are present, check the box. The checkbox is selected by default."
)
st.write("3. Specify the separator or delimiter used; the default is a comma (,).")
st.write(r"4. Once the data is uploaded, specify the number of iterations for critical value estimation and concentration parameter ($\rho$). Default values are provided.")
st.write(
r"4. Once the data is uploaded, specify the number of iterations for critical value estimation and concentration parameter ($\rho$). Default values are provided."
)

st.image(
str(
Expand Down
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
"myst_parser",
]

nbsphinx_execute = "always"

myst_enable_extensions = [
"amsmath",
"attrs_inline",
Expand Down

0 comments on commit 75d7a01

Please sign in to comment.