Skip to content

Instantly share code, notes, and snippets.

View boechat107's full-sized avatar

Andre Boechat boechat107

View GitHub Profile
@boechat107
boechat107 / technical_books.md
Last active June 3, 2016 11:47
Technical reference books

Data Science

  • The Elements of Statistical Learning: Data Mining, Inference, and Prediction, free PDF text on the book's website.
  • Data Clustering: Algorithms and Applications, Charu C. Aggarwal

Bayesian Methods

  • Probabilistic Programming and Bayesian Methods for Hackers, open source book hosted on Github.
  • Spatial and Spatio-temporal Bayesian Modeling with R
@boechat107
boechat107 / numpy_termshow.py
Last active August 29, 2015 14:07 — forked from natekupp/gist:2954743
Script created by Nicolas P. Rougier to visualize 2D numpy arrays on terminal
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Terminal visualization of 2D numpy arrays
# Copyright (c) 2009 Nicolas P. Rougier
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
@boechat107
boechat107 / write-data-to-file.clj
Created July 4, 2012 20:44
Write a Clojure data to a file
;; Write a map structure to a file.
(spit "filename.txt" (prn-str {:a 10, :b 20}))
;; Read the map structure from the same file.
(read-string (slurp "filename.txt"))