# simple draw a plot with x axis and y axis x = np.array([0,5]) # x axis y = np.array([0,5]) # y axis plt.plot(x,y) plt.show() #Draw two points in the diagram, one at position (1, 3) and one in ...
Jupyter is an open-source, web-based interactive computing platform that allows you to create and share documents containing live code, equations, visualizations, and narrative text. It's widely used ...
I got this Error: ERROR: Ignored the following versions that require a different python version: 3.6.0 Requires-Python >=3.8; 3.6.0rc1 Requires-Python >=3.8; 3.6.0rc2 ...
I am using Anaconda on MacOSx and have two different environments with Python2.7 and Python3.7. Everything works well except I get warning for matplotlib for Py2.7. It looks matplotlib is compatible ...