View Single Post
Old 01-15-2018, 11:17 PM   #7
sogaiu
Addict
sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.sogaiu can decode base 64 without using a pencil.
 
Posts: 209
Karma: 83543
Join Date: Jan 2018
Device: none
Quote:
Originally Posted by SnowRipple View Post
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...
sogaiu is offline   Reply With Quote