Skip to content
New issue

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

fix spelling mistake #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
on:
push:
branches: main
pull_request:
branches: main
# to be able to trigger a manual build
workflow_dispatch:

env:
RENV_PATHS_ROOT: ~/renv

permissions:
contents: write
pages: write

name: Render and deploy Book

jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true

- name: update
run: sudo apt-get update

- name: Install curl
run: sudo apt-get install -y libcurl4-openssl-dev libglpk-dev
- name: Install git-lfs
run: sudo apt-get install git-lfs

- name: SetLocale
run: |
sudo apt-get update && sudo apt-get install tzdata locales -y && sudo locale-gen es_ES.UTF-8
sudo update-locale

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
# uncomment and fill to pin a version
# with:
# version: 0.9.105

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
r-version: '4.3.3'

- uses: r-lib/actions/setup-renv@v2
- name: Install cmdstan
run: |
cmdstanr::check_cmdstan_toolchain(fix = TRUE)
cmdstanr::install_cmdstan(cores = 2, version = "2.34.0")
shell: Rscript {0}


- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
path: notas/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion notas/16-mas-flujo-bayesiano.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ggplot2::theme_set(ggplot2::theme_light())


En esta parte veremos más detalles del flujo Bayesiano de trabajo, partiendo del
plantwamiento de [M. Betancourt](https://betanalpha.github.io/assets/case_studies/principled_bayesian_workflow)
planteamiento de [M. Betancourt](https://betanalpha.github.io/assets/case_studies/principled_bayesian_workflow)

Veamos el diagrama que se propone en este artículo:

Expand Down