Skip to content
Snippets Groups Projects
Commit ee36a97a authored by Joana Fraxanet Morales's avatar Joana Fraxanet Morales
Browse files

Fix ax.set_title().

parent 9bdc0a16
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ def c_debye(T, T_D):
fig, ax = pyplot.subplots()
ax.scatter(T, c)
ax.title('Heat capacity of silver compared to the Debye and Einstein models')
ax.set_title('Heat capacity of silver compared to the Debye and Einstein models')
ax.plot(T, c_einstein(T, 151), label='Einstein model')
ax.plot(T, c_debye(T, 215), label='Debye model')
ax.set_ylim(bottom=0, top=26)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment