AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Bayesian Modeling

skill-choxos-biostatagent-bayesian-modeling · by choxos

Bayesian modeling in R with brms, rstanarm, priors, diagnostics, posterior checks, and model comparison.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-choxos-biostatagent-bayesian-modeling

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-choxos-biostatagent-bayesian-modeling)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Bayesian Modeling? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Bayesian Modeling in R

Overview

Comprehensive Bayesian statistical modeling using Stan-based packages (brms, rstanarm), covering prior specification, posterior analysis, model comparison, and Bayesian workflow best practices.

brms: Bayesian Regression Models

Basic Models

library(brms)

# Linear regression
fit  0")
hypothesis(fit, "x1 > x2")
hypothesis(fit, "x1 + x2 > 0")

# Multiple hypotheses
hypothesis(fit, c("x1 > 0", "x2 > 0", "x1 > x2"))

Posterior Predictive Checks

library(bayesplot)

# Density overlay
pp_check(fit, type = "dens_overlay", ndraws = 50)

# Histogram
pp_check(fit, type = "hist", ndraws = 8)

# Error scatter
pp_check(fit, type = "error_scatter_avg")

# Intervals
pp_check(fit, type = "intervals")

# Stat comparison
pp_check(fit, type = "stat", stat = "mean")
pp_check(fit, type = "stat_2d", stat = c("mean", "sd"))

MCMC Diagnostics

library(bayesplot)

# Trace plots
mcmc_trace(fit)

# Rhat
rhat(fit)
mcmc_rhat(rhat(fit))

# Effective sample size
neff_ratio(fit)
mcmc_neff(neff_ratio(fit))

# Pairs plot (divergences)
mcmc_pairs(fit, pars = c("b_x1", "b_x2", "sigma"))

# Energy
mcmc_nuts_energy(nuts_params(fit))

Model Comparison

LOO Cross-Validation

# LOO-CV
loo_fit1  0")

# 7. Predictions
conditional_effects(fit)

Key Packages Summary

| Package | Purpose | |---------|---------| | brms | General Bayesian regression | | rstanarm | Applied regression models | | bayesplot | MCMC visualization | | loo | Model comparison | | bridgesampling | Bayes factors | | tidybayes | Tidy Bayesian analysis | | posterior | Posterior manipulation |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.