Update app.py
Browse files
app.py
CHANGED
|
@@ -53,7 +53,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 53 |
gr.Markdown("# operand")
|
| 54 |
gr.Markdown("Data Studio<br><br>")
|
| 55 |
|
| 56 |
-
with gr.Tab("Data
|
| 57 |
gr.Markdown("## Data Sources")
|
| 58 |
gr.Markdown("Instances of data sources e.g., Jira Cloud endpoint")
|
| 59 |
|
|
@@ -66,7 +66,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 66 |
button_a = gr.Button("Submit")
|
| 67 |
button_a.click(dprocess, inputs=[textbox_a], outputs=output_a)
|
| 68 |
|
| 69 |
-
with gr.Tab("Data
|
| 70 |
gr.Markdown("## Data Set")
|
| 71 |
gr.Markdown("A data set from a data source.")
|
| 72 |
textbox_b = gr.Textbox(label='Command B')
|
|
@@ -74,7 +74,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 74 |
button_b = gr.Button("Submit")
|
| 75 |
button_b.click(dprocess, inputs=[textbox_b], outputs=output_b)
|
| 76 |
|
| 77 |
-
with gr.Tab("Data
|
| 78 |
gr.Markdown("## Data Transform")
|
| 79 |
gr.Markdown("A transformation of a data set into a new data set.")
|
| 80 |
textbox_c = gr.Textbox(label='Command C')
|
|
@@ -82,7 +82,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 82 |
button_c = gr.Button("Submit")
|
| 83 |
button_c.click(dprocess, inputs=[textbox_c], outputs=output_c)
|
| 84 |
|
| 85 |
-
with gr.Tab("Data
|
| 86 |
gr.Markdown("## Data Analysis")
|
| 87 |
gr.Markdown("Statistical analysis of a data set e.g., slope calculation on feature")
|
| 88 |
textbox_d = gr.Textbox(label='Command C')
|
|
@@ -90,7 +90,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 90 |
button_d = gr.Button("Submit")
|
| 91 |
button_d.click(dprocess, inputs=[textbox_d], outputs=output_d)
|
| 92 |
|
| 93 |
-
with gr.Tab("Data
|
| 94 |
gr.Markdown("## Data Visualization")
|
| 95 |
gr.Markdown("A visual insight from a data set or data analysis results e.g., matplotlib, sns, plotly")
|
| 96 |
textbox_c = gr.Textbox(label='Command C')
|
|
@@ -98,7 +98,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 98 |
button_c = gr.Button("Submit")
|
| 99 |
button_c.click(dprocess, inputs=[textbox_c], outputs=output_c)
|
| 100 |
|
| 101 |
-
with gr.Tab("
|
| 102 |
gr.Markdown("## Notifications")
|
| 103 |
gr.Markdown("Scheduled transmission of data set, data analysis or data visualization direct to user device")
|
| 104 |
textbox_c = gr.Textbox(label='Command C')
|
|
@@ -106,7 +106,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 106 |
button_c = gr.Button("Submit")
|
| 107 |
button_c.click(dprocess, inputs=[textbox_c], outputs=output_c)
|
| 108 |
|
| 109 |
-
with gr.Tab("
|
| 110 |
gr.Markdown("## Automation")
|
| 111 |
gr.Markdown("Multistep composition of functional elements")
|
| 112 |
textbox_c = gr.Textbox(label='Command C')
|
|
|
|
| 53 |
gr.Markdown("# operand")
|
| 54 |
gr.Markdown("Data Studio<br><br>")
|
| 55 |
|
| 56 |
+
with gr.Tab("Data Sources"):
|
| 57 |
gr.Markdown("## Data Sources")
|
| 58 |
gr.Markdown("Instances of data sources e.g., Jira Cloud endpoint")
|
| 59 |
|
|
|
|
| 66 |
button_a = gr.Button("Submit")
|
| 67 |
button_a.click(dprocess, inputs=[textbox_a], outputs=output_a)
|
| 68 |
|
| 69 |
+
with gr.Tab("Data Sets"):
|
| 70 |
gr.Markdown("## Data Set")
|
| 71 |
gr.Markdown("A data set from a data source.")
|
| 72 |
textbox_b = gr.Textbox(label='Command B')
|
|
|
|
| 74 |
button_b = gr.Button("Submit")
|
| 75 |
button_b.click(dprocess, inputs=[textbox_b], outputs=output_b)
|
| 76 |
|
| 77 |
+
with gr.Tab("Data Transforms"):
|
| 78 |
gr.Markdown("## Data Transform")
|
| 79 |
gr.Markdown("A transformation of a data set into a new data set.")
|
| 80 |
textbox_c = gr.Textbox(label='Command C')
|
|
|
|
| 82 |
button_c = gr.Button("Submit")
|
| 83 |
button_c.click(dprocess, inputs=[textbox_c], outputs=output_c)
|
| 84 |
|
| 85 |
+
with gr.Tab("Data Analyses"):
|
| 86 |
gr.Markdown("## Data Analysis")
|
| 87 |
gr.Markdown("Statistical analysis of a data set e.g., slope calculation on feature")
|
| 88 |
textbox_d = gr.Textbox(label='Command C')
|
|
|
|
| 90 |
button_d = gr.Button("Submit")
|
| 91 |
button_d.click(dprocess, inputs=[textbox_d], outputs=output_d)
|
| 92 |
|
| 93 |
+
with gr.Tab("Data Visualizations"):
|
| 94 |
gr.Markdown("## Data Visualization")
|
| 95 |
gr.Markdown("A visual insight from a data set or data analysis results e.g., matplotlib, sns, plotly")
|
| 96 |
textbox_c = gr.Textbox(label='Command C')
|
|
|
|
| 98 |
button_c = gr.Button("Submit")
|
| 99 |
button_c.click(dprocess, inputs=[textbox_c], outputs=output_c)
|
| 100 |
|
| 101 |
+
with gr.Tab("Notifications"):
|
| 102 |
gr.Markdown("## Notifications")
|
| 103 |
gr.Markdown("Scheduled transmission of data set, data analysis or data visualization direct to user device")
|
| 104 |
textbox_c = gr.Textbox(label='Command C')
|
|
|
|
| 106 |
button_c = gr.Button("Submit")
|
| 107 |
button_c.click(dprocess, inputs=[textbox_c], outputs=output_c)
|
| 108 |
|
| 109 |
+
with gr.Tab("Automations"):
|
| 110 |
gr.Markdown("## Automation")
|
| 111 |
gr.Markdown("Multistep composition of functional elements")
|
| 112 |
textbox_c = gr.Textbox(label='Command C')
|