Plotly.js Open-Source Announcement
51–60 of 72 posts
Re: Plotly.js Open-Source Announcement
#52Re: Plotly.js Open-Source Announcement
#53Earlier quoted context omitted.
~1MB, wow! I think I'll stick with metrics-graphics (~80kB). It's really a very nice and under-recognized chart library by Mozilla. Also based on d3.
A big yes! I discovered and adopted MetricsGraphics today, after having tried so many alternatives in the past days (Chart.js is missing some features, C3.js charts are ugly, Plottable.js is too low level, NVD3 is not stable, Epoch has not rollover, etc.). MetricsGraphics is at the same time easy to use, quite powerful, and creates beautiful charts out the box. It made my day. But for "explorable" scientific charts (…
Re: Plotly.js Open-Source Announcement
#54This is great news for Jupyter (IPython) Notebooks: https://plot.ly/python/offline/ It basically provides interactive inline visualizations, making it great for data exploration (without having to send any data to plot.ly) I'm wondering if the success of Continuum (Anaconda) could've influence Plot.ly?
Stuff like plotly is great, but as far as I can tell, I'm not going to be able to use it any time soon because I'm not going to write a >10 term expression in javascript when every '+' becomes a 'add(a,b)' or 'a.add(b)'.
Re: Plotly.js Open-Source Announcement
#55Re: Plotly.js Open-Source Announcement
#56I wonder where this is going and if python+numpy+scipy+matplotlib will one day be replaced by tools written in javascript.
Re: Plotly.js Open-Source Announcement
#57This is great news for Jupyter (IPython) Notebooks: https://plot.ly/python/offline/ It basically provides interactive inline visualizations, making it great for data exploration (without having to send any data to plot.ly) I'm wondering if the success of Continuum (Anaconda) could've influence Plot.ly?
However, I found both to be very similar and still don't have a clear favorite. Any opinions on which solution is better suited for (internal) interactive dashboards?
Re: Plotly.js Open-Source Announcement
#58This is great news for Jupyter (IPython) Notebooks: https://plot.ly/python/offline/ It basically provides interactive inline visualizations, making it great for data exploration (without having to send any data to plot.ly) I'm wondering if the success of Continuum (Anaconda) could've influence Plot.ly?
One thing I've been waiting for (and if I had the time, I'd love to work on something like this) is scientific javascript. I love es6 and classless oop[0] that javascript provides (and general dynamic-ness) but the lack of operator overloading makes mathy infix operators work with an array-like type not possible in native js. Something that had the "functional", dynamic semantics of javascript with the natural notati…
Re: Plotly.js Open-Source Announcement
#59Earlier quoted context omitted.
...most chart libs use SVG. Beside Highcharts (not open source) I have yet to see a SVG based charting lib that is fast and lightweight. d3.js and chart libs based on d3.js (like plot.ly) are very heavy weigth in comparision (= more than 100KB minified JS code; plot.ly is 1.05MB huge: https://github.com/plotly/plotly.js/blob/master/dist/plotly.... ) SVG wasn't supported until Android 4 and only Internet Explorer/Edge…
Also, canvas support can be turned off. We have clients who have the latest version of Chrome, however they run on VMs and the system admins have canvas turned off (no gpu rendering at all). Out of our control...
Re: Plotly.js Open-Source Announcement
#60Earlier quoted context omitted.
I don't know, Highcharts and Highslide are insanely complex, but very capable.
We've been using Highcharts in our app for about 2 years and are generally pretty happy with it. The one thing Highcharts doesn't do well is line charts for data series where the x-axis value isn't always increasing (ie data that loops around on the plot). Usually renders ok the first time but zoom breaks completely in our experience. For us this issue is a big enough pain for our users (who have been stuck with scat…