probcomp / iventure

An interactive, browser-based probabilistic programming environment.
Apache License 2.0
14 stars 2 forks source link

Import of non-local version of seaborn in utils_plot.density #52

Closed fsaad closed 7 years ago

fsaad commented 7 years ago

The following line appears to import a global version of seaborn (i.e. not our local fork in https://github.com/probcomp/iventure/tree/master/external/seaborn).

https://github.com/probcomp/iventure/blob/master/src/utils_plot.py#L58

I believe the correct syntax is to use from .seaborn import apionly as sns as shown here: https://github.com/probcomp/iventure/blob/master/src/utils_plot.py#L311

@curlette please investigate and address.