Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def test_category_order_with_category_as_x(backend):
# https://github.com/plotly/plotly.py/issues/4875
tips = nw.from_native(px.data.tips(return_type=backend))
fig = px.bar(
tips,
tips.to_native(),
x="day",
y="total_bill",
color="smoker",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def test_arguments_not_modified(backend):
def test_pass_df_columns(backend):
tips = nw.from_native(px.data.tips(return_type=backend))
fig = px.histogram(
tips,
tips.to_native(),
x="total_bill",
y="tip",
color="sex",
Expand Down