我无法通过下面显示的 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')