We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm trying to retrieve the raw data used in plotCoef.
I'm in the idea that the red line is taken via
.getLatentState(filterType='backwardSmoother', name='x')
but my issue is that I haven't found what are the values taken to plot the probability bands for such latent state
I thought that using
.getLatentCov(filterType='backwardSmoother', name='x')
would give me such numbers (by adding and substracting them from the Latent State) but such numbers are not the same as those that were plotted.
Am I doing and / or interpreting something wrong?
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hi Kreamas
The latent state plot function is done here:
pydlm/pydlm/plot/dlmPlot.py
Line 206 in 47d9437
The marginal variance is obtained from the diagonal entry of the latent covariance matrix:
Line 290 in 47d9437
It then calls to a specific function for getting the confidence interval:
Line 300 in 47d9437
Sorry, something went wrong.
No branches or pull requests
Hi, I'm trying to retrieve the raw data used in plotCoef.
I'm in the idea that the red line is taken via
.getLatentState(filterType='backwardSmoother', name='x')
but my issue is that I haven't found what are the values taken to plot the probability bands for such latent state
I thought that using
.getLatentCov(filterType='backwardSmoother', name='x')
would give me such numbers (by adding and substracting them from the Latent State) but such numbers are not the same as those that were plotted.
Am I doing and / or interpreting something wrong?
Thanks in advance
The text was updated successfully, but these errors were encountered: