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
I went with `autorangeoptions` instead of range as it provides more
intuitive behavior.
```from deephaven import read_csv
from deephaven.plot.figure import Figure
import deephaven.plot.express as dx
stocks = dx.data.stocks().where("Sym = `FISH`")
# plot the data
plot_single = (
Figure()
.plot_xy(
series_name="Price",
t=stocks,
x="Timestamp",
y="Price",
)
.y_axis(min=0.0, max=170.0)
.x_twin()
.plot_xy(
series_name="SPet500",
t=stocks,
x="Timestamp",
y="SPet500",
)
.y_axis(log=True, max=300.0)
.show()
)
```
Co-authored-by: Joe <josephnumainville@deephaven.io>
0 commit comments