Safe Haskell | None |
---|---|
Language | Haskell98 |
- styleColor :: Int -> AlphaColour Double
- styleSymbol :: Int -> PlotKind
- iplot :: (PlotValue x, PlotValue y) => [InternalPlot x y] -> Layout x y
- name :: [PlotKind] -> String
- str2k :: String -> [PlotKind]
- str2khelper :: String -> PlotKind -> [PlotKind]
- data PlotKind
- data InternalPlot x y
- newtype LayoutDDD = LayoutDDD {}
- layoutDddToRenderable :: LayoutDDD -> Renderable (LayoutPick Double Double Double)
- uplot :: [UPlot] -> LayoutDDD
- plot :: PlotType a => a
- class PlotType t where
- plotPDF :: PlotPDFType a => String -> a
- class PlotPDFType t where
- plotPS :: PlotPSType a => String -> a
- class PlotPSType t where
- plotPNG :: PlotPNGType a => String -> a
- class PlotPNGType t where
- data UPlot
- xcoords :: [Double] -> UPlot
- class PlotArg a where
- class IsPlot c where
- plotWindow :: PlotWindowType a => a
- class PlotWindowType t where
Documentation
styleColor :: Int -> AlphaColour Double Source
styleSymbol :: Int -> PlotKind Source
str2khelper :: String -> PlotKind -> [PlotKind] Source
Type to define a few simple properties of each plot.
plot :: PlotType a => a Source
Deprecated: use Chart.Graphics.Rendering.Chart.Easy
The main plotting function. The idea behind PlotType is shamelessly copied from Text.Printf (and is not exported). All you need to know is that your arguments need to be in class PlotArg. And PlotArg consists of functions and [Double] and String and PlotKind or [PlotKind].
plotPDF :: PlotPDFType a => String -> a Source
Deprecated: use Chart.Graphics.Rendering.Chart.Easy
Save a plot as a PDF file.
class PlotPDFType t where Source
PlotPDFType (IO a) | |
(PlotArg a, PlotPDFType r) => PlotPDFType (a -> r) |
plotPS :: PlotPSType a => String -> a Source
Deprecated: use Chart.Graphics.Rendering.Chart.Easy
Save a plot as a postscript file.
class PlotPSType t where Source
PlotPSType (IO a) | |
(PlotArg a, PlotPSType r) => PlotPSType (a -> r) |
plotPNG :: PlotPNGType a => String -> a Source
Deprecated: use Chart.Graphics.Rendering.Chart.Easy
Save a plot as a png file.
class PlotPNGType t where Source
PlotPNGType (IO a) | |
(PlotArg a, PlotPNGType r) => PlotPNGType (a -> r) |
plotWindow :: PlotWindowType a => a Source
Deprecated: use Chart.Graphics.Rendering.Chart.Easy
Display a plot on the screen.
class PlotWindowType t where Source
PlotWindowType (IO a) | |
(PlotArg a, PlotWindowType r) => PlotWindowType (a -> r) |