以下に示すPythonコードから、Excelのアクティブシートの特定の場所にチャートを配置できません。グラフを作成できますが、ワークシート上の配置場所を制御できません。私はまったくの初心者であり、フォーラムで必要なすべての規則に従っていない可能性があります。申し訳ありません。ヴァス
from __future__ import division
get_ipython().magic(u'matplotlib inline')
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import rc
from sympy import *
from IPython.display import display as dsp
from IPython.display import Math, Latex
import xlwings as xw
plt.plot(psr,dphs)
plot = xw.Plot(fig)
#xlwings.shapes.shape.top = Range('A23') DID NOT WORK
plot.show('Plot1')