当前位置: 首页>>代码示例>>Python>>正文


Python pymc3.traceplot方法代码示例

本文整理汇总了Python中pymc3.traceplot方法的典型用法代码示例。如果您正苦于以下问题:Python pymc3.traceplot方法的具体用法?Python pymc3.traceplot怎么用?Python pymc3.traceplot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pymc3的用法示例。


在下文中一共展示了pymc3.traceplot方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: main

# 需要导入模块: import pymc3 [as 别名]
# 或者: from pymc3 import traceplot [as 别名]
def main():

    #load data    
    returns = data.get_data_google('SPY', start='2008-5-1', end='2009-12-1')['Close'].pct_change()
    returns.plot()
    plt.ylabel('daily returns in %');
    
    with pm.Model() as sp500_model:
        
        nu = pm.Exponential('nu', 1./10, testval=5.0)
        sigma = pm.Exponential('sigma', 1./0.02, testval=0.1)
        
        s = pm.GaussianRandomWalk('s', sigma**-2, shape=len(returns))                
        r = pm.StudentT('r', nu, lam=pm.math.exp(-2*s), observed=returns)
        
    
    with sp500_model:
        trace = pm.sample(2000)

    pm.traceplot(trace, [nu, sigma]);
    plt.show()
    
    plt.figure()
    returns.plot()
    plt.plot(returns.index, np.exp(trace['s',::5].T), 'r', alpha=.03)
    plt.legend(['S&P500', 'stochastic volatility process'])
    plt.show() 
开发者ID:vsmolyakov,项目名称:fin,代码行数:29,代码来源:stochastic_volatility.py

示例2: posteriorPlot

# 需要导入模块: import pymc3 [as 别名]
# 或者: from pymc3 import traceplot [as 别名]
def posteriorPlot(self):
        """
        Plots sampled posterior distributions for hyperparameters. 
        """
        with self.model as model:
            pm.traceplot(self.trace, varnames=['l', 'sigmaf', 'sigman'])
            plt.tight_layout()
            plt.show() 
开发者ID:josejimenezluna,项目名称:pyGPGO,代码行数:10,代码来源:GaussianProcessMCMC.py

示例3: posteriorPlot

# 需要导入模块: import pymc3 [as 别名]
# 或者: from pymc3 import traceplot [as 别名]
def posteriorPlot(self):
        """
        Plots sampled posterior distributions for hyperparameters.

        """
        with self.model as model:
            pm.traceplot(self.trace, varnames=['l', 'sigmaf', 'sigman'])
            plt.tight_layout()
            plt.show() 
开发者ID:josejimenezluna,项目名称:pyGPGO,代码行数:11,代码来源:tStudentProcessMCMC.py


注:本文中的pymc3.traceplot方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。