QuickPlot-0.1.0.1: Quick and easy data visualization with Haskell

Safe HaskellNone
LanguageHaskell2010

QuickPlot

Synopsis

Documentation

runQuickPlot :: IO () Source

Start a QuickPlot server at "http://localhost:8000" Run this function only once in a ghci session (even after reload)

runQuickPlotWith Source

Arguments

:: UserDirectory

Path to directory with user scripts (doesn't work)

-> Port

Port of the QuickPlot server

-> IO () 

Start a QuickPlot server Run this function only once in a ghci session (even after reload)

plot Source

Arguments

:: Plottable p 
=> p

JSON that can be visualized

-> IO () 

Show data visualizations in the browser If the browser is not connected to QuickPlot a warning will be printed to stdout

clear :: IO () Source

Remove all plots in the browser If the browser is not connected by now the behaviour is undefined

toJSON :: ToJSON a => a -> Value