-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumPYWithMatplotlib.py
More file actions
122 lines (53 loc) · 1.28 KB
/
NumPYWithMatplotlib.py
File metadata and controls
122 lines (53 loc) · 1.28 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# -*- coding: utf-8 -*-
"""
Created on Tue Dec 18 17:56:35 2018
@author: KarthikM
"""
import matplotlib.pyplot as plt
import numpy as np
m=3
c=4
x=np.linspace(1,20)
y = m*x +c
plt.title('Visualisation Example')
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.plot(x,y)
plt.show()
plt.title('Visualisation Example')
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.plot(x,y,'--')
plt.show()
plt.title('Visualisation Example')
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.plot(x,y,'.-')
plt.show()
plt.title('Visualisation Example')
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.plot(x,y,'.')
plt.show()
opt = ['--','.','-','.-','|','p','D','1','2','s']
color1 = ['r','g','y','b','r','g','y','b','r','g','y']
for i in range(len(opt)):
m=3
c=4
x=np.linspace(1,20)
y = m*x +c
plt.title('Visualisation Example')
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.plot(x,y,opt[i],color=color1[i])
plt.show()
x = [10,12,14]
y = [6,12,15]
x1 = [11,13,15]
y1 = [8,9,19]
plt.bar(x,y,align='center')
plt.bar(x1,y1,align='center')
plt.title('Bar chart')
plt.xlabel('X axis')
plt.label('Y axis')
plt.show()