Replies: 4 comments 1 reply
-
Same issue. I have tried use following scripts, but still not work. fig = (
so.Plot(penguins, x="bill_length_mm", y="bill_depth_mm")
.add(so.Dot())
.plot()._figure
)
fig.axes[0].set_aspect("equal")
fig |
Beta Was this translation helpful? Give feedback.
-
@liuzj039 why do you think that's not working? Looks right to me. Here's a pure matplotlib version: f, ax = plt.subplots()
ax.scatter(x="bill_length_mm", y="bill_depth_mm", data=penguins)
ax.set_aspect("equal") In any case, this functionality isn't exposed through the |
Beta Was this translation helpful? Give feedback.
-
Yes, |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your detailed explanation |
Beta Was this translation helpful? Give feedback.
-
Does seaborn object can make the scale of x and y equal, like
ax.set_aspect('equal')
.Beta Was this translation helpful? Give feedback.
All reactions