Skip to content

Commit

Permalink
fixed missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
Muellersen committed Jul 17, 2024
1 parent 7e95888 commit 54a0c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/safeds/data/tabular/plotting/_table_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def violin_plots(self, theme: Literal["dark", "light"] = "light") -> Image:
Examples
--------
>>> from safeds.data.tabular.containers import Table
>>> table = Table({"a":[1, 2], "b": [3, 42]})
>>> table = Table({"a": [1, 2], "b": [3, 42]})
>>> image = table.plot.violin_plots()
"""
numerical_table = self._table.remove_non_numeric_columns()
Expand Down

0 comments on commit 54a0c31

Please sign in to comment.