Name: gnuplot Version: 0.5.1 License: BSD3 License-File: LICENSE Author: Henning Thielemann Maintainer: Henning Thielemann Homepage: http://www.haskell.org/haskellwiki/Gnuplot Package-URL: http://code.haskell.org/gnuplot/ Category: Graphics, Math Synopsis: 2D and 3D plots using gnuplot Description: This is a wrapper to gnuplot which lets you create 2D and 3D plots. . Start a simple session with @make ghci@. This loads the module "Graphics.Gnuplot.Simple" which is ready for use in GHCi. It does not address all fancy gnuplot features in order to stay simple. For more sophisticated plots, especially batch generated graphics, I recommend "Graphics.Gnuplot.Advanced". This module contains also an overview of the hierarchy of objects. . Examples for using this interface can be found in the "Demo" module. In order to compile this and install an example data file, use the Cabal flag @buildExamples@: . > $ cabal install -fbuildExamples gnuplot . With the Cabal flags executePipe and executeShell you can switch to more convenient but probably less portable ways of feeding gnuplot with a script. Tested-With: GHC==6.8.2, GHC==6.12.3 Tested-With: GHC==7.0.2, GHC==7.4.2, GHC==7.6.1 Cabal-Version: >=1.6 Build-Type: Simple Extra-Source-Files: Makefile execute/tmp/Graphics/Gnuplot/Execute.hs execute/pipe/Graphics/Gnuplot/Execute.hs execute/shell/Graphics/Gnuplot/Execute.hs Data-Files: data/runtime.data Source-Repository this Tag: 0.5.1 Type: darcs Location: http://code.haskell.org/gnuplot/ Source-Repository head Type: darcs Location: http://code.haskell.org/gnuplot/ Flag splitBase description: Choose the new smaller, split-up base package. Flag buildTests description: Build test executables default: False Flag buildExamples description: Build example executables default: False Flag executePipe description: Avoid a temporary gnuplot script by running gnuplot with runInteractiveProcess default: False Flag executeShell description: Avoid a temporary gnuplot script by calling gnuplot via a UNIX shell and its piping syntax default: False Library Build-Depends: array >=0.1 && <0.5, containers >=0.1 && <0.6, utility-ht >=0.0.1 && <0.1, monoid-transformer >=0.0.2 && <0.1 If flag(splitBase) Build-Depends: process >=1.0 && <1.2, time >=1.1 && <1.5, old-locale >=1.0 && <1.1, base >=2 && <5 Else Build-Depends: base >=1.0 && <2 GHC-Options: -Wall Hs-Source-Dirs: src If flag(executePipe) Hs-Source-Dirs: execute/pipe Else If flag(executeShell) Hs-Source-Dirs: execute/shell Else Hs-Source-Dirs: execute/tmp Exposed-Modules: Graphics.Gnuplot.Simple Graphics.Gnuplot.Time Graphics.Gnuplot.Advanced Graphics.Gnuplot.Display Graphics.Gnuplot.Terminal Graphics.Gnuplot.Terminal.PostScript Graphics.Gnuplot.Terminal.PNG Graphics.Gnuplot.Terminal.SVG Graphics.Gnuplot.Terminal.WXT Graphics.Gnuplot.Terminal.X11 Graphics.Gnuplot.Frame Graphics.Gnuplot.Frame.Option Graphics.Gnuplot.Frame.OptionSet Graphics.Gnuplot.Frame.OptionSet.Style Graphics.Gnuplot.Frame.OptionSet.Histogram Graphics.Gnuplot.Plot.TwoDimensional Graphics.Gnuplot.Plot.ThreeDimensional Graphics.Gnuplot.Graph Graphics.Gnuplot.Graph.TwoDimensional Graphics.Gnuplot.Graph.ThreeDimensional Graphics.Gnuplot.LineSpecification Graphics.Gnuplot.ColorSpecification Graphics.Gnuplot.MultiPlot Graphics.Gnuplot.Value.Atom Graphics.Gnuplot.Value.Tuple Graphics.Gnuplot.Value.ColumnSet Other-Modules: Graphics.Gnuplot.Private.LineSpecification Graphics.Gnuplot.Private.ColorSpecification Graphics.Gnuplot.Private.Plot Graphics.Gnuplot.Private.Frame Graphics.Gnuplot.Private.FrameOption Graphics.Gnuplot.Private.FrameOptionSet Graphics.Gnuplot.Private.Graph Graphics.Gnuplot.Private.Graph2D Graphics.Gnuplot.Private.Graph3D Graphics.Gnuplot.Private.Graph2DType Graphics.Gnuplot.Private.Graph3DType Graphics.Gnuplot.Private.GraphEmpty Graphics.Gnuplot.Private.Terminal Graphics.Gnuplot.Private.Display Graphics.Gnuplot.Utility Graphics.Gnuplot.Execute Executable gnuplot-demo If flag(buildExamples) Build-Depends: filepath >=1.1 && <1.4 Else Buildable: False GHC-Options: -Wall Hs-Source-Dirs: src, execute/tmp Main-Is: Demo.hs