Created
April 20, 2009 19:45
-
-
Save liebke/98705 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(use '(incanter core datasets stats bayes charts)) | |
(def survey-data (to-matrix (get-dataset :survey))) | |
(def x (sel survey-data (range 0 2313) (range 1 10))) | |
(def y (sel survey-data (range 0 2313) 10)) | |
(def sample-params (sample-model-params 5000 (linear-model y x :intercept false))) | |
(view (trace-plot (:var sample-params))) | |
(view (trace-plot (sel (:coefs sample-params) :cols 0))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment