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

Use ScaleFormatter for plot scaling #447

Open
mhostetter opened this issue Dec 20, 2024 · 0 comments
Open

Use ScaleFormatter for plot scaling #447

mhostetter opened this issue Dec 20, 2024 · 0 comments
Labels
plot Related to plotting functions

Comments

@mhostetter
Copy link
Owner

import matplotlib.pyplot as plt
from matplotlib.ticker import FuncFormatter

# Example data
x = [1, 2, 3, 4, 5]
y = [1000, 2000, 3000, 4000, 5000]

# Define a formatter function
def scale_formatter(value, tick_number):
    return f'{value / 1000:.1f}'

# Create the plot
fig, ax = plt.subplots()
ax.plot(x, y)

# Apply the formatter to the y-axis
ax.yaxis.set_major_formatter(FuncFormatter(scale_formatter))

# Add labels
ax.set_xlabel("X-axis")
ax.set_ylabel("Y-axis (scaled)")

plt.show()
@mhostetter mhostetter added the plot Related to plotting functions label Dec 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
plot Related to plotting functions
Projects
None yet
Development

No branches or pull requests

1 participant