Skip to main content

plotting - How to use legends from PlotLegends in LevelScheme?



I've been attempting to find efficient ways to generate graphics with legends for export, and have been working with both LevelScheme and the new (to v9) PlotLegends. It seems the easiest approach would be to use PlotLegends to automatically generate the legends with the graphic, peel out the plots and legends separately, then use LevelScheme to arrange/combine as desired. Sounds pretty painless, but...


The RawGraphics command of LevelScheme does not accept MMA's LineLegend, etc. objects. The only workaround I've found is to wrap the legend in Graphics[Inset[...]], but this breaks down, as LevelScheme dumps these graphics objects in the middle of the MultiPanel area.


Any ideas on how to get this working (or maybe why it cannot work)? Below is my attempt so far:


Get["LevelScheme`"];

myPlot = Plot[Sin[x], {x, 0, 10}, ImageSize -> 72*3,
PlotLegends -> Placed[LineLegend["Expressions"], {After, Center}]];
Graphics[Inset[myPlot[[2, 1, 1]]], ImagePadding -> None,
PlotRangeClipping -> True]


myDensity =
DensityPlot[Sin[x], {x, 0, 10}, {y, -1, 1}, ImageSize -> 72*3,
PlotLegends -> Automatic];
Graphics[Inset[myDensity[[2, 1, 1]]], ImagePadding -> None,
PlotRangeClipping -> True]

Figure[
{
Multipanel[
{{0, 1}, {0, 1}},

{2, 2},
XPlotRanges -> {{0, 10}, {-1, 1}},
YPlotRanges -> {{-1.1, 1.1}, {-1.1, 1.1}}
],
FigurePanel[{1, 1}],
RawGraphics[myPlot[[1]]],
FigurePanel[{2, 1}],
RawGraphics[myDensity[[1]]],
FigurePanel[{1, 2}],
RawGraphics[

Graphics[Inset[myPlot[[2, 1, 1]]], ImagePadding -> None,
PlotRangeClipping -> True]],
FigurePanel[{2, 2}],
RawGraphics[
Graphics[Inset[myDensity[[2, 1, 1]]], ImagePadding -> None,
PlotRangeClipping -> True]],
},
PlotRange -> Automatic,
ExtendRange -> {{0.1, 0.1}, {0.15, 0.1}},
ImageSize -> 6*72, Frame -> True

]

enter image description here



Answer



The reason the OP's hack works is because Inset allows to place non-graphic objects in a graphics object. The reason it does not work is because Inset places the inset in the center of hosting graph by default.


The package has a command to include non-graphics objects: ScaledLabel.


The following function takes a legend plot pand returns the command to include it in a Figure at the location l with the scaling s. The location is respect to the original graph.


transformLegendPlot[p_, l_, s_: 1] := 
Sequence[RawGraphics@p[[1]],
ScaledLabel[l,

p[[2, 1, 1]] /. (LegendMarkerSize -> x_) :>
LegendMarkerSize -> s x]];

Now, transformLegendPlot can be used almost as a native command:


Figure[{Multipanel[{{0, 1}, {0, 1}}, {2, 1}, XPlotRanges -> {{0, 10}},
YPlotRanges -> {{-1.1, 1.1}, {-1.1, 1.1}}], FigurePanel[{1, 1}],
transformLegendPlot[myPlot, {0.5, 0.7}], FigurePanel[{2, 1}],
transformLegendPlot[myDensity, {0.2, 0.5}, .5]},
PlotRange -> Automatic, ExtendRange -> {{0.1, 0.1}, {0.15, 0.1}},
ImageSize -> 6*72, Frame -> True]


enter image description here




Update


Extracting and formatting the legends PlotLegends (for use in LevelScheme).


The OP mentions in a comment that the plot legends should be posted in a different pane. Since that seems to have been his original intent, I will oblige.


The following code produces a ScaledLabel object to be used in a different panel with the addition that the style of the legends can be changed.


extractLegendsAndFormat[plot_, scale_, styles___] := 
ScaledLabel[{0.5, 0.5},
plot[[2, 1, 1]] /.

x : TraditionalForm[HoldForm[_]] :>
Style[x, styles] /. (LegendMarkerSize -> x_) :>
LegendMarkerSize -> scale x];

Now, you can give format options as shown below:


l1 := extractLegendsAndFormat[myPlot, 1, FontName -> "Helvetica", 
FontSize -> 33, FontColor -> Red];
l2 := extractLegendsAndFormat[myDensity, 0.5];

Those objects can be placed in their own panels:



Figure[{Multipanel[{{0, 1}, {0, 1}}, {2, 2}, XPlotRanges -> {{0, 10}},
YPlotRanges -> {{-1.1, 1.1}, {-1.1, 1.1}}],
FigurePanel[{1, 1}], RawGraphics@myPlot[[1]],
FigurePanel[{1, 2}], l1,
FigurePanel[{2, 1}], RawGraphics@myDensity[[1]],
FigurePanel[{2, 2}], l2}, PlotRange -> Automatic,
ExtendRange -> {{0.1, 0.1}, {0.15, 0.1}}, ImageSize -> 6*72,
Frame -> True]

enter image description here





Previous answer


300 reputation is too good to let it go, so here is my second try. It still uses Overlay.


ff = Figure[{Multipanel[{{0, 1}, {0, 1}}, {2, 2}, 
XPlotRanges -> {{0, 10}, {-1, 1}},
YPlotRanges -> {{-1.1, 1.1}, {-1.1, 1.1}}], FigurePanel[{1, 1}],
RawGraphics[myPlot[[1]]], FigurePanel[{2, 1}],
RawGraphics[myDensity[[1]]], FigurePanel[{1, 2}],
FigurePanel[{2, 2}]}, PlotRange -> Automatic,
ExtendRange -> {{0.1, 0.1}, {0.15, 0.1}}, ImageSize -> 6*72,

Frame -> True];

Manipulate[
Overlay[{ff,
Graphics[{Opacity[0], Rectangle[{0, 0}, {1, 1}], Opacity[1],
Inset[myPlot[[2, 1, 1]], {x, y}]}],
Graphics[{Opacity[0], Rectangle[{0, 0}, {1, 1}], Opacity[1],
Inset[myDensity[[2, 1, 1]], {.94, .618}]}]}], {{x,.45}, 0, 1}, {{y,.8}, 0,
1}]


enter image description here


Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

equation solving - Invert and fit implicitly defined curve

I need to fit an implicitly defined curve. I thought I could get some data out of Solve , and then using FindFit . Therefore, I would like to find the relation the parametric curve defined by $F(x,y)=0$: Solve[-(1/2) + 1/2 (0.41202 BesselK[0, 0.1 Sqrt[x^2 + y^2]] + (0.101483 x BesselK[1, 0.1 Sqrt[x^2 + y^2]])/Sqrt[x^2 + y^2]) == 0, y] But I can't get an output: Solve was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Solve require exact input, providing Solve with an exact version of the system may help. >> Edit: In particular, I would like to fit the data coming from the curve with the expression of another curve, and not with a function $f(x)$. In particular, since this clearly looks like a cardioid , I would like it to fit to something like it. What other strategies could I try?

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...