Created
January 5, 2012 21:26
-
-
Save syou6162/1567410 to your computer and use it in GitHub Desktop.
incanterでwindowを閉じずにplotの内容を変更していく方法
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 stats charts)) | |
(def min-val 1) | |
(def max-val 10) | |
(def chart-before (function-plot sin min-val max-val)) | |
(def x (view chart-before)) | |
(def chart-after (function-plot log min-val max-val)) | |
(.setContentPane x (org.jfree.chart.ChartPanel. chart-after)) | |
(.setVisible x true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment