How filtered data should be fetched directly from Database?

Evening!
Large datasets have a few issues simply because of their inherent size. There’s a few things you can try:
1.) Check out the various ‘gl’ chart types: Webgl Vs Svg
2.) Do as much of your filtering as you can on the database/server side so you aren’t locking the client up trying to stuff too much data into it.
3.) Try datashading: Datashader
Few other places to read:
Proper way to plot large datasets - #8 by lamourj
https://www.reddit.com/r/learnpython/comments/q65kl3/plotlydash_with_large_datasets/

1 Like