Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

a guide to numpy and pandas

>>> a = np.array([1, 2, 3])
>>> type(a)
<type 'numpy.ndarray'>

>>> b = np.array((3, 4, 5))
>>> type(b)
<type 'numpy.ndarray'>
Source by cloudxlab.com #
 
PREVIOUS NEXT
Tagged: #guide #numpy #pandas
ADD COMMENT
Topic
Name
5+5 =