A script that replicates all examples in my blog post on inferring probabilities-- see my bayes post for more information.
$ python ex001_bayes.py
A script that replicates all examples in my blog post on inferring probabilities-- see my bayes post for more information.
$ python ex001_bayes.py
A script that replicates all examples in my blog post on using the lda
Python package for Latent Dirichlet Allocation-- see
my lda post for more information.
$ python ex002_lda.py
A script that replicates all examples in my blog post on inferring probabilities using a Beta prior-- see bayes post for more information.
$ python ex003_bayes.py
A script that replicates all examples in my blog post using Python to get data from the Socrata API: Socrata post
$ python ex004_socrata_api.py
A basic responsive web page, following the ideas presented in Learning Responsive Web Design by Clarissa Peterson, with additional JavaScript to output the current window size as well as the size of various HTML elements in the page.
A basic responsive web page, following the ideas presented in Learning Responsive Web Design by Clarissa Peterson.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>responsive svg bar chart</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- styles: should have reset.css first --> | |
<link rel="stylesheet" href= "reset.css"> | |
<link rel="stylesheet" href= "main.css"> |
In a blog post I wrote about the python package lda, see here, I used the pre-processed data (included with the lda package) for the example. I have since received many questions regarding the document-term matrix, the titles, and the vocabulary-- where do they come from? This gist will use the textmining package to (hopefully) help answer these types of questions.
A script that replicates all examples in my blog post using Python and Lea to do some probabilistic programming: Lea post
$ python lea_ex01.py
A script that replicates all examples in my blog post on revisiting the Bayesian medical tests example-- using Python and Lea to do some probabilistic programming: Medical test/Lea post
$ python lea_ex02.py