Spaces:
Sleeping
Sleeping
Update tools/graph_plotter_tool.py
Browse files
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 |
-
|
|
|
|
| 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)
|