Skip to content

Commit

Permalink
ENH: Disable interpolation in design matrix
Browse files Browse the repository at this point in the history
Current display shows blurring between columns, which is at best
unhelpful, at worst confusing.
  • Loading branch information
effigies committed Sep 17, 2023
1 parent 6f06c6c commit 0b54e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_one_voxel.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ regressor, and a column of ones:
N = len(convolved)
X = np.ones((N, 2))
X[:, 0] = convolved
plt.imshow(X, cmap='gray', aspect=0.1)
plt.imshow(X, cmap='gray', aspect=0.1, interpolation='none')
```

$\newcommand{\yvec}{\vec{y}}$
Expand Down

0 comments on commit 0b54e49

Please sign in to comment.