import pandas as pd import matplotlib.pyplot as plt from PythonTsa.SimulSBM import simulSBM x = simulSBM(seed = 1357, fig = False) y = simulSBM(seed = 357, fig = False) z = simulSBM(seed = 3571, fig = False) # if seed is fixed, the same SBM is reproduced. # if fig = True, a SBM plot is automatically generated. xyz = pd.DataFrame({'SBM1': x, 'SBM2': y, 'SBM3': z}) xyz.plot(style = ['-', '--', ':']) plt.xlabel('Time $t$') plt.ylabel('Standard Brownian Motion')转换为R
时间: 2023-06-02 19:08:03 浏览: 241
浅谈matplotlib.pyplot与axes的关系
这段代码的意思是导入pandas和matplotlib.pyplot这两个Python的库,并从PythonTsa.SimulSBM库中导入simulSBM函数。接着分别使用seed参数为1357、357、3571来调用simulSBM函数,并将结果分别赋值给变量x、y、z。其中,fig参数设置为False表示不显示图像。
阅读全文