- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabc.py
More file actions
Latest commit
19 lines (14 loc) · 406 Bytes
/
Copy pathabc.py
File metadata and controls
19 lines (14 loc) · 406 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importmatplotlib
matplotlib.use('nbagg')
importmatplotlib.pyplotasplt
importseabornassns
importnumpyasnp
fromscipyimportstats
importpandasaspd
sns.set_palette("BuPu_d",desat=0.6)
sns.set_context("notebook",font_scale=2.0)
np.random.seed(42424242)
x=stats.gamma(5).rvs(420)
y=stats.gamma(13).rvs(420)
withsns.axes_style("white"):
sns.jointplot(x,y,kind="hex",height=16);