-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot.py
More file actions
294 lines (280 loc) · 9.89 KB
/
plot.py
File metadata and controls
294 lines (280 loc) · 9.89 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
import matplotlib
matplotlib.use('Agg') # Force non-GUI backend
import matplotlib.pyplot as plt
import numpy as np
from io import BytesIO
import scipy
from typing import Optional
def scatter(data: np.ndarray, headers: list[str], size: Optional[str]):
x, y = data[0], data[1]
if len(x) != len(y):
raise ValueError("Columns must have the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
ax.scatter(x, y, marker='o')
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(f"Scatter Plot of {headers[0]} vs {headers[1]}")
ax.grid()
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def errbar1x(data: np.ndarray, headers: list[str], size: Optional[str]):
x, y, error = data[0], data[1], data[2]
if len(x) != len(y) or len(x) != len(error):
raise ValueError("Columns must have the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
ax.errorbar(x, y, xerr=error, marker='o')
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(f"Errorbar Plot of {headers[0]} vs {headers[1]}")
ax.grid()
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def errbar1y(data: np.ndarray, headers: list[str], size: Optional[str]):
x, y, error = data[0], data[1], data[2]
if len(x) != len(y) or len(x) != len(error):
raise ValueError("Columns must have the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
ax.errorbar(x, y, yerr=error, marker='o')
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(f"Errorbar Plot of {headers[0]} vs {headers[1]}")
ax.grid()
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def errbar2xy(data: np.ndarray, headers: list[str], size: Optional[str]):
x, y, error_x, error_y = data[0], data[1], data[2], data[3]
if len(x) != len(y) or len(x) != len(error_x) or len(x) != len(error_y):
raise ValueError("Columns must have the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
ax.errorbar(x, y, xerr=error_x, yerr=error_y, marker='o')
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(f"Errorbar Plot of {headers[0]} vs {headers[1]}")
ax.grid()
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def bar(data: np.ndarray, headers: list[str], size: Optional[str]):
x, y = data[0], data[1]
if len(x) != len(y):
raise ValueError("Columns must have the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
ax.bar(x, y)
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(f"Bar Graph of {headers[0]} vs {headers[1]}")
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def pie(data: np.ndarray, categories: list[str], size: Optional[str]):
percentages = data[0]
if len(categories) != len(percentages):
raise ValueError("Columns must be the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
ax.pie(percentages, labels=categories, autopct='%1.1f%%')
ax.set_title(f"Pie Graph of {np.char.join(',', categories)}")
ax.legend()
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def boxplot(data: np.ndarray, categories: list[str], size: Optional[str], xlabel: str, ylabel: str):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
if len(categories) == 1:
data = data[0]
ax.boxplot(data, tick_labels=categories)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
ax.set_title(f"Box Plot of {np.char.join(',', categories)}")
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def eqhist(data: np.ndarray, weights: Optional[np.ndarray], bins: int | list[int], xlabel: str, ylabel: str, size: Optional[str]):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
if data.ndim > 1:
data = data.flatten()
if weights is not None:
if len(data) != len(weights):
raise ValueError("Columns must have the same length")
ax.hist(data, bins=bins, weights=weights)
else:
ax.hist(data, bins=bins)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
ax.set_title(f"Histogram of {xlabel} vs {ylabel}")
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def varyhist(data: np.ndarray, weights: Optional[np.ndarray], xlabel: str, ylabel: str, size: Optional[str]):
bins, counts = data[0], data[1]
if len(counts) != len(bins):
raise ValueError("Columns must have the same length")
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
if weights is not None:
if len(counts) != len(weights):
raise ValueError("Columns must have the same length")
ax.hist(counts, bins=bins, weights=weights)
else:
ax.hist(counts, bins=bins)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
ax.set_title(f"Histogram of {xlabel} vs {ylabel}")
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def imshowhmap(data: np.ndarray, headers: list[str], title: str, cmap: str, origin: str, size: Optional[str], useAnnotation: bool = False):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
im = ax.imshow(data, cmap=cmap, origin=origin)
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(title)
if useAnnotation:
num_rows, num_cols = data.shape
for i in range(num_rows):
for j in range(num_cols):
ax.text(j, i, f"{data[i, j]:.2f}", ha="center", va="center", color="black")
cbar = fig.colorbar(im, ax=ax)
cbar.set_label(headers[2])
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def pmhmap(data: np.ndarray, headers: list[str], title: str, cmap: str, shading: str, size: Optional[str], useAnnotation: bool = False):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
im = ax.pcolormesh(data, cmap=cmap, shading=shading)
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(title)
if useAnnotation:
num_rows, num_cols = data.shape
for i in range(num_rows):
for j in range(num_cols):
ax.text(j, i, f"{data[i, j]:.2f}", ha="center", va="center", color="black")
cbar = fig.colorbar(im, ax=ax)
cbar.set_label(headers[2])
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def pmChmap(data: np.ndarray, coords: np.ndarray, headers: list[str], title: str, cmap: str, shading: str, size: Optional[str],
useAnnotation: bool = False
):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
x, y = coords[0], coords[1]
X, Y = np.meshgrid(x, y)
im = ax.pcolormesh(X, Y, data, cmap=cmap, shading=shading)
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(title)
if useAnnotation:
num_rows, num_cols = data.shape
for i in range(num_rows):
for j in range(num_cols):
ax.text(j, i, f"{data[i, j]:.2f}", ha="center", va="center", color="black")
cbar = fig.colorbar(im, ax=ax)
cbar.set_label(headers[2])
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def pmfhmap(X: np.ndarray, Y: np.ndarray, headers: list[str], title: str, cmap: str,
shading: str, func: str, size: Optional[str], useAnnotation: bool = False):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
if func:
try:
transformation = eval(f"lambda x, y: {func}", {"np": np, "sp": scipy, "__builtins__": __builtins__})
except Exception as e:
raise ValueError(f"Error applying function {func}: {e}")
Z = transformation(X , Y)
im = ax.pcolormesh(X, Y, Z, cmap=cmap, shading=shading)
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(title)
if useAnnotation:
num_rows, num_cols = Z.shape
for i in range(num_rows):
for j in range(num_cols):
ax.text(X[i, j], Y[i, j], f"{Z[i, j]:.2f}", ha="center", va="center", color="black")
cbar = fig.colorbar(im, ax=ax)
cbar.set_label(headers[2])
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf
def contourmap(X: np.ndarray, Y: np.ndarray, title: str, cmap: str, levels: int | list[int],
func: str, size: Optional[str], headers: list[str]):
fig_size = (7, 3) if size == "large" else (3.375, 3)
fig, ax = plt.subplots(figsize=fig_size)
if func:
try:
transformation = eval(f"lambda x, y: {func}", {"np": np, "sp": scipy, "__builtins__": __builtins__})
except Exception as e:
raise ValueError(f"Error applying function {func}: {e}")
Z = transformation(X , Y)
contour_filled = ax.contourf(X, Y, Z, levels=levels, cmap=cmap)
contour_lines = ax.contour(X, Y, Z, colors="black", levels=levels)
ax.clabel(contour_lines, inline=True, fontsize=8)
ax.set_xlabel(headers[0])
ax.set_ylabel(headers[1])
ax.set_title(title)
ax.set_xticks(np.linspace(X.min(), X.max(), num=10))
ax.set_yticks(np.linspace(Y.min(), Y.max(), num=10))
ax.grid()
cbar = plt.colorbar(contour_filled)
cbar.set_label(headers[2])
fig.tight_layout()
buf = BytesIO()
fig.savefig(buf, format="pdf")
buf.seek(0)
plt.close(fig)
return buf