Visualization: Labels, Scales, Exclusions

New Labeling System

Use the PlotLabels option to add expressions as labels automatically.

In[1]:=
Click for copyable input
Plot[Evaluate[Table[Log[x] Sin[i x], {i, 1, 5}]], {x, 0, 3}, PlotLabels -> Automatic, ImageSize -> 500, PlotTheme -> {"Web", "LargeLabels"}]
Out[1]=

Use the Labeled wrapper to place the labels close to the curves.

In[2]:=
Click for copyable input
Plot[Evaluate[ Table[Labeled[BesselY[i, x], BesselY[i, x], Above], {i, 0, 4}]], {x, 2, 8}, ImageSize -> 500, PlotTheme -> {"Web", "LargeLabels"}]
Out[2]=

Use the Callout wrapper to point the labels to the curves.

In[3]:=
Click for copyable input
Plot[Evaluate@ Table[Callout[BesselJ[i, x], BesselJ[i, x], Above], {i, 1, 6}], {x, 0, 8}, ImageSize -> 500, PlotTheme -> {"Web", "LargeLabels"}]
Out[3]=

Related Examples

de es fr ja ko pt-br ru zh