Start experimenting with GR.jl backend
This commit is contained in:
parent
fe0f22dfc0
commit
7566b0159c
80
src/backends/gr.jl
Normal file
80
src/backends/gr.jl
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
|
||||||
|
# https://github.com/jheinen/GR.jl
|
||||||
|
|
||||||
|
function _create_plot(pkg::GRPackage; kw...)
|
||||||
|
d = Dict(kw)
|
||||||
|
GR.title(d[:title])
|
||||||
|
GR.xlabel(d[:xlabel])
|
||||||
|
GR.ylabel(d[:ylabel])
|
||||||
|
Plot(nothing, pkg, 0, d, Dict[])
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
function _add_series(::GRPackage, plt::Plot; kw...)
|
||||||
|
d = Dict(kw)
|
||||||
|
# TODO: add one series to the underlying package
|
||||||
|
GR.plot(d[:x], d[:y])
|
||||||
|
push!(plt.seriesargs, d)
|
||||||
|
plt
|
||||||
|
end
|
||||||
|
|
||||||
|
function _add_annotations{X,Y,V}(plt::Plot{GRPackage}, anns::AVec{@compat(Tuple{X,Y,V})})
|
||||||
|
for ann in anns
|
||||||
|
# TODO: add the annotation to the plot
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------
|
||||||
|
|
||||||
|
function _before_update_plot(plt::Plot{GRPackage})
|
||||||
|
end
|
||||||
|
|
||||||
|
# TODO: override this to update plot items (title, xlabel, etc) after creation
|
||||||
|
function _update_plot(plt::Plot{GRPackage}, d::Dict)
|
||||||
|
end
|
||||||
|
|
||||||
|
function _update_plot_pos_size(plt::PlottingObject{GRPackage}, d::Dict)
|
||||||
|
end
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------
|
||||||
|
|
||||||
|
# accessors for x/y data
|
||||||
|
|
||||||
|
function Base.getindex(plt::Plot{GRPackage}, i::Int)
|
||||||
|
series = plt.o.lines[i]
|
||||||
|
series.x, series.y
|
||||||
|
end
|
||||||
|
|
||||||
|
function Base.setindex!(plt::Plot{GRPackage}, xy::Tuple, i::Integer)
|
||||||
|
series = plt.o.lines[i]
|
||||||
|
series.x, series.y = xy
|
||||||
|
plt
|
||||||
|
end
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------
|
||||||
|
|
||||||
|
function _create_subplot(subplt::Subplot{GRPackage}, isbefore::Bool)
|
||||||
|
# TODO: build the underlying Subplot object. this is where you might layout the panes within a GUI window, for example
|
||||||
|
end
|
||||||
|
|
||||||
|
function _expand_limits(lims, plt::Plot{GRPackage}, isx::Bool)
|
||||||
|
# TODO: call expand limits for each plot data
|
||||||
|
end
|
||||||
|
|
||||||
|
function _remove_axis(plt::Plot{GRPackage}, isx::Bool)
|
||||||
|
# TODO: if plot is inner subplot, might need to remove ticks or axis labels
|
||||||
|
end
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------
|
||||||
|
|
||||||
|
function Base.writemime(io::IO, ::MIME"image/png", plt::PlottingObject{GRPackage})
|
||||||
|
# TODO: write a png to io
|
||||||
|
end
|
||||||
|
|
||||||
|
function Base.display(::PlotsDisplay, plt::Plot{GRPackage})
|
||||||
|
# TODO: display/show the plot
|
||||||
|
end
|
||||||
|
|
||||||
|
function Base.display(::PlotsDisplay, plt::Subplot{GRPackage})
|
||||||
|
# TODO: display/show the subplot
|
||||||
|
end
|
||||||
@ -174,6 +174,79 @@ subplotSupported(::PyPlotPackage) = true
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
supportedArgs(::GRPackage) = [
|
||||||
|
:annotation,
|
||||||
|
:axis,
|
||||||
|
:background_color,
|
||||||
|
:linecolor,
|
||||||
|
:color_palette,
|
||||||
|
:fillrange,
|
||||||
|
:fillcolor,
|
||||||
|
:foreground_color,
|
||||||
|
:group,
|
||||||
|
:label,
|
||||||
|
:layout,
|
||||||
|
:legend,
|
||||||
|
:linestyle,
|
||||||
|
:linetype,
|
||||||
|
:linewidth,
|
||||||
|
:markershape,
|
||||||
|
:markercolor,
|
||||||
|
:markersize,
|
||||||
|
:markerstrokewidth,
|
||||||
|
:markerstrokecolor,
|
||||||
|
# :markerstrokestyle,
|
||||||
|
:n,
|
||||||
|
:nbins,
|
||||||
|
:nc,
|
||||||
|
:nr,
|
||||||
|
# :pos,
|
||||||
|
:smooth,
|
||||||
|
# :ribbon,
|
||||||
|
:show,
|
||||||
|
:size,
|
||||||
|
:title,
|
||||||
|
:windowtitle,
|
||||||
|
:x,
|
||||||
|
:xlabel,
|
||||||
|
:xlims,
|
||||||
|
:xticks,
|
||||||
|
:y,
|
||||||
|
:ylabel,
|
||||||
|
:ylims,
|
||||||
|
:yrightlabel,
|
||||||
|
:yticks,
|
||||||
|
:xscale,
|
||||||
|
:yscale,
|
||||||
|
:xflip,
|
||||||
|
:yflip,
|
||||||
|
:z,
|
||||||
|
:zcolor, # only supported for scatter/scatter3d
|
||||||
|
:tickfont,
|
||||||
|
:guidefont,
|
||||||
|
:legendfont,
|
||||||
|
:grid,
|
||||||
|
# :surface,
|
||||||
|
:nlevels,
|
||||||
|
:fillalpha,
|
||||||
|
:linealpha,
|
||||||
|
:markeralpha,
|
||||||
|
]
|
||||||
|
supportedAxes(::GRPackage) = _allAxes
|
||||||
|
supportedTypes(::GRPackage) = [:none, :line, :path, :steppre, :steppost, :sticks,
|
||||||
|
:scatter, :heatmap, :hexbin, :hist, :density, :bar,
|
||||||
|
:hline, :vline, :contour, :path3d, :scatter3d, :surface, :wireframe]
|
||||||
|
supportedStyles(::GRPackage) = [:auto, :solid, :dash, :dot, :dashdot]
|
||||||
|
# supportedMarkers(::GRPackage) = [:none, :auto, :rect, :ellipse, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star5, :hexagon]
|
||||||
|
supportedMarkers(::GRPackage) = vcat(_allMarkers, Shape)
|
||||||
|
supportedScales(::GRPackage) = [:identity, :ln, :log2, :log10]
|
||||||
|
subplotSupported(::GRPackage) = true
|
||||||
|
|
||||||
|
|
||||||
|
# --------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
supportedArgs(::QwtPackage) = [
|
supportedArgs(::QwtPackage) = [
|
||||||
:annotation,
|
:annotation,
|
||||||
# :args,
|
# :args,
|
||||||
|
|||||||
@ -8,6 +8,7 @@ immutable UnicodePlotsPackage <: PlottingPackage end
|
|||||||
immutable WinstonPackage <: PlottingPackage end
|
immutable WinstonPackage <: PlottingPackage end
|
||||||
immutable BokehPackage <: PlottingPackage end
|
immutable BokehPackage <: PlottingPackage end
|
||||||
immutable PlotlyPackage <: PlottingPackage end
|
immutable PlotlyPackage <: PlottingPackage end
|
||||||
|
immutable GRPackage <: PlottingPackage end
|
||||||
immutable NoPackage <: PlottingPackage end
|
immutable NoPackage <: PlottingPackage end
|
||||||
|
|
||||||
typealias GadflyOrImmerse @compat(Union{GadflyPackage, ImmersePackage})
|
typealias GadflyOrImmerse @compat(Union{GadflyPackage, ImmersePackage})
|
||||||
@ -19,7 +20,8 @@ export
|
|||||||
qwt,
|
qwt,
|
||||||
unicodeplots,
|
unicodeplots,
|
||||||
bokeh,
|
bokeh,
|
||||||
plotly
|
plotly,
|
||||||
|
gr
|
||||||
# winston
|
# winston
|
||||||
|
|
||||||
gadfly() = backend(:gadfly)
|
gadfly() = backend(:gadfly)
|
||||||
@ -29,6 +31,7 @@ qwt() = backend(:qwt)
|
|||||||
unicodeplots() = backend(:unicodeplots)
|
unicodeplots() = backend(:unicodeplots)
|
||||||
bokeh() = backend(:bokeh)
|
bokeh() = backend(:bokeh)
|
||||||
plotly() = backend(:plotly)
|
plotly() = backend(:plotly)
|
||||||
|
gr() = backend(:gr)
|
||||||
# winston() = backend(:winston)
|
# winston() = backend(:winston)
|
||||||
|
|
||||||
backend_name(::GadflyPackage) = :gadfly
|
backend_name(::GadflyPackage) = :gadfly
|
||||||
@ -38,6 +41,7 @@ backend_name(::UnicodePlotsPackage) = :unicodeplots
|
|||||||
backend_name(::QwtPackage) = :qwt
|
backend_name(::QwtPackage) = :qwt
|
||||||
backend_name(::BokehPackage) = :bokeh
|
backend_name(::BokehPackage) = :bokeh
|
||||||
backend_name(::PlotlyPackage) = :plotly
|
backend_name(::PlotlyPackage) = :plotly
|
||||||
|
backend_name(::GRPackage) = :gr
|
||||||
backend_name(::NoPackage) = :none
|
backend_name(::NoPackage) = :none
|
||||||
|
|
||||||
include("backends/supported.jl")
|
include("backends/supported.jl")
|
||||||
@ -52,6 +56,7 @@ include("backends/winston.jl")
|
|||||||
include("backends/web.jl")
|
include("backends/web.jl")
|
||||||
include("backends/bokeh.jl")
|
include("backends/bokeh.jl")
|
||||||
include("backends/plotly.jl")
|
include("backends/plotly.jl")
|
||||||
|
include("backends/gr.jl")
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------
|
# ---------------------------------------------------------
|
||||||
@ -71,7 +76,7 @@ subplot!(pkg::PlottingPackage, subplt::Subplot; kw...) = error("subplot!($pkg, s
|
|||||||
# ---------------------------------------------------------
|
# ---------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
const BACKENDS = [:qwt, :gadfly, :unicodeplots, :pyplot, :immerse, :bokeh, :plotly]
|
const BACKENDS = [:qwt, :gadfly, :unicodeplots, :pyplot, :immerse, :bokeh, :plotly, :gr]
|
||||||
const INITIALIZED_BACKENDS = Set{Symbol}()
|
const INITIALIZED_BACKENDS = Set{Symbol}()
|
||||||
backends() = BACKENDS
|
backends() = BACKENDS
|
||||||
|
|
||||||
@ -85,6 +90,7 @@ function backendInstance(sym::Symbol)
|
|||||||
sym == :winston && return WinstonPackage()
|
sym == :winston && return WinstonPackage()
|
||||||
sym == :bokeh && return BokehPackage()
|
sym == :bokeh && return BokehPackage()
|
||||||
sym == :plotly && return PlotlyPackage()
|
sym == :plotly && return PlotlyPackage()
|
||||||
|
sym == :gr && return GRPackage()
|
||||||
sym == :none && return NoPackage()
|
sym == :none && return NoPackage()
|
||||||
error("Unsupported backend $sym")
|
error("Unsupported backend $sym")
|
||||||
end
|
end
|
||||||
@ -99,7 +105,7 @@ CurrentBackend(sym::Symbol) = CurrentBackend(sym, backendInstance(sym))
|
|||||||
# ---------------------------------------------------------
|
# ---------------------------------------------------------
|
||||||
|
|
||||||
function pickDefaultBackend()
|
function pickDefaultBackend()
|
||||||
for pkgstr in ("PyPlot", "Immerse", "Qwt", "Gadfly", "UnicodePlots", "Bokeh")
|
for pkgstr in ("Gr", "PyPlot", "Immerse", "Qwt", "Gadfly", "UnicodePlots", "Bokeh")
|
||||||
if Pkg.installed(pkgstr) != nothing
|
if Pkg.installed(pkgstr) != nothing
|
||||||
return backend(symbol(lowercase(pkgstr)))
|
return backend(symbol(lowercase(pkgstr)))
|
||||||
end
|
end
|
||||||
@ -234,6 +240,14 @@ function backend()
|
|||||||
rethrow(err)
|
rethrow(err)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif currentBackendSymbol == :gr
|
||||||
|
try
|
||||||
|
@eval import GR
|
||||||
|
catch err
|
||||||
|
warn("Couldn't import GR. Install it with: Pkg.add(\"GR\").")
|
||||||
|
rethrow(err)
|
||||||
|
end
|
||||||
|
|
||||||
elseif currentBackendSymbol == :winston
|
elseif currentBackendSymbol == :winston
|
||||||
warn("Winston support is deprecated and broken. Try another backend: $BACKENDS")
|
warn("Winston support is deprecated and broken. Try another backend: $BACKENDS")
|
||||||
try
|
try
|
||||||
@ -281,6 +295,8 @@ function backend(modname)
|
|||||||
CURRENT_BACKEND.pkg = BokehPackage()
|
CURRENT_BACKEND.pkg = BokehPackage()
|
||||||
elseif modname == :plotly
|
elseif modname == :plotly
|
||||||
CURRENT_BACKEND.pkg = PlotlyPackage()
|
CURRENT_BACKEND.pkg = PlotlyPackage()
|
||||||
|
elseif modname == :gr
|
||||||
|
CURRENT_BACKEND.pkg = GRPackage()
|
||||||
else
|
else
|
||||||
error("Unknown backend $modname. Choose from: $BACKENDS")
|
error("Unknown backend $modname. Choose from: $BACKENDS")
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user