Hi guys, i am new to Mathematica and want to plot some data with two Axes. I found the function MultipleAxesListPlot. But there are some problems when trying to Label the data.
The following Example of using the MultipleAxesListPlot is not working:
data1 = {{16, 6}, {20, 10}, {32, 61}, {44, 461}};
data2 = {{16, 0.514}, {20, 0.538}, {32, 0.613}, {44, 0.686}};
data1Labeled = Labeled[#, ToString[#[[2]]]] & /@ data1;
data2Labeled = Labeled[#, ToString[#[[2]]]] & /@ data2;
ResourceFunction["MultipleAxesListPlot"][{data1Labeled, data2Labeled},
FrameLabel -> {"Punktabstand [\[Micro]m]", `enter code here` "Lebensdauer [\[Micro]s]"} ]
... while this one is working:
ResourceFunction["MultipleAxesListPlot"][{data1Labeled, data2},
FrameLabel -> {"Punktabstand [\[Micro]m]",
"Lebensdauer [\[Micro]s]"} ]
I am wondering why the second dataset cant be Labeled...
And the second question is: Is there a possibility to add a Label to the second Axis?
Thank you for your help! Greetings, Tom
Attachments: