公告:本站正式转型为非交互式静态网站!
转型:本站将通过笔记和博客的形式继续为大家服务,关于 Mathematica 问答服务请移步至QQ群:365716997
联系:如有问题请联系QQ群管理员,或发送邮件至:lixuan.xyz@qq.com。
感谢:最后非常感谢大家多年来的支持与帮助!
参考《互联网跟帖评论服务管理规定》《中华人民共和国网络安全法》《网络信息内容生态治理规定》《互联网用户账号信息管理规定》

—— 2022-11-27

欢迎来到 Mathematica 问答社区

提问时请贴上文本代码

语法高亮:在编辑器中点击

被禁止的话题:广告破解

请阅读:《提问的智慧》

备用域名:mma.ooo

支持LaTex数学公式
行内公式标识符:\$ 或“$\backslash ($”+“$\backslash )$”,
行间公式标识符:\$\$ 或 “$\backslash [$”+“$\backslash ]$”

社区建议QQ群:365716997

分类

0 投票
3.1k 浏览

怎么把两个图放在一个坐标轴上,其中横坐标一致,纵坐标有两个,左边是第一个图的刻度,右边是第二个图的刻度。

参考帮助里给了一个自定义函数

TwoAxisPlot[{f_, g_}, {x_, x1_, x2_}] :=
 Module[{fgraph, ggraph, frange, grange, fticks,
   gticks}, {fgraph, ggraph} =
   MapIndexed[
    Plot[#, {x, x1, x2}, Axes -> True,
      PlotStyle -> ColorData[1][#2[[1]]]] &, {f, g}]; {frange,
    grange} = (PlotRange /. AbsoluteOptions[#, PlotRange])[[
      2]] & /@ {fgraph, ggraph}; fticks = N@FindDivisions[frange, 5];
  gticks = Quiet@
    Transpose@{fticks,
      ToString[NumberForm[#, 2], StandardForm] & /@
       Rescale[fticks, frange, grange]};
  Show[fgraph,
   ggraph /.
    Graphics[graph_, s___] :>
     Graphics[
      GeometricTransformation[graph,
       RescalingTransform[{{0, 1}, grange}, {{0, 1}, frange}]], s],
   Axes -> False, Frame -> True,
   FrameStyle -> {ColorData[1] /@ {1, 2}, {Automatic, Automatic}},
   FrameTicks -> {{fticks, gticks}, {Automatic, Automatic}}]]

但是其应用只适合画已知函数的图像,对于散点图,怎么做到这一点。

用户: 奋斗的大灰狼 (206 分)

1个回答

+2 投票
 
已采纳
TwoAxisPlot[{f_, g_}] := 
 Module[{fgraph, ggraph, frange, grange, fticks, 
   gticks}, {fgraph, ggraph} = 
   MapIndexed[
    ListPlot[#, Axes -> True, 
      PlotStyle -> ColorData[1][#2[[1]]]] &, {f, g}]; {frange, 
    grange} = (PlotRange /. 
        AbsoluteOptions[#, PlotRange])[[2]] & /@ {fgraph, ggraph}; 
  fticks = N@FindDivisions[frange, 5];
  gticks = 
   Quiet@Transpose@{fticks, 
      ToString[NumberForm[#, 2], StandardForm] & /@ 
       Rescale[fticks, frange, grange]};
  Show[fgraph, 
   ggraph /. 
    Graphics[graph_, s___] :> 
     Graphics[
      GeometricTransformation[graph, 
       RescalingTransform[{{0, 1}, grange}, {{0, 1}, frange}]], s], 
   Axes -> False, Frame -> True, 
   FrameStyle -> {ColorData[1] /@ {1, 2}, {Automatic, Automatic}}, 
   FrameTicks -> {{fticks, gticks}, {Automatic, Automatic}}]]

举个例子:

a = {{0, 1020.7}, {24.2, 1352.4}, {37.5, 1259.1}, {44.4, 1203}};
b = {{0, 22.238}, {24.2, 17.084}, {37.5, 14.51}, {44.4, 12.68}};
TwoAxisPlot[{a, b}]

参考文献:

[1] Wolfram语言与系统参考资料中心. https://reference.wolfram.com/language/howto/GeneratePlotsWithTwoVerticalScales.html

用户: sinpen (51 分)
...