This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Plotly does currently not have a symlog plot built-in, but you can do the symlog | |
# transformation yourself, plot the data on a linear scale, and adjust the | |
# ticks and hovertext. | |
# This script below creates a plot with a symlogged y-axis similar to the second | |
# plot in the matplotlib demo. | |
# https://matplotlib.org/stable/gallery/scales/symlog_demo.html | |
import numpy as np | |
import plotly.graph_objects as go |