Mercurial > repos > climate > climate_stripes
diff climate_stripes.py @ 1:645e533f8269 draft
"planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes commit 78edbd356193b8a8701ff7a28b7979c7047c0c5b"
| author | climate |
|---|---|
| date | Tue, 14 Apr 2020 19:07:32 +0000 |
| parents | 2ea0576cb062 |
| children | 7f84fb995f4e |
line wrap: on
line diff
--- a/climate_stripes.py Sat Oct 05 17:02:43 2019 -0400 +++ b/climate_stripes.py Tue Apr 14 19:07:32 2020 +0000 @@ -82,8 +82,8 @@ fig = plt.figure(figsize=(10, 2)) ax = plt.subplot(111) plt.pcolor(data, cmap=self.cmap, - vmin=self.data[self.valname].min(), - vmax=self.data[self.valname].max()) + vmin=self.data[self.valname].quantile(q=0.01), + vmax=self.data[self.valname].quantile(q=0.99)) if self.title: plt.title(self.title) if self.xname:
