Returns a JFreeChart object representing a scatter-plot of the given data.
Use the 'view' function to display the chart, or the 'save' function
to write it to a file.
Options:
:title (default 'Histogram') main title
:x-label (default x expression)
:y-label (default 'Frequency')
:legend (default false) prints legend
:series-label (default x expression)
:group-by (default nil) -- a vector of values used to group the x and y values into series.
:density? (default false) -- chart will represent density instead of frequency.
:nbins (default 10) -- number of bins (i.e. bars)
:gradient? (default false) -- use gradient on bars
See also:
view, save, add-points, add-lines
Examples:
(use '(incanter core stats charts datasets))
;; create some data
(def mvn-samp (sample-mvn 1000 :mean [7 5] :sigma (matrix [[2 1.5] [1.5 3]])))
;; create scatter-plot of points
(def mvn-plot (scatter-plot (sel mvn-samp :cols 0) (sel mvn-samp :cols 1)))
(view mvn-plot)
;; add regression line to scatter plot
(def x (sel mvn-samp :cols 0))
(def y (sel mvn-samp :cols 1))
(def lm (linear-model y x))
(add-lines mvn-plot x (:fitted lm))
;; use :group-by option
(use '(incanter core stats datasets charts))
;; load the :iris dataset
(def iris (get-dataset :iris))
;; plot the first two columns grouped by the fifth column
(view (scatter-plot ($ :Sepal.Width iris) ($ :Sepal.Length iris) :group-by ($ :Species iris)))
(view (scatter-plot :Sepal.Length :Sepal.Width :data (get-dataset :iris)))
(view (scatter-plot :Sepal.Length :Sepal.Width :group-by :Species :data (get-dataset :iris)))
(with-data (get-dataset :iris)
(view (scatter-plot :Sepal.Length :Sepal.Width)))
(with-data (get-dataset :iris)
(view (scatter-plot :Sepal.Length :Sepal.Width :group-by :Species)))
References:
http://www.jfree.org/jfreechart/api/javadoc/
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/JFreeChart.html
Comments top
No comments for scatter-plot. Log in to add a comment.