Python Learn

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

https://matplotlib.org/3.1.1/tutorials/introductory/pyplot.

html

https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.plot.html#matplotlib.pyplot.plot

Developer's guide for creating scales


and transformations
https://matplotlib.org/3.1.1/devel/add_new_projection.html#adding-new-scales

https://www.geeksforgeeks.org/numpy-asanyarray-in-python/

https://docs.scipy.org/doc/numpy-1.15.1/reference/generated/numpy.random.rand.html

https://www.geeksforgeeks.org/numpy-arange-python/
# numpy.arange method

import numpy as geek

print("A\n", geek.arange(4).reshape(2, 2), "\n")

print("A\n", geek.arange(4, 10), "\n")

print("A\n", geek.arange(4, 20, 3), "\n")

A
[ 4 7 10 13 16 19]

You might also like