Skip to content

UI & Visualisation

Michael Makarenko edited this page Apr 12, 2022 · 13 revisions

Python library plotly guides and info:

Getting Started with Plotly in Python

Getting Started with Plot.ly. A Guided Walkthrough | Towards Data Science

Python Plotly Tutorial - JournalDev

Python Plotly tutorial

Plot Data From Csv

Jupyter Notebook Tutorial in Python - Plotly

Dash and Plotly

Packages:

pip install plotly
pip install dash
pip install json

Running the UI

Have an assets folder in the same folder as the main program as in the repository

cd [path to folder with newUI.py and NLP Output]
python main.py

Output should be a web address insert into your browser to view the UI.

Notes: If running in Jupyter Notebook must set debug mode to false. Change

app.run_server(debug=True)

To

app.run_server()
Clone this wiki locally