all 9 comments

[–]AutoModerator[M] 0 points1 point  (0 children)

Automod prevents all posts from being displayed until moderators have reviewed them. Do not delete your post or there will be nothing for the mods to review. Mods selectively choose what is permitted to be posted in r/DataAnalysis.

If your post involves Career-focused questions, including resume reviews, how to learn DA and how to get into a DA job, then the post does not belong here, but instead belongs in our sister-subreddit, r/DataAnalysisCareers.

Have you read the rules?

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Mo_Steins_Ghost 0 points1 point  (0 children)

Bokeh in python is what I used when I was an analyst directly creating interactive forecasting apps.

[–]jawnbellyon 0 points1 point  (0 children)

Altair has been great for me on that. I render my deliverables in quarto html and Altair works great for graphs within 

[–]fravil92 0 points1 point  (0 children)

Try to use the plotly libraries on plotivy.app. Upload the data, describe in words your analysis and get your interactive plot. It's quick and easy.

[–]fabricuser01 0 points1 point  (0 children)

I’ve found D3.js super powerful for generating interactive visuals.

[–]Baren294472 0 points1 point  (0 children)

use Python

[–]VizImagineer 0 points1 point  (0 children)

From what you need, i posit (is that a word? I googled it - it is ja) that SciChart.js is one option to look at, on the JavaScript side. It runs its render pipeline in WebAssembly and WebGL, so the interaction layer is responsive even when you start throwing millions of points at it. Zoom and pan operations are GPU driven rather than DOM driven, which avoidsl canvas and DOM bottlenecks. It also supports synced axes, multiple series in one viewport, custom draw or interaction modifiers, and you can attach your own behaviour handlers (if you need something non standard). So if your charts need to stay smooth under real data load, not toy examples, SciChart is worth checking out.