Skip to content

Commit 0ab746e

Browse files
committed
Apply review feedback from @jkrick
1 parent 0a2964d commit 0ab746e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tutorials/euclid_access/2_Euclid_intro_MER_catalog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,9 @@ plt.errorbar(x, y, xerr=xerr, yerr=yerr,
151151
152152
plt.xlabel('Y-H')
153153
plt.ylabel('Y')
154-
plt.xlim(-5, 5)
155-
plt.ylim(30, 15)
154+
# Note that these limits exclude a handful of points with large error bars.
155+
plt.xlim(-2, 2)
156+
plt.ylim(24, 16)
156157
plt.title('10k Stars in MER catalog -- IRSA')
157158
```
158159

0 commit comments

Comments
 (0)