I want to extract the values of each variable after moving the range in Plotly "go.Parcords"

Asked 1 years ago, Updated 1 years ago, 110 views

Plotly provides the ability to plot relationships between variables.
https://plot.ly/python/parallel-coordinates-plot/

You can manually change the range of each variable interactively.
I want to extract the min/max value after manually changing it, but I don't know how to do it.

If anyone knows, could you please let me know?

Thank you for your cooperation.

python plotly-python

2022-09-30 21:35

1 Answers

The Python version of Plotly only has the ability to create html-based code.To view the graph, you will need a Web server such as Jupiter Notebook and Plotly's application server.Therefore, it is impossible for the Python Plotly side to obtain information about interactive changes.

If you want to get interactive information about the graph, you need to use plotly.js.I don't know if it's easy to do it, but I don't think it's impossible because the code for plotly.js is published in OSS.


2022-09-30 21:35

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.