Wednesday, July 23, 2008

What good is large-scale oscillatory activity?

As shown below in EEG traces recorded during different stages of sleep, when we record neuronal activity on a large scale (either local field potentials or EEG signals) things do not typically look 'flat.' Since the signals recorded at these electrodes are basically the linear sum of the voltage fields generated by dendritic activation in a little sphere around the electrode, if the voltages from different neurons was random, they would be fairly flat. That they are rarely flat suggests there is some degree of synchronous fluctuation in the voltage fields from the cells near the electrode.

What is the function, if any, of such large-scale "oscillatory" activity? Recently I read an argument that such activity is just epiphenomenal, that it has no biologically useful causal role. I am something of an atheist turned agnostic about the importance of such signals, so in what follows I try my best to step into the role of advocate for the claim that such oscillations have interesting functional consequences.

Let's consider a few experimental facts about such large-scale synchronous activity (not an exhaustive list!):
1. Neuronal activity can be directly influenced by weak external electric fields. These are known as "ephaptic interactions" in the literature. The question of the function, extent, and importance of ephaptic interactions (relative to synaptic interactions) is an open question that has received little attention. Google "ephaptic interactions" if you want to see some of the research that has been done. It could be that, for a neuron near threshold, an ephaptic signal may nudge it up into a spiking regime (or push it down away from threshold, making it less likely to spike).

2. The efficacy with which plasticity is induced in rat barrel cortex is synchrony-dependent. In the study from Diamond's group, more synchrony implied higher probability of inducing cortical plasticity with their protocol. Note in this paper they measured synchrony among spike trains using extracellular recordings, not LFP or EEG.

[Link to paper]

3. Gilles Laurent's group pharmacologically disrupted "synchronous oscillations" in the honeybee CNS and showed this disruption impaired behavioral discrimination of similar odorants (but not discrimination of clearly distinct odorants). Similar pharmacological manipulations have been done in vertebrate systems (see Buzsaki paper below).

Note these pharmacological manipulations are not clean, which makes it hard to interpret the results.

[Laurent paper] [Buzsaki paper]
The second and third results mentioned are likely indicative of some very cool and interesting synaptic processing, which puts the first line of evidence in a unique class. Ephaptic interactions are the key for those who think oscillations actually do something. Unfortunately, there isn't a lot of good work on the role of ephaptic interactions in nervous systems.

My guess is that it will turn out that ephaptic interactions are important for the functioning of some parts of some systems, but settling which parts of which systems isn't a question that can be resolved a priori. Unfortunately, right now we are stuck mostly with correlation studies, which keeps the ratio of inference to data unacceptably high.

Stepping back from specific data suggesting that oscillations are important, Buzsaki's book Rhythms of the Brain is likely a good place to start to get the theist's side of things with respect to the importance of oscillations. I should admit I haven't read it, but only seen him speak and have read some of his papers, so caveat emptor. I can say his experimental work is wonderful, much of it driven by questions about the function of oscillations in the CNS, so his book seems like a natural place to start for someone interested in this question.


References:
Irina A. Erchova and Mathew E. Diamond (2004) Rapid Fluctuations in Rat Barrel Cortex Plasticity. The Journal of Neuroscience, June 30, 2004, 24(26):5931-5941

Stopfer, M., Bhagavan, S., Smith, B. H. and Laurent, G. (1997). “Impaired odour discrimination on desynchronization of odour-encoding neural assemblies.” Nature 390(6655): 70-4.

Robbe D, Montgomery SM, Thome A, Rueda-Orozco PE, McNaughton BL, Buzsaki G. Cannabinoids reveal importance of spike timing coordination in hippocampal function. Nat Neurosci. 9:1526-33 2006.

Wednesday, July 02, 2008

Anscombe's Quartet

Anscombe's Quartet is a group of four data sets that provide a useful caution against blindly applying statistical methods to data. Each data set consists of ten x- and y-values such that the mean and variance of x and y, the correlation coefficient, regression line, and error of fit using the line are the same. But as you can see, they are clearly quite different data sets:

The x- and y-values are included at the end of this post in a Matlab-friendly format. The Quartet provides a stark lesson on how useful it can be to simply look at one's data before diving in with all sorts of statistical ninja. For instance, Set 2 can be modelled with linear regression to yield the same mean-squared-error between the regression line and the data as the other plots, but it ain't a linear relationship.

This is old hat for most of us, but I like the Quartet for its simplicity and visual impact.

These data and graphs were first presented by F.J. Anscombe in 1973 in his paper Graphs in Statistical Analysis. It is quite fun reading over the paper, which ends:
Unfortunately, most persons who have recourse to a computer for statistical analysis of data are not much interested either in computer programming or in statistical method, being primarily concerned with their own proper business. Hence the common use of library programs and various statistical packages. Most of these originated in the pre-visual era. The user is not showered with graphical displays. He can get them only with trouble, cunning, and a fighting spirit. It's time that was changed.
Thank goodness for Matlab.



The data (coded for Matlab)
x1=[10 8 13 9 11 14 6 4 12 7 5];
x2=x1;
x3=x1;
x4=[8 8 8 8 8 8 8 19 8 8 8];

y1=[8.04 6.95 7.58 8.81 8.33 9.96 7.24 4.26 10.84 4.82 5.68];
y2=[9.14 8.14 8.74 8.77 9.26 8.1 6.13 3.1 9.13 7.26 4.74];
y3=[7.46 6.77 12.74 7.11 7.81 8.84 6.08 5.39 8.15 6.42 5.73];
y4=[6.58 5.76 7.71 8.84 8.47 7.04 5.25 12.5 5.56 7.91 6.89];