You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importpandasaspdimportseabornassnsimportmatplotlib.pyplotaspltimportmaidrdiamonds=sns.load_dataset("diamonds")
# Scatter plot for Carat vs price in the diamonds datasetplt.figure(figsize=(10, 6))
karrat=sns.scatterplot(data=diamonds, x="carat", y="price")
plt.title("Carat vs Price")
plt.xlabel("Carat")
plt.ylabel("Price")
plt.show()
maidr.show(karrat)
Tab to the interactive maidr plot area in the browser and use RightArrow to navigate the data points.
Current Issue
maidr does not respond.
The text was updated successfully, but these errors were encountered:
Even though the increase in time seems significant (around 50%), I believe the overall processing time is well within acceptable range.
The more time corresponds to the extraction of data and the injection of custom property for highlighting.
Thoughts
Python binder performs only the extraction, and the rendering is performed by the upstream library.
Since the datapoints are so many, handling the corresponding highlighting and sonification events makes the rendering sluggish. We should investigate more with the JS library.
Reproducible Steps
Current Issue
maidr does not respond.
The text was updated successfully, but these errors were encountered: