We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de88555 commit 132c838Copy full SHA for 132c838
galleries/examples/subplots_axes_and_figures/secondary_axis.py
@@ -116,7 +116,7 @@ def one_over(x):
116
x2_vals = x1_vals ** 2
117
ydata = 50.0 + 20 * np.random.randn(len(x1_vals))
118
ax.plot(x1_vals, ydata, label='Plotted data')
119
-ax.plot(x1_vals, x2_vals, label=r'$x_2(x_1)$')
+ax.plot(x1_vals, x2_vals, label=r'$x_2 = x_1^2$')
120
ax.set_xlabel(r'$x_1$')
121
ax.legend()
122
0 commit comments