-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatisticalGraphics.jl
76 lines (73 loc) · 1.66 KB
/
StatisticalGraphics.jl
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
module StatisticalGraphics
using InMemoryDatasets
using DLMReader
using JSON
using REPL # display plot
using Vega # showing plots
const SG = StatisticalGraphics
export
SG,
SGMarks,
Bar,
Band,
Segment,
Scatter,
Line,
Histogram,
Density,
Heatmap,
Bar,
BoxPlot,
Violin,
RefLine,
TextPlot,
Bubble,
Polygon,
Reg,
Pie,
Axis,
Legend,
sgplot,
sggrid,
sgmanipulate, # interactive graphs
freq, # freq is a function used in Bar plot
gradient,
# saving the output
pdf,
svg,
png,
savefig
abstract type SGMarks end
include("util.jl")
include("util_reg.jl")
include("kwds.jl")
include("gradient.jl")
include("charts/axes.jl")
include("charts/legend.jl")
include("charts/scatter.jl")
include("charts/line.jl")
include("charts/band.jl")
include("charts/segment.jl")
include("charts/histogram.jl")
include("charts/hist2d.jl")
include("charts/density.jl")
include("charts/bar.jl")
include("charts/boxplot.jl")
include("charts/violin.jl")
include("charts/refline.jl")
include("charts/textplot.jl")
include("charts/bubble.jl")
include("charts/polygon.jl")
include("charts/reg.jl")
include("charts/pie.jl")
include("sgplot.jl")
include("sgpanel.jl")
include("sgmanipulate.jl")
include("sggrid.jl")
include("show.jl")
include("io.jl")
include("precompile/warmup.jl")
if VERSION >= v"1.8"
SG.warmup()
end
end