python
plotly.express.scatter()
plotly.io.write_html()
Chang’s working examples created in Python
How does the app.callback
decorator work? Understanding the app.callback decorator
Notice that selected_year
is linked to component_property='value'
of the input of the callback(). What the callback does here is when value
of the dcc.Dropdown
changes, the callback()
will use the update_figure()
function to update the property component_property='figure'
of the graph component_id='graph'
In other words, the @app.callback()
simply pass the input from the dcc.Dropdown
component to the update_figure()
function and pass the output of the update_figure()
function to the dcc.Graph
component.
conda install -c plotly plotly-orca psutil requests
install this package via conda. pip.exe is not working
Static Image Export in Python
Why plotly-orca
is unable to install via pip
Create one box plot[1], visualising 3 continuous variables that are not normally distributed- Heart rate, respiratory rate, and system providing oxygen saturation (SpO2)
plot file path: D:\googleDrive\Job\UQ_509098_Data-analyst_Paediatric-Critical-Care-Research-Group\Practical-Assessment\boxplot_HeartRate-RespiratoryRate-spo2_full-sample.png
Create one box plot with 2 facet columns[2], visualising the 3 continuous variables that are not normally distributed– Heart rate, respiratory rate, and system providing oxygen saturation (SpO2)– in different study hospitals
plot file path: D:\googleDrive\Job\UQ_509098_Data-analyst_Paediatric-Critical-Care-Research-Group\Practical-Assessment\boxplot_HeartRate-RespiratoryRate-spo2_in-3-study-sites.png
How To Create a Plotly Visualization And Embed It On Websites
Plotly saving multiple plots into a single html (python)
Python script file path: D:\googleDrive\Job\UQ_509098_Data-analyst_Paediatric-Critical-Care-Research-Group\Practical-Assessment\Chang_PCCRG_dashboard_visualise-HeartRate-RespiratoryRate-spo2.ipynb ↩︎
Python script file path: D:\googleDrive\Job\UQ_509098_Data-analyst_Paediatric-Critical-Care-Research-Group\Practical-Assessment\Chang_PCCRG_dashboard_visualise-HeartRate-RespiratoryRate-spo2.ipynb ↩︎