-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatplotlib_setup.py
41 lines (32 loc) · 1.1 KB
/
matplotlib_setup.py
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
import matplotlib
import logging
def configure_matplotlib():
"""Configure matplotlib settings to avoid warnings and optimize for Qt"""
# Use Qt5 backend
matplotlib.use('Qt5Agg')
# Disable font-related warnings
logging.getLogger('matplotlib.font_manager').setLevel(logging.ERROR)
# Configure matplotlib rcParams
matplotlib.rcParams.update({
# Use a specific font family
'font.family': 'sans-serif',
'font.sans-serif': ['Arial', 'DejaVu Sans', 'Helvetica'],
# Optimize figure settings
'figure.dpi': 100,
'figure.figsize': [8.0, 6.0],
# Configure axes
'axes.linewidth': 1.0,
'axes.grid': True,
'axes.grid.which': 'major',
# Configure grid
'grid.linestyle': '--',
'grid.alpha': 0.5,
# Configure ticks
'xtick.direction': 'out',
'ytick.direction': 'out',
# Configure legend
'legend.frameon': True,
'legend.framealpha': 0.8,
# Disable toolbar
'toolbar': 'None'
})