Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
axes.set_xlabel('Time index')
axes.set_ylabel('dt(sec)')

Axes labels with LaTeX symbols

Use raw string with LaTeX notations inside:

Code Block

axes.set_xlabel(r'$\rho A_i$')

Text in axes

Code Block
plt.text(x, y, text, fontsize=7, color='k', ha='left', rotation=45)
axes.text(x, y, text, fontsize=7, color='k', ha='left', rotation=45)

...