Quote:
Originally Posted by SnowRipple
I read a post somewhere that they managed to install jupyter on android but visualization packages like matplotib didn`t work. Did you try creating some diagrams in jupyter?
|
I tried something like the following with successful output:
Quote:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 30)
line, = plt.plot(x, np.sin(x), '--')
|
(code adapted from:
https://stackoverflow.com/a/34222212)
There is something that's awkward here using a Jupyter notebook though -- when one is in command mode (as compared to edit mode), the on-screen keyboard is not displayed...