尝试使用gridspec制作2行1列子图,但一直收到错误
ValueError: Number of rows must be a positive integer, not GridSpec(2, 1, height_ratios=[1, 3])[1:2, 0:1]
使用代码时
fig, ax = plt.subplots(figsize = (8,6))
gs = gridspec.GridSpec(2,1,height_ratios = [1,3])
我一辈子也想不出为什么。我希望上面的子情节宽度相同,但高度大约是下面情节的1/3。
1条答案
按热度按时间uyto3xhc1#
“GridSpec”应采用以下格式。