Reputation: 751
My use-case is - To visualize the peer feedback of staff to find interesting facts and inferences.
Ex - reading data from a .csv file and creating visualization on the feedback like a word cloud, bar charts, spider charts, etc.
The expected end-user experience is -
a) User clicks on the executable
b) User is asked to select a file
c) User sees all the visualizations
Also, in the future, I want to give the option for users to apply filters and search for categorical variables & staff nos.
ps: I want to keep tools like power bi, MicroStrategy, etc out of scope for this PoC.
Upvotes: 2
Views: 2025
Reputation: 123
There does not seem to be a direct way to convert a Jupyter notebook to an executable file.
However the standard way to tackle your problem seems to be a two-step process:
nbconvert
, this thread is related.Upvotes: 2