Earlier quoted context omitted.
>The flask dependency is pretty strong because I used the requests module for the api route functions. Not sure I understand? Are you talking about Kenneth Reitz's requests module? Why would that tie you to Flask or any other framework or library?
pyxley uses `flask.request`, not Kenneth Reitz's `requests`.
Pyxley: Python Powered Dashboards
31–40 of 47 posts
Re: Pyxley: Python Powered Dashboards
#32How easy is it to integrate a chart or graph into a larger project? My biggest gripe with Shiny is how difficult is to use the R calculate and graphing functions in a larger project without using OpenCPU as an API. My guess is that with Python being a more general purpose language, this should be easier..
Re: Pyxley: Python Powered Dashboards
#33Re: Pyxley: Python Powered Dashboards
#34looks cool. shiny is very neat, but has the limitation of having R behind it and debugging ain't fun. I very much look forward to testing pyxley!
Why is having R a limitation? R is a fantastic data language which arguably beats all others in terms of number of libraries and data manipulation tools.
So no, R is not ahead in everything.
Re: Pyxley: Python Powered Dashboards
#35Re: Pyxley: Python Powered Dashboards
#36Earlier quoted context omitted.
I actually just implemented some thing very similar to this. You probably want to checkout Dashing [1] which has built in plugins for a lot of things already. It's pretty easy to work with as well. [1] https://shopify.github.io/dashing/
Dashing is great, but it's Ruby on the backend, not Python :)
Re: Pyxley: Python Powered Dashboards
#37Earlier quoted context omitted.
Unless you have a screen with 50,000 pixels you would need to downsample the data anyway, wouldn't you normally do that instead of handling a visualization library the full data set?
You actually do have a screen with 50k pixels. Many more than that. A continuous heat map over two dimensions, at 500x500 pixels, is 250,000 pixels. Of course, to generate the heat map, you have to aggregate (binning on two dimensions), but you don't have to downsample.
Re: Pyxley: Python Powered Dashboards
#38How easy is it to integrate a chart or graph into a larger project? My biggest gripe with Shiny is how difficult is to use the R calculate and graphing functions in a larger project without using OpenCPU as an API. My guess is that with Python being a more general purpose language, this should be easier..