This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S julia -t auto | |
# | |
# Metropolis-within-Gibbs sampler for a poisson regression | |
# | |
# y_i ~ poisson(λ_i) | |
# λ_i = exp(X_i' β) | |
# β_j ~ normal(0, 5) | |
# | |
### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Analytical dirichlet model with flat priors --- see BDA3 ch23. | |
### | |
using Distributions, Plots, StatsBase | |
""" | |
bayes_hist(x) | |
Bayesian parametric histogram using the Freedman-Diaconis rule for | |
number of bins. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Distributions, LinearAlgebra, LogExpFunctions | |
function gaussians(μ, Σ) | |
@views [MvNormal(μ[:, i], Σ[:, :, i]) for i in 1:size(μ, 2)] | |
end | |
function E_step!(Y, γ, π, μ, Σ) | |
dists = gaussians(μ, Σ) | |
lpi = log.(π) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env Rscript | |
# | |
# Gaussian mixture model fit with the expectation-maximization algorithm | |
### | |
library(mclust) | |
library(mvtnorm) | |
set.seed(4323) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env Rscript | |
library(cmdstanr) | |
library(dplyr) | |
options(mc.cores = parallel::detectCores() - 1) | |
load("./day5.rda") | |
# Actor list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data/ | |
stan/* | |
!stan/*.stan | |
.DS_Store | |
.Rhistory | |
.Rprof.user | |
\#*\# | |
.\#* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Makefile template for Rmarkdown projects | |
# | |
# Includes implicit rules to generate pdf and html versions of Rmd | |
# files as well as several commands for development workflows. | |
# | |
# Invoke `make help` to get started. | |
# | |
# By default, Make will compile the pdf versions of all Rmd files | |
# found in the current working directory. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2020, Joshua Krusell | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell copies of the Software, and to | |
* permit persons to whom the Software is furnished to do so, subject to | |
* the following conditions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From b7b0801c8b9a97a67b1e329d25fe090fe61a818d Mon Sep 17 00:00:00 2001 | |
From: Jamie Magee <[email protected]> | |
Date: Thu, 31 Oct 2019 09:57:34 +0100 | |
Subject: [PATCH] Python 3.8 support (#10777) | |
* Python 3.8 support | |
time.clock() was deprecated in Python 3.3, and removed in Python 3.8. Python 3.8 will be released on 14th October. See [PEP 596](https://www.python.org/dev/peps/pep-0569/) for more info. | |
Tested locally against Python 3.8.0rc1. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lisp/pdf-annot.el b/lisp/pdf-annot.el | |
index b0ff3c2..82cf122 100644 | |
--- a/lisp/pdf-annot.el | |
+++ b/lisp/pdf-annot.el | |
@@ -981,6 +981,7 @@ other annotations." | |
(pdf-cache-renderpage-highlight | |
page (car size) | |
`("white" "steel blue" 0.35 ,@edges)) | |
+ :width (car size) | |
:map (pdf-view-apply-hotspot-functions |
NewerOlder