FAQ ========= Figures --------------- Figure objects and plots ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. *The legend overlaps with the curves. Is there a way to move the legend outside the figure?* """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .. admonition:: answer There is currently no way to do so, but it is possible to hide the legend with the argument ``showlegend = False``. The ``showlegend`` argument can be passed when creating the Figure object or in ``plot()`` and ``layout()`` methods: .. code-block:: python3 Fig = tjp.Figure(showlegend=False, ...) # or Fig.plot(showlegend=False, ...) # or Fig.layout(showlegend=False, ...) ______ *How can I erase the credits text line at the bottom of the figures?* """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .. admonition:: answer By default, the standard credits are displayed on figures. To change the text, you can use the argument ``credit = "Your text"``. If you want to remove this text you can pass ``credit = ""``. The ``credit`` argument can be passed when creating the Figure object or in ``plot()`` and ``layout()`` methods: .. code-block:: python3 Fig = tjp.Figure(credit="", ...) # or Fig.plot(credit="", ...) # or Fig.layout(credit="", ...) ______ *How can I show the "daily values grey shadows" on my 'temporality' figure?* """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .. admonition:: answer These shadows can be displayed by passing the argument ``shadow = 'all' | 'first' | 'last' | 'firstlast' ('lastfirst')``. The ``shadow`` argument can be passed when creating the Figure object or in ``plot()`` and ``layout()`` methods: .. code-block:: python3 Fig = tjp.Figure(shadow="", ...) # or Fig.plot(shadow="", ...) # or Fig.layout(shadow="", ...) ______ *What is the difference between* ``period_years`` *and* ``rolling_days`` *?* """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .. admonition:: answer The ``period_years`` argument is used to define how years will be grouped to be averaged. On the 'temporality' figures, each day displays a value averaged over all the years within the group defined by the ``period_years`` argument. The ``rolling_days`` argument is used to add an additional smoothing step. On the 'temporality' figures, the value displayed for each day corresponds to the centered rolling mean of the values averaged over all the years defined by ``period_years``. ______ Historic maps ^^^^^^^^^^^^^^^ *How can I change the periods represented on the maps?* """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .. admonition:: answer This feature is not editable at the moment. Contact ^^^^^^^^^^^^^^^ For any other question, please write to alexandre.co@hotmail.fr and specify **geop4th** in the email title.