Skip to content

Commit 28f5034

Browse files
committed
changed frameon default to False
1 parent fd8bfa9 commit 28f5034

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scanpy/settings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"""Categories that are omitted in plotting etc.
7373
"""
7474

75-
_frameon = True
75+
_frameon = False
7676
"""See set_figure_params.
7777
"""
7878

@@ -82,7 +82,7 @@
8282
# --------------------------------------------------------------------------------
8383

8484

85-
def set_figure_params(scanpy=True, dpi=80, dpi_save=150, frameon=True, vector_friendly=True,
85+
def set_figure_params(scanpy=True, dpi=80, dpi_save=150, frameon=False, vector_friendly=True,
8686
color_map=None, format='pdf', transparent=False, ipython_format='png2x'):
8787
"""Set resolution/size, styling and format of figures.
8888
@@ -95,8 +95,8 @@ def set_figure_params(scanpy=True, dpi=80, dpi_save=150, frameon=True, vector_fr
9595
dpi_save : `int`, optional (default: `150`)
9696
Resolution of saved figures. This should typically be higher to achieve
9797
publication quality.
98-
frameon : `bool`, optional (default: True)
99-
Plot scatter plots with frames around.
98+
frameon : `bool`, optional (default: `False`)
99+
Add frames and axes labels to scatter plots with tick-less axes.
100100
vector_friendly : `bool`, optional (default: `True`)
101101
Plot scatter plots using `png` backend even when exporting as `pdf` or `svg`.
102102
color_map : `str`, optional (default: `None`)

0 commit comments

Comments
 (0)