-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathreports.py
47 lines (35 loc) · 1.68 KB
/
reports.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
42
43
44
45
46
47
"""Utilities to create reports and useful print outs."""
from specparam.core.strings import (gen_version_str, gen_settings_str, gen_freq_range_str,
gen_methods_report_str, gen_methods_text_str)
###################################################################################################
###################################################################################################
def methods_report_info(model_obj=None, concise=False):
"""Prints out a report of information required for methods reporting.
Parameters
----------
model_obj : SpectralModel or SpectralGroupModel, optional
An object with setting information available.
If provided, is used to collect and print information to be reported.
concise : bool, optional, default: False
Whether to print the report in concise mode.
Notes
-----
Any missing values (information that is not available) will be printed out as 'XX'.
"""
print(gen_methods_report_str(concise))
if model_obj:
print(gen_version_str(concise))
print(gen_settings_str(model_obj, concise=concise))
print(gen_freq_range_str(model_obj, concise=concise))
def methods_report_text(model_obj=None):
"""Prints out a text template of methods reporting information.
Parameters
----------
model_obj : SpectralModel or SpectralGroupModel, optional
An object with setting information available.
If None, the text is returned as a template, without values.
Notes
-----
Any missing values (information that is not available) will be printed out as 'XX'.
"""
print(gen_methods_text_str(model_obj))