当前位置: 首页 > 有奖问答 >求sci中图的名称和做法

求sci中图的名称和做法

作者 孙甲鱼的窝
来源: 小木虫 100 2 举报帖子
+关注

想问下,这种图叫什么?用什么软件能做出来

 返回小木虫查看更多

今日热帖
  • 精华评论
  • FMStation

    https://www.mathworks.com/help/stats/boxplot.html
    [MATLAB] box plot

    CODE:
    load carsmall

    boxplot(MPG)
    xlabel('All Vehicles')
    ylabel('Miles per Gallon (MPG)')
    title('Miles per Gallon for All Vehicles')

    https://www.mathworks.com/help/examples/stats/win64/CreateABoxPlotExample_01.png
    CODE:
    load carsmall

    boxplot(MPG,Origin)

    title('Miles per Gallon by Vehicle Origin')
    xlabel('Country of Origin')
    ylabel('Miles per Gallon (MPG)')

    https://www.mathworks.com/help/examples/stats/win64/CreateBoxPlotsForGroupedDataExample_01.png
    CODE:
    rng default  % For reproducibility
    x = randn(100,25);

    figure
    subplot(2,1,1)
    boxplot(x)

    subplot(2,1,2)
    boxplot(x,'PlotStyle','compact')

    https://www.mathworks.com/help/examples/stats/win64/CreateCompactBoxPlotsExample_01.png

  • 孙甲鱼的窝

    引用回帖:
    2楼: Originally posted by FMStation at 2017-04-29 10:23:13
    https://www.mathworks.com/help/stats/boxplot.html
    box plot


    load carsmall

    boxplot(MPG)
    xlabel('All Vehicles')
    ylabel('Miles per Gallon (MPG)')
    title('Miles per Gallon for All Vehicles')
    ...

    太谢谢了,谢谢

猜你喜欢