8

while ループの各反復のプロットを保存するには、Python で「savefig」を使用する必要があります。図に付ける名前には、リテラル部分と数値部分が含まれている必要があります。これは配列から取得されるか、反復のインデックスに関連付けられた数値です。私は簡単な例を作ります:

# index.py

from numpy import *
from pylab import *
from matplotlib import *
from matplotlib.pyplot import *
import os

x=arange(0.12,60,0.12).reshape(100,5)
y=sin(x)

i=0

while i<99
  figure()
  a=x[:,i]
  b=y[:,i]
  c=a[0]
  plot(x,y,label='%s%d'%('x=',c))

  savefig(#???#)      #I want the name is: x='a[0]'.png
                      #where 'a[0]' is the value of a[0]

どうもありがとう。

4

3 に答える 3

5

まあ、それは単にこれであるべきです:

savefig(str(a[0]))

これはおもちゃの例です。私のために働きます。

import pylab as pl
import numpy as np

# some data
x = np.arange(10)

pl.figure()
pl.plot(x)
pl.savefig('x=' + str(10) + '.png')
于 2012-12-03T12:11:23.367 に答える
3

最近同じ要求があり、解決策を見つけました。指定されたコードを変更し、いくつかの明示的なエラーを修正します。

from pylab import *
import matplotlib.pyplot as plt

x = arange(0.12, 60, 0.12).reshape(100, 5)
y = sin(x)
i = 0

while i < 99:
    figure()
    a = x[i, :]                   # change each row instead of column
    b = y[i, :]                   

    i += 1                        # make sure to exit the while loop

    flag = 'x=%s' % str(a[0])     # use the first element of list a as the name
    plot(a, b, label=flag)
    plt.savefig("%s.png" % flag)

それが役に立てば幸い。

于 2016-02-18T02:34:50.193 に答える
2

文字列を動的にフォーマットするためにpython 3.6使用できるため:f-strings

import matplotlib.pyplot as plt

for i in range(99):
    plt.figure()
    a = x[:, i]
    b = y[:, i]
    c = a[0]
    plt.plot(a, b, label=f'x={c}')

    plt.savefig(f'x={c}.png')
于 2020-03-11T22:57:59.493 に答える