forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathst_pyplot_kwargs.py
More file actions
66 lines (54 loc) · 1.66 KB
/
Copy pathst_pyplot_kwargs.py
File metadata and controls
66 lines (54 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 2018-2021 Streamlit Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import textwrap
import matplotlib.pyplot as plt
import seaborn as sns
import streamlit as st
import numpy as np
# Plot labels
title = "An Extremely and Really Really Long Long Long Title"
xLabel = "Very long long x label"
yLabel = "Very long long y label"
# Generate data
n = 200
np.random.seed(1234)
xData = np.random.randn(n, 1) * 30 + 30
yData = np.random.randn(n, 1) * 30
data = np.random.randn(n, 2)
# Generate plot
fig, ax = plt.subplots(figsize=(4.5, 4.5))
sns.set_context(rc={"font.size": 10})
p = sns.regplot(x=xData, y=yData, data=data, ci=None, ax=ax, color="grey")
p.set_title(title, fontweight="bold")
p.set_xlabel(xLabel)
p.set_ylabel(yLabel)
p.set_ylim(-30, 30)
plot_text = textwrap.dedent(
"""
some_var_1 = 'Some label 1'
some_var_2 = 'Some label 2'
"""
)
txt = ax.text(0.90, 0.10, plot_text, transform=ax.transAxes)
sns.despine()
kwargs = {
"dpi": 1200,
"bbox_extra_artists": (txt,),
"bbox_inches": "tight",
"format": "png", # Required for some Matplotlib backends.
}
# st.pyplot with kwargs
x = st.info("Loading...")
x.pyplot(fig, **kwargs)
st.success("Done!")