【问题标题】:ValueError: x and y must have same first dimension, but have shapes, tkinter and matplotlib problemValueError: x 和 y 必须具有相同的第一维,但具有形状、tkinter 和 matplotlib 问题
【发布时间】:2021-07-29 18:03:06
【问题描述】:

这几天我一直在玩 GUI 和 matlib,但我在下面的代码中找不到问题。

from tkinter import *
import matplotlib.pyplot as plt
import numpy as np

root = Tk()
root.geometry('700x700')
entry1 = Entry(root, width = 20)
entry1.pack()

def button_command():
    x = np.array(np.linspace(10,1,10))
    y = np.array(entry1.get())
    fig = plt.figure()
    ax = fig.add_subplot(1, 1, 1)
    ax.spines['left'].set_position('center')
    ax.spines['bottom'].set_position('zero')
    ax.spines['right'].set_color('none')
    ax.spines['top'].set_color('none')
    ax.xaxis.set_ticks_position('bottom')
    ax.yaxis.set_ticks_position('left')
    plt.plot(x,y, "r")
    plt.show()
    return None

Button(root, text="Draw function", command=button_command).pack()

root.mainloop()

我收到了这个错误:

ValueError: x and y must have same first dimension, but have shapes (10,) and (1,)

我试图删除 np.array

x = np.linspace(10,1,10)
y = entry1.get()

但我不知道如何将 y = entry1.get() 与 x = np.linspace(10,1,10) 结合起来

我要输入的函数是200-4*x

编辑: 完整的错误代码:

Traceback (most recent call last):
  File "Python\Python39\lib\tkinter\__init__.py", line 1884, in __call__
    return self.func(*args)
  File "gui.py", line 21, in button_command
    plt.plot(x,y, "r")
  File "Python\Python39\lib\site-packages\matplotlib\pyplot.py", line 2988, in plot
    return gca().plot(
  File "Python\Python39\lib\site-packages\matplotlib\axes\_axes.py", line 1605, in plot
    lines = [*self._get_lines(*args, data=data, **kwargs)]
  File "Python\Python39\lib\site-packages\matplotlib\axes\_base.py", line 315, in __call__
    yield from self._plot_args(this, kwargs)
  File "Python\Python39\lib\site-packages\matplotlib\axes\_base.py", line 501, in _plot_args
    raise ValueError(f"x and y must have same first dimension, but "
ValueError: x and y must have same first dimension, but have shapes (10,) and (1,)

【问题讨论】:

  • 错误表示您将单个输出作为数组提供。你想达到什么目的。例如,x 始终是 [10. 9. 8. 7. 6. 5. 4. 3. 2. 1.],但 y 始终是带有字符串的 ndarray?

标签: python numpy matplotlib tkinter


【解决方案1】:

y = entry1.get() 不足以将字符串转换为函数表达式,至少可以这么说。作为一个选项,尝试使用 SymPy 库及其 parse_exprlambdify 方法:

import tkinter as tk
from sympy import symbols, lambdify
from sympy.parsing.sympy_parser import parse_expr
from matplotlib.figure import Figure
from matplotlib.backends.backend_tkagg import (FigureCanvasTkAgg, NavigationToolbar2Tk)
import numpy as np

root = tk.Tk()
root.geometry('700x700')
entry1 = tk.Entry(root, width=20)
entry1.pack()


def draw():
    expr = parse_expr(entry1.get())
    lam = lambdify(symbols('x'), expr)
    x = np.array(np.linspace(-10, 10, 100))
    y = lam(x)
    plot.plot(x, y)
    canvas.draw()


tk.Button(root, text="Draw function", command=draw).pack()

fig = Figure(figsize=(5, 4), dpi=100)
plot = fig.add_subplot()
plot.spines['left'].set_position('center')
plot.spines['bottom'].set_position('zero')
plot.spines['right'].set_color('none')
plot.spines['top'].set_color('none')
canvas = FigureCanvasTkAgg(fig, master=root)

toolbar = NavigationToolbar2Tk(canvas, root, pack_toolbar=False)
toolbar.update()
toolbar.pack(side=tk.BOTTOM, fill=tk.X)
canvas.get_tk_widget().pack(side=tk.TOP, fill=tk.BOTH, expand=1)

root.mainloop()

【讨论】:

  • 非常好。另一个(非常不安全)的选择是使用 python 的 eval 函数,但这是一个更好的解决方案。
猜你喜欢
  • 1970-01-01
  • 2018-12-04
  • 2020-05-02
  • 1970-01-01
  • 2023-03-24
  • 1970-01-01
  • 1970-01-01
  • 2021-07-31
  • 1970-01-01
相关资源
最近更新 更多