explained_variance
ExplainedVariance
Bases: object
Explained variance measure for assessing reactivation of neuronal activity using pairwise correlations.
References
1) Kudrimoti, H. S., Barnes, C. A., & McNaughton, B. L. (1999). Reactivation of Hippocampal Cell Assemblies: Effects of Behavioral State, Experience, and EEG Dynamics. Journal of Neuroscience, 19(10), 4090-4101. https://doi.org/10/4090 2) Tatsuno, M., Lipa, P., & McNaughton, B. L. (2006). Methodological Considerations on the Use of Template Matching to Study Long-Lasting Memory Trace Replay. Journal of Neuroscience, 26(42), 10727-10742. https://doi.org/10.1523/JNEUROSCI.3317-06.2006
Adapted from https://github.com/diba-lab/NeuroPy/blob/main/neuropy/analyses/reactivation.py
Attributes:
| Name | Type | Description |
|---|---|---|
st | SpikeTrainArray | obj that holds spiketrains |
template | EpochArray | time in seconds, pairwise correlation calculated from this period will be compared to matching period (task-period) |
matching | EpochArray | time in seconds, template-correlations will be correlated with pariwise correlations of this period (post-task period) |
control | EpochArray | time in seconds, control for pairwise correlations within this period (pre-task period) |
bin_size | float | in seconds, binning size for spike counts |
window | int | window over which pairwise correlations will be calculated in matching and control time periods, if window is None entire time period is considered, in seconds |
slideby | int | slide window by this much, in seconds |
matching_windows | array | windows for matching period |
control_windows | array | windows for control period |
template_corr | array | pairwise correlations for template period |
matching_paircorr | array | pairwise correlations for matching period |
control_paircorr | array | pairwise correlations for control period |
ev | array | explained variance for each time point |
rev | array | reverse explained variance for each time point |
ev_std | array | explained variance standard deviation for each time point |
rev_std | array | reverse explained variance standard deviation for each time point |
partial_corr | array | partial correlations for each time point |
rev_partial_corr | array | reverse partial correlations for each time point |
n_pairs | int | number of pairs |
matching_time | array | time points for matching period |
control_time | array | time points for control period |
ev_signal | AnalogSignalArray | explained variance signal |
rev_signal | AnalogSignalArray | reverse explained variance signal |
plot | function | plot explained variance |
pvalue | function | calculate p-value for explained variance by shuffling the template correlations |
Examples:
Load data
>>> basepath = r"U:\data\HMC\HMC1\day8"
>>> st,cm = loading.load_spikes(basepath,brainRegion="CA1",putativeCellType="Pyr")
>>> epoch_df = loading.load_epoch(basepath)
>>> beh_epochs = nel.EpochArray(epoch_df[["startTime", "stopTime"]].values)
Most simple case, returns single explained variance value
>>> expvar = explained_variance.ExplainedVariance(
>>> st=st,
>>> template=beh_epochs[1],
>>> matching=beh_epochs[2],
>>> control=beh_epochs[0],
>>> window=None,
>>> )
Get time resolved explained variance across entire session in 200sec bins
>>> expvar = explained_variance.ExplainedVariance(
>>> st=st,
>>> template=beh_epochs[1],
>>> matching=nel.EpochArray([beh_epochs.start, beh_epochs.stop]),
>>> control=beh_epochs[0],
>>> window=200
>>> )
Get time resolved explained variance across entire session in 200sec bins sliding by 100sec
>>> expvar = explained_variance.ExplainedVariance(
>>> st=st,
>>> template=beh_epochs[1],
>>> matching=nel.EpochArray([beh_epochs.start, beh_epochs.stop]),
>>> control=beh_epochs[0],
>>> window=200,
>>> slideby=100
>>> )
Source code in neuro_py/ensemble/explained_variance.py
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 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 | |
ev_signal property
Return explained variance signal.
rev_signal property
Return reverse explained variance signal.
plot()
Plot explained variance.
Source code in neuro_py/ensemble/explained_variance.py
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 | |
pvalue(n_shuffles=1000)
Calculate p-value for explained variance by shuffling the template correlations.
Source code in neuro_py/ensemble/explained_variance.py
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 | |
explained_variance(task, post_task, pre_task)
Simplified version of explained variance and reverse explained variance
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task | ndarray | 2D array, spike counts matrix with shape(n_features, n_timepoints) | required |
post_task | ndarray | 2D array, spike counts matrix with shape(n_features, n_timepoints) | required |
pre_task | ndarray | 2D array, spike counts matrix with shape(n_features, n_timepoints) | required |
Returns:
| Name | Type | Description |
|---|---|---|
EV | float | explained variance |
rEV | float | reverse explained variance |
Examples:
>>> import numpy as np
>>> from neuro_py.ensemble import explained_variance
>>> # build correlated task/post epochs and a weaker pre epoch
>>> rng = np.random.default_rng(0)
>>> n_features, n_time = 10, 300
>>> rho_task, rho_pre = 0.5, 0.1
>>> cov_task = np.full((n_features, n_features), rho_task); np.fill_diagonal(cov_task, 1.0)
>>> cov_pre = np.full((n_features, n_features), rho_pre); np.fill_diagonal(cov_pre, 1.0)
>>> task = rng.multivariate_normal(np.zeros(n_features), cov_task, size=n_time).T
>>> post = rng.multivariate_normal(np.zeros(n_features), cov_task, size=n_time).T
>>> pre = rng.multivariate_normal(np.zeros(n_features), cov_pre, size=n_time).T
>>> EV, rEV = explained_variance.explained_variance(task, post, pre)
>>> EV > rEV
True
>>> import neuro_py as npy
>>> import nelpy as nel
>>> from neuro_py.ensemble import explained_variance
>>> basepath = r"S:\data\HMC\HMC1\day8"
>>> st, cm = npy.io.load_spikes(basepath, brainRegion="CA1")
>>> epoch_df = npy.io.load_epoch(basepath)
>>> beh_epochs = nel.EpochArray(epoch_df[["startTime", "stopTime"]].values)
>>> state_dict = npy.io.load_SleepState_states(basepath)
>>> nrem_epochs = nel.EpochArray(
... state_dict["NREMstate"],
... )
>>> theta_cycles = npy.io.load_theta_cycles(basepath, return_epoch_array=True)
>>> theta_cycles = theta_cycles[beh_epochs[1]] # only during behavior
>>> # bin spike trains into each theta cycle
>>> bst_task = npy.process.count_in_interval(
... st.data, theta_cycles.starts, theta_cycles.stops
... )
>>> # bin spike trains into 50ms bins during pre sleep
>>> bst_pre = st[beh_epochs[0] & nrem_epochs].bin(ds=0.05).data
>>> # bin spike trains into 50ms bins during post sleep
>>> bst_post = st[beh_epochs[2] & nrem_epochs].bin(ds=0.05).data
>>> ev, rev = explained_variance.explained_variance(bst_task, bst_post, bst_pre)
>>> print(f"Explained Variance: {ev}, Reverse Explained Variance: {rev}")
Explained Variance: 0.21654828336188703, Reverse Explained Variance: 0.00413191971965775
Notes
n_timepoints can differ between task, post_task, pre_task
Source code in neuro_py/ensemble/explained_variance.py
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 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 | |