Skip to content

Commit

Permalink
refactor: example dataset column names to PascalCase (#666)
Browse files Browse the repository at this point in the history
I have not tested the docs examples, only the actual data generating
stuff. All is working well.
  • Loading branch information
alexpeters1208 committed Jul 29, 2024
1 parent c4e7945 commit def7069
Show file tree
Hide file tree
Showing 5 changed files with 225 additions and 175 deletions.
4 changes: 2 additions & 2 deletions plugins/plotly-express/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ import deephaven.plot.express as dx
my_table = dx.data.stocks()

# Create a line plot, and assign colors by distinct values in the `sym` column
my_plot = dx.line(table=my_table, x="timestamp", y="price", color="sym")
my_plot = dx.line(table=my_table, x="Timestamp", y="Price", color="Sym")
```

In this example, we create a Deephaven table and create a line plot of `timestamp` against `price` with automatic downsampling. A trace is created for each value in the `sym` column, each of which has a unique color.
In this example, we create a Deephaven table and create a line plot of `Timestamp` against `Price` with automatic downsampling. A trace is created for each value in the `Sym` column, each of which has a unique color.

## Contributing

Expand Down
Loading

0 comments on commit def7069

Please sign in to comment.