簡體   English   中英

ValueError: x 和 y 必須具有相同的第一維,但有形狀,tkinter 和 matplotlib 問題

[英]ValueError: x and y must have same first dimension, but have shapes, tkinter and matplotlib problem

幾天來我一直在玩 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) 結合起來

我要輸入的 function 是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,)

至少可以說, y = entry1.get()不足以將字符串轉換為 function 表達式。 作為一個選項,嘗試使用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()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM