Skip to content
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.

Commit

Permalink
Merge pull request #103 from JuliaPlots/sd/observable_revamp
Browse files Browse the repository at this point in the history
backward compat to new change in Observables
  • Loading branch information
SimonDanisch authored Feb 24, 2020
2 parents fe656ca + 36b2222 commit c857115
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/StatsMakie.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@ module StatsMakie
using Observables
using AbstractPlotting
import AbstractPlotting: convert_arguments, used_attributes, plot!, combine, to_plotspec
using AbstractPlotting: plottype, Plot, PlotFunc, to_value, to_node, to_tuple
using AbstractPlotting: plottype, Plot, PlotFunc, to_tuple
using AbstractPlotting: node_pairs, extrema_nan, automatic, default_theme
using AbstractPlotting: GeometryTypes

# Moved in https://github.com/JuliaGizmos/Observables.jl/pull/40
if isdefined(Observables, :to_value)
using Observables: to_value
else
using AbstractPlotting: to_value
end


using Statistics, KernelDensity
import StatsBase
using Distributions
Expand Down

0 comments on commit c857115

Please sign in to comment.