100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Summary

Data Processing Advanced (DPA) (880082-M-3) - Summary English

Rating
-
Sold
6
Pages
11
Uploaded on
01-02-2024
Written in
2023/2024

Data Processing Advanced (DPA) (880082-M-3) - Summary English. Quick and very readable overview of the needed theory for the questions on the exam. Very easy to print and to use during your exam preparations.

Institution
Course









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Study
Course

Document information

Uploaded on
February 1, 2024
Number of pages
11
Written in
2023/2024
Type
Summary

Subjects

Content preview

Week 1: Numpy Arrays

CREATING ARRAYS
np.arange()
np.arange(1, 11.9, 2.1) à Starting point (1), End point (11.9) (Excluded) and the Steps taken (2.1)

np.linspace() à Array with an starting point, end point and amount of numbers. EQUALLY SPACED
np.linspace(0, 2, 9) à Starting point (0), End point (2) (Included) and the amount of numbers we
want (9)

np.zeros([])
np.zeros()
np.zeros(5) à Array with 5 zeros

np.ones() à Array with ones

np.random.random()
np.random.random(4) à 4 Random numbers between 0 and 1

np.random.randint()
np.random.randint(5, 10, 12) à Starting point (5), End point (10) (Excluded) and Number of Intergers
(12)

np.random.unifrom()
np.random.uniform(5, 10, 12) à Array with 12 random numbers with uniform distribution between 5 and
10

np.random.normal()
np.random.normal(5, 3, 10) à Array with 10 random numbers with normal distribution with mean 5 and
SD of 3

a = np.random.uniform(1, 100, 100000)

np.size() à Size of array in terms of numbers
np.size(a) = 100000

np.ndim() à Dimension of array
np.ndim(a) = 1

np.shape() à Shape of the array
np.shape(a) = (100000,)

CHECKING EQUIVALENCE
a = np.array([2, 4, 6, 8])
a = b

np.allclose() à Checks if two arrays are the same
np.allclose(a,b) = True


CHECK LOCATIONS OF TWO ARRAYS IN COMPUTER MEMORY
id() à Checks locations of arrays
id(a) == id(b) = True

, DATA TYPES IN ARRAYS
dtype() à Datatype of the array

The 6 basic data types of Numpy arrays are:
- float (float16, float32, or float64)
- integer (int8, int16, int32, or int64)
- unsigned integer: this number cannot be negative (uint8, uint16, uint32, or uint64)
- boolean (bool)
- complex (complex64 or complex128)
- string (for example <U3 or <U64, where the number indicates the maximum length of the strings)

X = np.array([1, 3, 5, 7])
x.dtype = int8

itemsize() à Checks how many items there are in the array
x.itemsize = 4

dtype=’ ‘ à Changing data type in the array
dtype=’float’ = [1. 3. 5. 7.]

INDEXING IN ARRAYS
a = np.arange(10)
a = [0 1 2 3 4 5 6 7 8 9]

print( a[0] ) = 0
print( a[3] ) = 3
print( a[9] ) = 9
print( a[-1] ) = 9

b = np.arange(1,11)
b = [1 2 3 4 5 6 7 8 9 10]

print( b[0] ) #First element of the list = 1
print( b[3] ) #Fourth element = 4
print( b[9] ) #Tenth element = 10
print( b[-1] ) #Last element. First of reversed order. = 10

print (b[1]) = 2
print( b[:] ) #All elements, from first to last = [1 2 3 4 5 6 7 8 9 10]
print( b[3:6] ) #Thrird element to fifth element (Excluded) = [4 5 6]
print( b[:4] ) #First to third = [1 2 3 4]
print( b[-4:] ) #Last four = [7 8 9 10]

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
jurgenvermeulen Tilburg University
Follow You need to be logged in order to follow users or courses
Sold
27
Member since
2 year
Number of followers
2
Documents
2
Last sold
3 weeks ago

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions