Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 547 Bytes

anatomia-matplotlib.md

File metadata and controls

34 lines (22 loc) · 547 Bytes

Matplotlib - Anatomia de um gráfico

WIP

matplotlib anatomia

Workflow

# importe da biblioteca
import matplotlib.pyplot as plt

# preparando os dados
x = [1, 2, 3, 4, 5]
y = [10, 20, 30, 40, 50]

# configuração do plot
fig, ax = plt.subplots(figsize=(10, 10))

# plotando os dados
ax.plot(x, y)

# customizando o plot
ax.set(title="Exemplo de plot customizado", xlabel="axis x", ylabel="axis y")

# exibindo o plot
plt.show()

matplotlib plot custom


WIP