“Save Plot in Python speichern” Code-Antworten

So speichern Sie die Matplotlib -Figur in PNG

In [5]: plt.savefig('books_read.png')
Black Backed Magpie

Save Plot in Python speichern

plt.savefig('books_read.png')
Bored Coder

Python -Code, wo die Zahlen speichern können

#where to save the figures
PROJECT_ROOT_DIR = "."
CHAPTER_ID = "classification"
IMAGES_PATH = os.path.join(PROJECT_ROOT_DIR, "images", CHAPTER_ID)
os.makedirs(IMAGES_PATH, exist_ok = True)

def save_fig(fig_id, tight_layout=True, fig_extension="png", resolution=300):
    path = os.path.join(IMAGES_PATH, fig_id + "." + fig_extension)
    print("Saving figure", fig_id)
    if tight_layout:
        plt.tight_layout()
    plt.savefig(path, format=fig_extension, dpi=resolution)
Saad Hassan

Ähnliche Antworten wie “Save Plot in Python speichern”

Fragen ähnlich wie “Save Plot in Python speichern”

Weitere verwandte Antworten zu “Save Plot in Python speichern” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen