Plotting
create_coordinates_plot(axes, ax_names, result_map, sample=0, alpha_black=0.01)
Create parallel coordinates plot for multidimensional parameter space. Modified from: https://stackoverflow.com/questions/8230638/parallel-coordinates-plot-in-matplotlib
Parameters:
Name | Type | Description | Default |
---|---|---|---|
axes |
N list of parameters |
required | |
ax_names |
N list of parameter names |
required | |
result_map |
map of values (N-dim) |
required | |
sample |
if != 0, subsample the parameter space |
0
|
|
alpha_black |
alpha value zero value |
0.01
|
Source code in cmtj/utils/plotting.py
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 |
|
create_stack(ax, colors, heights, angles, labels, width=2, labelpad_left=0.2, offset_x=0, offset_y=0, lw_arrow=1.5, ms=10, r=0.6, text_fontsize=4, reversed=True)
Create a material stack plot. If a given layer is to have no arrow, pass None.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ax |
matplotlib axis |
required | |
colors |
list of colors |
required | |
heights |
list of heights |
required | |
angles |
list of angles |
required | |
labels |
list of labels |
required | |
width |
width of the bars |
2
|
|
labelpad_left |
padding of the labels |
0.2
|
|
offset_x |
offset of the patches in x direction |
0
|
|
offset_y |
offset of the patches in y direction |
0
|
|
lw_arrow |
linewidth of the arrows |
1.5
|
|
ms |
mutation size of the arrows |
10
|
|
r |
length of the arrows |
0.6
|
|
reversed |
if True, the stack is reversed |
True
|
Source code in cmtj/utils/plotting.py
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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
|
plot_coloured_trajectory(x, y, z, colormap='plasma', ax=None)
Plot a coloured trajectory in 3D. Normalises to unit sphere. Colour of the trajectory now designates the flow of time.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ax |
matplotlib axis |
None
|
|
x |
x-coordinates |
required | |
y |
y-coordinates |
required | |
z |
z-coordinates |
required | |
colormap |
colormap to use |
'plasma'
|
Source code in cmtj/utils/plotting.py
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 |
|
plot_trajectory_sphere(x, y, z, color='blue', alpha=1, ax=None)
Plot a trajectory in 3D. Normalises to unit sphere
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ax |
matplotlib axis |
None
|
|
x |
x-coordinates |
required | |
y |
y-coordinates |
required | |
z |
z-coordinates |
required | |
color |
color of the trajectory |
'blue'
|
|
alpha |
alpha value of the trajectory |
1
|
Source code in cmtj/utils/plotting.py
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 |
|
unpack_ndim_map(map, axes)
Unpack N-dimensional map into a list of 1-dimensional arrays
Parameters:
Name | Type | Description | Default |
---|---|---|---|
map |
N-dimensional map, each axis is separate parameter space. |
required | |
axes |
list of axes to unpack. |
required |
Source code in cmtj/utils/plotting.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
|