diff --git a/docs/resources/diagnostic.rst b/docs/resources/diagnostic.rst index b237d67fc8..3641ec5ec7 100644 --- a/docs/resources/diagnostic.rst +++ b/docs/resources/diagnostic.rst @@ -23,9 +23,14 @@ Run --- Run the diagnostic :func:`~smarts.diagnostic.run.main` with one or multiple scenarios, from the ``SMARTS/smarts/diagnostic`` folder. +Reports will be generated in the ``SMARTS/smarts/diagnostic/reports`` folder. .. code-block:: bash $ cd /SMARTS + $ python3.8 -m venv ./.venv + $ source ./.venv/bin/activate + $ pip install --upgrade pip + $ pip install -e .[diagnostic] $ scl diagnostic run [scenarios/path] - # e.g., scl diagnostic run n_sumo_actors/1_actors \ No newline at end of file + # e.g., scl diagnostic run n_sumo_actors/1_actors n_agents/1_agents \ No newline at end of file diff --git a/smarts/diagnostic/run.py b/smarts/diagnostic/run.py index b1a3a0c50b..720ff529a7 100644 --- a/smarts/diagnostic/run.py +++ b/smarts/diagnostic/run.py @@ -194,7 +194,7 @@ def _write_report(results: Dict[str, Any]): plt.savefig(dir / "Fig1.png") mdFile.new_paragraph( "
" - f"\nline chart" + f"\nline chart" "\n
" )