2010-09-02 02:54:50 +12:00
|
|
|
Name: plot
|
2013-06-22 17:27:18 +12:00
|
|
|
Version: 0.2
|
2010-09-02 02:54:50 +12:00
|
|
|
License: BSD3
|
|
|
|
License-file: LICENSE
|
2012-06-29 17:28:40 +12:00
|
|
|
Copyright: (c) A.V.H. McPhail 2010, 2012
|
2010-09-02 02:54:50 +12:00
|
|
|
Author: Vivian McPhail
|
|
|
|
Maintainer: haskell.vivian.mcphail <at> gmail <dot> com
|
|
|
|
Stability: experimental
|
|
|
|
Homepage: http://code.haskell.org/plot
|
2010-09-29 18:43:46 +13:00
|
|
|
Synopsis: A plotting library, exportable as eps/pdf/svg/png or renderable with gtk
|
2010-09-02 02:54:50 +12:00
|
|
|
Description:
|
|
|
|
A package for creating plots, built on top of the Cairo rendering engine.
|
|
|
|
.
|
|
|
|
An ambitious attempt to replace gnuplot.
|
|
|
|
.
|
|
|
|
Monadic actions are used to configure a figure, which is a (rxc) array of subplots.
|
|
|
|
Each plot displays a graph with optional heading, labels, legend, and annotations.
|
|
|
|
The annotations themselves may be used to draw diagrams.
|
|
|
|
.
|
|
|
|
A figure is preprocessed in preparation for rendering by the Cairo renderer.
|
|
|
|
The Cairo library can be used to output the figure to PS, PDF, SVG, and PNG file formats,
|
|
|
|
or to display the figure in a GTK Drawable context. (see package 'plot-gtk').
|
|
|
|
.
|
|
|
|
The preprocessed figure can be embedded as an arbitrary Cairo render, including in a diagram
|
|
|
|
created with the diagram package. Conversely, arbitrary Cairo renders can be embedded in
|
|
|
|
the data region of a 'Figure'.
|
|
|
|
.
|
|
|
|
The data series are type "Data.Packed.Vector" from hmatrix, which, when hmatrix
|
|
|
|
is compiled with '-fvector', is a synonym for "Data.Vector.Storable" from the
|
|
|
|
vector package and are thus compatible with packages such as statistics.
|
|
|
|
.
|
|
|
|
The example in Graphics.Rendering.Plot can be viewed at
|
|
|
|
<http://code.haskell.org/plot/examples/perturbed-sine.png>
|
2010-10-01 18:34:05 +13:00
|
|
|
.
|
2010-10-06 21:45:50 +13:00
|
|
|
.
|
2010-09-02 02:54:50 +12:00
|
|
|
Category: Graphics
|
|
|
|
|
2013-06-19 21:03:16 +12:00
|
|
|
Tested-with: GHC==7.6.3
|
2010-09-02 02:54:50 +12:00
|
|
|
Cabal-version: >= 1.8
|
|
|
|
Build-type: Simple
|
|
|
|
|
2012-11-14 17:30:32 +13:00
|
|
|
Extra-source-files: README, CHANGES, LICENSE, THANKS
|
2010-09-02 02:54:50 +12:00
|
|
|
examples/perturbed-sine.hs,
|
|
|
|
examples/perturbed-sine.png
|
|
|
|
|
|
|
|
library
|
|
|
|
|
|
|
|
Build-Depends: base >= 4 && < 5,
|
2011-05-31 13:19:38 +12:00
|
|
|
mtl > 2, array,
|
2010-09-02 02:54:50 +12:00
|
|
|
MaybeT,
|
2011-05-31 13:19:38 +12:00
|
|
|
pango >= 0.11.2 && < 0.13, cairo >= 0.11.1 && < 0.13,
|
2010-09-02 02:54:50 +12:00
|
|
|
colour >= 2.2.1 && < 2.4,
|
|
|
|
hmatrix >= 0.10
|
|
|
|
|
|
|
|
Extensions: MultiParamTypeClasses
|
|
|
|
GeneralizedNewtypeDeriving
|
|
|
|
TypeSynonymInstances
|
|
|
|
FlexibleInstances
|
|
|
|
FlexibleContexts
|
|
|
|
UndecidableInstances
|
|
|
|
|
|
|
|
hs-source-dirs: lib
|
|
|
|
Exposed-Modules: Graphics.Rendering.Plot
|
|
|
|
Graphics.Rendering.Plot.Figure
|
2010-09-03 16:51:53 +12:00
|
|
|
Graphics.Rendering.Plot.Figure.Simple
|
2010-09-02 02:54:50 +12:00
|
|
|
Graphics.Rendering.Plot.Render
|
|
|
|
|
|
|
|
Other-modules: Graphics.Rendering.Plot.Types
|
|
|
|
Graphics.Rendering.Plot.Defaults
|
|
|
|
Graphics.Rendering.Plot.Figure.Line
|
|
|
|
Graphics.Rendering.Plot.Figure.Point
|
2010-09-23 14:41:33 +12:00
|
|
|
Graphics.Rendering.Plot.Figure.Bar
|
2010-09-02 02:54:50 +12:00
|
|
|
Graphics.Rendering.Plot.Figure.Text
|
|
|
|
Graphics.Rendering.Plot.Figure.Plot
|
|
|
|
Graphics.Rendering.Plot.Figure.Plot.Axis
|
|
|
|
Graphics.Rendering.Plot.Figure.Plot.Data
|
2010-09-18 18:05:14 +12:00
|
|
|
Graphics.Rendering.Plot.Figure.Plot.Legend
|
2010-10-05 22:50:25 +13:00
|
|
|
Graphics.Rendering.Plot.Figure.Plot.Annotation
|
2010-09-02 02:54:50 +12:00
|
|
|
Graphics.Rendering.Plot.Render.Types
|
|
|
|
Graphics.Rendering.Plot.Render.Text
|
|
|
|
Graphics.Rendering.Plot.Render.Plot
|
|
|
|
Graphics.Rendering.Plot.Render.Plot.Axis
|
|
|
|
Graphics.Rendering.Plot.Render.Plot.Data
|
2010-09-18 18:05:14 +12:00
|
|
|
Graphics.Rendering.Plot.Render.Plot.Legend
|
2010-10-05 22:50:25 +13:00
|
|
|
Graphics.Rendering.Plot.Render.Plot.Annotation
|
2010-09-18 18:05:14 +12:00
|
|
|
Graphics.Rendering.Plot.Render.Plot.Glyph
|
2010-10-05 22:50:25 +13:00
|
|
|
Graphics.Rendering.Plot.Render.Plot.Format
|
2010-09-02 02:54:50 +12:00
|
|
|
Control.Monad.Supply
|
|
|
|
|
|
|
|
ghc-options: -Wall -fno-warn-unused-binds
|
|
|
|
|
|
|
|
ghc-prof-options: -auto
|
|
|
|
|
2010-10-03 17:41:20 +13:00
|
|
|
source-repository head
|
2012-05-31 14:30:20 +12:00
|
|
|
type: git
|
2012-06-14 14:05:11 +12:00
|
|
|
location: https://github.com/amcphail/plot
|