-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson12_matplotlib_2.py
42 lines (26 loc) · 1.05 KB
/
lesson12_matplotlib_2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import matplotlib.pyplot as plt
import numpy as np
#standard: x und y müssen in getrennten numpy-arrays der selben größe sein
#xpoints = np.array([3,4,7,9])
#ypoints = np.array([5,3,1,6])
#plt.plot(xpoints,ypoints)
#wenn nur y angegeben, wird x automatisch von 0 aufsteigend durch nummeriert
#ypoints = np.array([5,3,1,6])
#plt.plot(ypoints)
#nur scatter-plott (mit marker)
#xpoints = np.array([3,4,7,9])
#ypoints = np.array([5,3,1,6])
#plt.plot(xpoints,ypoints,'o')
#line plot mit markern überlegt scatter-plott (mit marker)
#(reihenfolge könnte geändert werden
#xpoints = np.array([3,4,7,9])
#ypoints = np.array([5,3,1,6])
#plt.plot(xpoints,ypoints)
#plt.plot(xpoints,ypoints,'o-.m') #'*-y' 'o:m'
#mit kurzform die eigenschaften verändert - points und line in einem
#plt.plot(xpoints,ypoints,'o-.m') #'*-y' 'o:m'
#lang-form
xpoints = np.array([3,4,7,9])
ypoints = np.array([5,3,1,6])
plt.plot(xpoints,ypoints, 'D', ms=20, mec='r', mfc='g') #D = Lang form der eigenschaften. ms=marker size, mec=marker edge color, mfc=marker fill color
plt.show()