Skip to content

Commit debfeda

Browse files
authored
Merge pull request #104 from troyraen/raen/patch/euclid-mer-catalog
Euclid MER catalog CMD: Reverse y-axis and zoom in
2 parents 0f44d65 + 0ab746e commit debfeda

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(-10, 10)
155-
plt.ylim(10, 35)
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)