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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
pymc_marketing.plot.plot_curve
plot_curve will not work when there is the sample dimension
plot_curve
sample
This would show up with any combined=True DataArrays
combined=True
Having the combined=True causes the data_array.sizes to not include draw or chain dimensions since they were combined. For example:
data_array.sizes
draw
chain
# Output of sizes attribute Frozen({'date': 35, 'sample': 100})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
plot_curve
will not work when there is thesample
dimensionThis would show up with any
combined=True
DataArraysHaving the combined=True causes the
data_array.sizes
to not includedraw
orchain
dimensions since they were combined. For example:The text was updated successfully, but these errors were encountered: