animate
Short Description
sm.hl.animate
: This function creates dynamic animations transitioning between
UMAP embeddings and physical X and Y coordinates, offering a visual bridge between
abstract and physical data representations. Given varying computer configurations and
execution environments (such as Jupyter notebooks), real-time animation playback may
experience performance issues or may not display properly. Therefore, it is strongly advised
to save animations to disk. Note that saving requires imagemagick
installed on your system.
Installation instructions for imagemagick
can be found
at: https://imagemagick.org/script/download.php
Function
animate(adata, color=None, palette=None, embedding='umap', x_coordinate='X_centroid', y_coordinate='Y_centroid', flip_y=True, imageid='imageid', subset=None, layer=None, use_raw=False, log=False, subsample=None, random_state=0, n_frames=50, interval=50, reverse=True, final_frame=5, s=None, alpha=1, cmap='vlag', tight_layout=True, plot_legend=False, title=None, fontsize=20, watermark=True, figsize=(5, 5), pltStyle=None, verbose=True, save_animation=None, **kwargs)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
adata |
AnnData
|
The annotated data object to be visualized. |
required |
color |
list
|
Identifiers for annotations or genes to color the animation. Accepts a single annotation name. |
None
|
palette |
dict
|
Custom color mapping for categorical annotations. Unspecified categories are automatically colored. |
None
|
embedding |
str
|
Specifies the UMAP embedding label in |
'umap'
|
x_coordinate, |
y_coordinate (str
|
Columns in |
required |
flip_y |
bool
|
Whether to invert the Y-axis, useful if the Y-coordinates appear flipped. |
True
|
imageid |
str
|
Column name in |
'imageid'
|
subset |
list
|
Identifiers for specific images to visualize, used in conjunction with |
None
|
layer |
str
|
Specifies a layer in |
None
|
use_raw |
bool
|
Whether to use data from |
False
|
log |
bool
|
Applies natural log transformation to the data if True. |
False
|
subsample |
float
|
Fraction of data to randomly subsample for large datasets, between 0-1. |
None
|
random_state |
int
|
Seed for the random number generator, ensuring reproducibility. |
0
|
n_frames |
int
|
Number of frames between UMAP and spatial coordinates, affecting animation smoothness. |
50
|
interval |
int
|
Time interval between frames in milliseconds. |
50
|
reverse |
bool
|
If True, includes a reverse transition from UMAP to spatial coordinates. |
True
|
final_frame |
int
|
Number of frames to display the final frame, enhancing visualization. |
5
|
s |
int
|
Marker size in points. |
None
|
alpha |
float
|
Opacity of markers, between 0 (transparent) and 1 (opaque). |
1
|
cmap |
str
|
Colormap for continuous variables. |
'vlag'
|
tight_layout |
bool
|
Adjusts subplot padding, ensuring visibility of legends. |
True
|
plot_legend |
bool
|
Whether to display the legend. |
False
|
title |
bool or str
|
Adds a title to the plot. Custom titles can be specified. |
None
|
fontsize |
int
|
Font size for the title. |
20
|
watermark |
bool
|
Displays a 'made with scimap' watermark. |
True
|
figsize |
tuple
|
Figure dimensions in inches. |
(5, 5)
|
pltStyle |
str
|
Matplotlib plot style to use. |
None
|
save_animation |
str
|
File path to save the animation. Saving is recommended for optimal viewing. |
None
|
**kwargs |
Additional matplotlib parameters. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Animation |
An interactive animation or saved file illustrating the dynamic transition. |
Example
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Source code in scimap/helpers/animate.py
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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 |
|