0
"loadingfiles"でtkinterを使用して4つのディレクトリを選択しました。そこから、各ディレクトリーからすべてのファイルをロードします。 すべてのサブプロットをPDFに保存するにはどうすればよいですか?私は主な機能からそれをやらなければならないことは知っていますが、どうすればこのことを知ることができますか?これはどんな意味がない場合は異なる機能を使用して複数のサブプロットを1つのpdfに保存する
def loadingfiles():
#loads all of the files from each directory
#returns Files
def initialize_and_Calculate(Files=[],*args):
fig = plt.figure()
fig.set_size_inches(9,5,forward=True)
gs1=gridspec.GridSpec(1,2)
ax0=fig.add_subplot(gs1[0,0])
ax1=fig.add_subplot(gs1[0,1])
#treat x and y as a parameter within a file in a directory. Can be any numbers
ax0.plot(x,y,'-')
ax1.plot(x1,y1,'-')
fig.tight_layout()
def main():
Files=loadingfiles() #this loads the files in directory
L=len(Files)
for c in range (0,L): #this for loops runs the initialize_and_Calc. function per directory.
initialize_and_Calculate(Files[c]) #'File[0]' is directory 1. 'File[1]' is directory 2...and so on
plt.show()
if __name__=="__main__":
main()
、その後、どのように私は、関数の「イチジク」を渡すことができます。私が主な機能で人物を作っていたら、どうすれば機能に「fig」を渡すことができますか?