forked from ahaym/boke-hs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.hs
82 lines (78 loc) · 2.36 KB
/
example.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{-# LANGUAGE OverloadedStrings #-}
import Graphics.BokeHS
import Data.ByteString.Lazy as BS
import Control.Monad
import System.Process
myPlot :: Plot
myPlot = plt
$> addLinearAxis BBelow
|> addLinearAxis BLeft
|> addLine myData2 fst snd def
{ lineColor = red
, lineAlpha = 0.6
, lineWidth = 6
, lineCap = Rounded
}
|> addLine myData fst snd def
{ lineColor = green
, lineDash = DotDash
, lineWidth = 3
}
where plt = defaultPlot{
width = 1000,
height = 1000,
title = "Sample BokeHS plot",
xRange = Range1d (-0.5) 22,
yRange = Range1d (-0.5) 22
}
main :: IO ()
main = do
plotHTML <- emitPlotHTML myPlot
BS.writeFile "sample.html" plotHTML
void $ system "firefox --new-window sample.html"
myData :: [(BNum, BNum)]
myData = Prelude.zip xcols ycols
where
xcols = [-0.5,
1.8333333333333335,
4.166666666666667,
6.5,
8.833333333333334,
11.166666666666668,
13.5,
15.833333333333336,
18.166666666666668,
20.5]
ycols = [2.75,
3.916666666666667,
5.083333333333334,
6.25,
10.416666666666667,
2.583333333333334,
7.75,
5.916666666666668,
19.083333333333334,
13.25]
myData2 :: [(BNum, BNum)]
myData2 = Prelude.zip xcols ycols
where
xcols = [-0.5,
1.8333333333333335,
4.166666666666667,
6.5,
8.833333333333334,
11.166666666666668,
13.5,
15.833333333333336,
18.166666666666668,
20.5]
ycols = [3.75,
4.916666666666667,
6.083333333333334,
7.25,
8.416666666666667,
9.583333333333334,
10.75,
11.916666666666668,
13.083333333333334,
14.25]