Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unshared coordinate axes get the same ticks #2870

Closed
mwaskom opened this issue Jun 21, 2022 · 1 comment
Closed

Unshared coordinate axes get the same ticks #2870

mwaskom opened this issue Jun 21, 2022 · 1 comment

Comments

@mwaskom
Copy link
Owner

mwaskom commented Jun 21, 2022

Reprex:

np.random.seed(0)
lengths = np.random.randint(10, 5000, 6)
parts = {}
for i, t in enumerate(lengths):
    parts[i] = pd.DataFrame({"x": np.arange(t), "y": np.random.randn(t).cumsum()})
df = pd.concat(parts, names=["rep", "step"])

so.Plot(df, "x", "y").facet("rep", wrap=3).add(so.Line()).configure(sharex=False)

image

I don't think this is desired ... when unshared, each subplot should get its own ticker.

@mwaskom
Copy link
Owner Author

mwaskom commented Jun 26, 2022

This was fixed as part of #2877

image

@mwaskom mwaskom closed this as completed Jun 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant