Skip to content

Commit

Permalink
fix: UI plotting doc typo (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrunyon committed Jun 11, 2024
1 parent 606180a commit df6c9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/ui/docs/Plotting.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def plot_partitioned_table(table, initial_value):
p = plot_partitioned_table(_stocks, "DOG")
```

## Combining a fitler and a partition by
## Combining a filter and a partition by

Deephaven Express allows you to plot by a partition and assign unique colors to each key. Sometimes as a user you may also want to filter the data in addition to partitioning it. We've previously referred to this as a "one-click plot by" behaviour in enterprise. This can be done by either filtering the table first and then partitioning it, or partitioning it first and then filtering it. The choice of which to use depends on the size of the table and the number of unique values in the partition key. The first example is more like a traditional "one-click" component, and the second is more like a parameterized query. Both will give you the same result, but the first one may return results faster, whereas the second one may be more memory efficient.

Expand Down

0 comments on commit df6c9b9

Please sign in to comment.