We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b27d1 commit 6ac86e6Copy full SHA for 6ac86e6
fooof/plts/style.py
@@ -18,8 +18,8 @@ def check_style_options():
18
print('Valid style arguments:')
19
for label, options in zip(['Axis', 'Line', 'Collection', 'Custom'],
20
[AXIS_STYLE_ARGS, LINE_STYLE_ARGS,
21
- COLLECTION_STYLE_ARGS, CUSTOM_STYLE_ARGS]):
22
- print(' ', label, '\t', ', '.join(options))
+ COLLECTION_STYLE_ARGS, CUSTOM_STYLE_ARGS]):
+ print(' {:10s} {}'.format(label, ', '.join(options)))
23
24
25
def style_spectrum_plot(ax, log_freqs, log_powers, grid=True):
@@ -252,6 +252,11 @@ def style_plot(func, *args, **kwargs):
252
253
>>> from fooof.plts.style import check_style_options
254
>>> check_style_options()
255
+ Valid style arguments:
256
+ Axis title, xlabel, ylabel, xlim, ylim
257
+ Line alpha, lw, linewidth, ls, linestyle, marker, ms, markersize
258
+ Collection alpha, edgecolor
259
+ Custom title_fontsize, label_size, tick_labelsize, legend_size, legend_loc
260
"""
261
262
@wraps(func)
0 commit comments