Skip to content

Commit

Permalink
feat: add categories to column plotter methods
Browse files Browse the repository at this point in the history
  • Loading branch information
GideonKoenig committed Nov 14, 2024
1 parent 4a48261 commit d342ee6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class ColumnPlotter(
*/
@Pure
@PythonName("box_plot")
@Category(DataScienceCategory.DataExplorationQVisualization)
fun boxPlot(
theme: literal<"dark", "light"> = "light"
) -> plot: Image
Expand All @@ -51,6 +52,7 @@ class ColumnPlotter(
*/
@Pure
@PythonName("violin_plot")
@Category(DataScienceCategory.DataExplorationQVisualization)
fun violinPlot(
theme: literal<"dark", "light"> = "light"
) -> plot: Image
Expand All @@ -70,6 +72,7 @@ class ColumnPlotter(
* }
*/
@Pure
@Category(DataScienceCategory.DataExplorationQVisualization)
fun histogram(
@PythonName("max_bin_count") const maxBinCount: Int = 10,
theme: literal<"dark", "light"> = "light"
Expand All @@ -93,6 +96,7 @@ class ColumnPlotter(
*/
@Pure
@PythonName("lag_plot")
@Category(DataScienceCategory.DataExplorationQVisualization)
fun lagPlot(
lag: Int,
theme: literal<"dark", "light"> = "light"
Expand Down

0 comments on commit d342ee6

Please sign in to comment.