FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
matplotlib.github.com/cmocean/index-10.py at main · matplotlib/matplotlib.github.com · GitHub
matplotlib
/
matplotlib.github.com
Public
Notifications
You must be signed in to change notification settings
Fork
62
Star
29
Code
Issues
1
Pull requests
2
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
matplotlib.github.com
/
cmocean
/
index-10.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
14 lines (12 loc) · 551 Bytes
Breadcrumbs
matplotlib.github.com
/
cmocean
/
index-10.py
Copy path
File metadata and controls
14 lines (12 loc) · 551 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
cmocean
import
matplotlib
.
pyplot
as
plt
cmap
=
cmocean
.
cm
.
topo
fig
,
axes
=
plt
.
subplots
(
1
,
2
,
figsize
=
(
8
,
4
))
A
=
np
.
random
.
randint
(
-
50
,
201
, (
10
,
10
))
mappable
=
axes
[
0
].
pcolormesh
(
A
,
vmin
=
-
200
,
vmax
=
200
,
cmap
=
cmap
)
axes
[
0
].
set_title
(
'No values<-50, but still
\n
show possibility in colorbar'
)
fig
.
colorbar
(
mappable
,
ax
=
axes
[
0
])
newcmap
=
cmocean
.
tools
.
crop
(
cmap
,
-
50
,
200
,
0
)
mappable
=
axes
[
1
].
pcolormesh
(
A
,
vmin
=
-
50
,
vmax
=
200
,
cmap
=
newcmap
)
axes
[
1
].
set_title
(
'Colorbar only shows color
\n
range used by data'
)
fig
.
colorbar
(
mappable
,
ax
=
axes
[
1
])
Back
|
FazBrowse Home
|
New Git URL