I need to plot the data in a dual-axis chart. Are there any examples or instructions? How do the axis scales and labels place on the left and right?
a = {100, 200, 300, 400, 500}; b = {1, 2, 3, 4, 5}; ListPlot[{a, b}]
I never knew there was this resource~~~~ Thank you very much.
I think this is what you are looking for?
https://resources.wolframcloud.com/FunctionRepository/resources/MultipleAxesListPlot
a = {100, 200, 300, 400, 500}; b = {1, 2, 3, 4, 5}; ListPlot[{a, b}, Frame -> True, FrameTicks -> Automatic, GridLines -> Automatic, PlotStyle -> PointSize@Large]
This may help you:
https://resources.wolframcloud.com/FunctionRepository/resources/CombinePlots
Thank you very much for your help !
I hope that there will be built-in functions for the next update.