“Rettung von 3D -Diagrammen auf Python als PNG” Code-Antworten

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

SaveFig Matplotlib Python

import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")
Tremendous Enceladus

Rettung von 3D -Diagrammen auf Python als PNG

I can't get this to work. Do I need to modify the paths or anything? ALso, when I try to run the save_fig, it needs the fig_id. I don't knoww what this is.
Anxious Addax

Ähnliche Antworten wie “Rettung von 3D -Diagrammen auf Python als PNG”

Fragen ähnlich wie “Rettung von 3D -Diagrammen auf Python als PNG”

Weitere verwandte Antworten zu “Rettung von 3D -Diagrammen auf Python als PNG” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen