Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AJQuinn committed Mar 2, 2024
1 parent a47b41c commit 6df02ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osl/glm/glm_spectrum.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def plot_joint_spectrum(self, gcontrast=0, fcontrast=0, metric='copes', **kwargs
spec = self.model.varcopes[gcontrast, fcontrast, :, :].T
kwargs['ylabel'] = 'Varcopes' if kwargs.get('ylabel') is None else kwargs.get('ylabel')
elif metric == 'tstats':
spec = self.model.tstats[gcontrast, fcontrast,, :, :].T
spec = self.model.tstats[gcontrast, fcontrast, :, :].T
kwargs['ylabel'] = 't-statistics' if kwargs.get('ylabel') is None else kwargs.get('ylabel')
else:
raise ValueError("Metric '{}' not recognised".format(metric))
Expand Down

0 comments on commit 6df02ff

Please sign in to comment.