Lar159 commited on
Commit
85d610c
·
verified ·
1 Parent(s): dd8ad6e

Update tools/graph_plotter_tool.py

Browse files
Files changed (1) hide show
  1. tools/graph_plotter_tool.py +2 -1
tools/graph_plotter_tool.py CHANGED
@@ -23,7 +23,8 @@ def plot_function_graph(function_string: str) -> str:
23
  # Configura e cria o gráfico
24
  plt.figure(figsize=(8, 6))
25
  plt.plot(x, y)
26
- plt.title(f"Gráfico de y = {function_string}")
 
27
  plt.xlabel("x")
28
  plt.ylabel("y")
29
  plt.grid(True)
 
23
  # Configura e cria o gráfico
24
  plt.figure(figsize=(8, 6))
25
  plt.plot(x, y)
26
+
27
+ plt.title("Gráfico da Função")
28
  plt.xlabel("x")
29
  plt.ylabel("y")
30
  plt.grid(True)