juliaPro 使用PyPlot画图
程序员文章站
2022-03-21 16:33:30
...
正确使用方法:
import PyPlot
import PyCall
x1 = rand(1000);
x2 = rand(1000);
PyPlot.plot(x1,x2,"bo-",markersize = 4, label = "strengh of correlation")
PyPlot.title("DCCA coefficients analysis of data")
PyPlot.xlabel("Window size s")
PyPlot.xscale("log")
PyPlot.ylabel("correlation")
最关键的是要import PyPlot,后面的命令前加PyPlot,如PyPlot.plot .title..