awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
rmcelreath avatar

rmcelreath/stat_rethinking_2022

0
View on GitHub↗
4,103 estrellas·434 forks·R·9 vistas

Stat Rethinking 2022

Este proyecto es una colección de cursos y recursos educativos de estadística bayesiana. Proporciona materiales de instrucción, conjuntos de problemas y soluciones diseñados para aprender análisis de datos bayesianos y modelado causal.

El repositorio incluye una suite de scripts de visualización de datos estadísticos utilizados para generar animaciones y gráficos instructivos. También contiene ejemplos de código que implementan modelado bayesiano y análisis de supervivencia a través de múltiples lenguajes de programación para demostrar diferentes enfoques computacionales.

Los materiales cubren una gama de capacidades estadísticas, incluyendo inferencia causal para evaluar efectos de tratamiento y ponderación de post-estratificación para ajustar datos de muestra para la representación de la población. Otras áreas cubiertas incluyen análisis de supervivencia para modelar duraciones de eventos y la aplicación de paquetes estadísticos curados.

Features

  • Bayesian Estimation Guides - Provides structured educational resources and code implementations for mastering Bayesian data analysis and causal modeling.
  • Bayesian Statistics Courseware - Provides a comprehensive collection of instructional materials, problem sets, and solutions for learning Bayesian statistics.
  • Causal Inference Tools - Provides tools and educational content for identifying cause-effect relationships in observational data.
  • Causal Effect Estimators - Implements methods for estimating the magnitude of causal effects and generalizing those effects across populations.
  • Exercise-Solution Pairings - Provides educational structures that link specific problem statements directly to verified algorithmic implementations.
  • Curriculum Sequencing - Arranges learning materials in a structured sequence to guide the progression from basic to complex causal modeling.
  • Course Assignments - Offers a set of structured assignments and solutions for practicing Bayesian data analysis techniques.
  • Problem Set Collections - Provides structured problem sets and corresponding solutions to support the study of Bayesian data analysis.
  • Bayesian Statistical Modeling - Implements probabilistic models with priors and likelihoods across multiple languages to explore computational approaches.
  • Cross-Language Implementations - Provides Bayesian model implementations across multiple programming languages to demonstrate various computational approaches.
  • Study Guides - Offers educational resources and study guides focused on evaluating treatment effects and generalizing outcomes.
  • Causal Effect Estimators - Provides methods for estimating the magnitude of causal relationships and evaluating treatment effects from observational data.
  • Survival Analysis - Provides instructional materials and code for modeling the time until a specific event occurs.
  • Instructional Animation Scripts - Ships scripts that render instructional animations and plots to visualize complex statistical analysis concepts.
  • Statistical Data Visualizations - Uses visual representations and plots to analyze and communicate relationships and patterns within statistical data.
  • Cross-Language Implementation Maps - Provides collections of identical logic across different languages to illustrate syntax and runtime differences for educational purposes.

Historial de estrellas

Gráfico del historial de estrellas de rmcelreath/stat_rethinking_2022Gráfico del historial de estrellas de rmcelreath/stat_rethinking_2022

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Preguntas frecuentes

¿Qué hace rmcelreath/stat_rethinking_2022?

Este proyecto es una colección de cursos y recursos educativos de estadística bayesiana. Proporciona materiales de instrucción, conjuntos de problemas y soluciones diseñados para aprender análisis de datos bayesianos y modelado causal.

¿Cuáles son las características principales de rmcelreath/stat_rethinking_2022?

Las características principales de rmcelreath/stat_rethinking_2022 son: Bayesian Estimation Guides, Bayesian Statistics Courseware, Causal Inference Tools, Causal Effect Estimators, Exercise-Solution Pairings, Curriculum Sequencing, Course Assignments, Problem Set Collections.

¿Qué alternativas de código abierto existen para rmcelreath/stat_rethinking_2022?

Las alternativas de código abierto para rmcelreath/stat_rethinking_2022 incluyen: py-why/dowhy — DoWhy is an open-source Python library for causal inference that structures the entire analysis into a sequential… pymc-devs/pymc — PyMC is a Bayesian probabilistic programming framework used for building probabilistic models and performing Bayesian… py-why/econml — EconML is a Python library for causal inference designed to estimate heterogeneous treatment effects using a… jrfiedler/causal_inference_python_code — This repository provides a collection of Python implementations for causal inference, designed to estimate the impact… rlabbe/kalman-and-bayesian-filters-in-python — This project is an educational resource and toolkit for implementing Bayesian estimation and Kalman filters in Python.… camdavidsonpilon/probabilistic-programming-and-bayesian-methods-for-hackers — This project is a computational statistics textbook and Bayesian data analysis course. It serves as a guide for…

Alternativas open-source a Stat Rethinking 2022

Proyectos open-source similares, clasificados según cuántas características comparten con Stat Rethinking 2022.
  • py-why/dowhyP

    py-why/dowhy

    8,175Ver en GitHub↗

    DoWhy is an open-source Python library for causal inference that structures the entire analysis into a sequential four-step framework: modeling, identification, estimation, and refutation. It treats causal assumptions as explicit, first-class citizens, represented as directed acyclic graphs that can be automatically validated against observed data. The library distinguishes itself by cleanly separating the causal identification problem from statistical estimation, allowing any compatible estimator to be used for a given target estimand. It includes automated refutation testing that validates

    Python
    Ver en GitHub↗8,175
  • pymc-devs/pymcAvatar de pymc-devs

    pymc-devs/pymc

    9,650Ver en GitHub↗

    PyMC is a Bayesian probabilistic programming framework used for building probabilistic models and performing Bayesian inference. It provides a probabilistic graphical model library for specifying random variables, priors, and likelihood functions, supported by an MCMC sampling engine and variational inference tools to estimate posterior distributions. The framework features a GPU-accelerated inference backend that compiles models into machine code to increase execution speed. It utilizes a backend-agnostic tensor execution model and just-in-time graph compilation to optimize the computation o

    Pythonbayesian-inferencemcmcprobabilistic-programming
    Ver en GitHub↗9,650
  • py-why/econmlAvatar de py-why

    py-why/EconML

    4,683Ver en GitHub↗

    EconML is a Python library for causal inference designed to estimate heterogeneous treatment effects using a combination of machine learning and econometrics. It serves as a toolkit for calculating conditional average treatment effects to determine how specific interventions impact individuals or subgroups. The project provides a framework for double machine learning and orthogonal machine learning to isolate causal signals from high-dimensional confounders. It includes specialized implementations for causal forests and instrumental variable learners, allowing for the recovery of causal relat

    Jupyter Notebookcausal-inferencecausalityeconometrics
    Ver en GitHub↗4,683
  • jrfiedler/causal_inference_python_codeAvatar de jrfiedler

    jrfiedler/causal_inference_python_code

    1,350Ver en GitHub↗

    This repository provides a collection of Python implementations for causal inference, designed to estimate the impact of specific interventions using observational data. It serves as a statistical toolkit for researchers to isolate causal signals from complex confounding factors in data sets that lack experimental control. The framework enables the application of rigorous methodologies to study health determinants and evaluate policy interventions. By utilizing structural causal modeling and directed acyclic graphs, the library allows users to map causal dependencies and identify the necessar

    Jupyter Notebookcausal-inferencecausalitydata-science
    Ver en GitHub↗1,350
Ver las 30 alternativas a Stat Rethinking 2022→