Skip to content

Commit

Permalink
coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Sep 8, 2024
1 parent 57106a7 commit c658ea5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions py-polars/tests/unit/operations/namespaces/test_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ def test_dataframe_plot() -> None:
}
)
df.plot.line(x="length", y="width", color="species").to_json()
df.plot.line(
x="length",
y="width",
color="species",
title="title",
x_axis_title="x_axis_title",
y_axis_title="y_axis_title",
).to_json()
df.plot.point(x="length", y="width", size="species").to_json()
df.plot.scatter(x="length", y="width", size="species").to_json()
df.plot.bar(x="length", y="width", color="species").to_json()
Expand Down

0 comments on commit c658ea5

Please sign in to comment.