Skip to content

Commit

Permalink
mainly addressing multi-cell recordings questions
Browse files Browse the repository at this point in the history
* recalled what we talked with Michael about: now "3" is spelled out

* apparently x axis was incorrect in Figure 6, next commit will
  ship corrected figure (svg + high-res jpg for the paper)

* added XXX placeholders so we don't forget anything

* in the code removed few bogus spaces
  • Loading branch information
yarikoptic committed Dec 4, 2008
1 parent b72e192 commit f933be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cell_luczak.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def finalFigure(senses):
mcounts = N.array(mcounts)
mvar = N.array(mvar)

im,cb = limshow(mcounts, ax=ax, cmap = P.cm.YlOrRd,
im,cb = limshow(mcounts, ax=ax, cmap=P.cm.YlOrRd,
aspect=c_tb_aspect, vmin=0, **ckwargs)
ax.set_yticklabels( ( ) )
P.xlabel('time (ms)')
Expand All @@ -226,7 +226,7 @@ def finalFigure(senses):

ax = fig.add_subplot(nsy, nsx, 2)
# Var per class/unit
im,cb = limshow(mvar, ax=ax, cmap = P.cm.YlOrRd,
im,cb = limshow(mvar, ax=ax, cmap=P.cm.YlOrRd,
aspect=c_n_aspect, vmin=0, **ckwargs)
P.xlabel('Unit')
P.title('Mean variance')
Expand Down

0 comments on commit f933be0

Please sign in to comment.