Coverage for install/scipp/plotting.py: 0%
4 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp)
4from typing import Any
7def plot(*args: Any, **kwargs: Any) -> Any:
8 """
9 Wrapper function to plot data.
10 See https://scipp.github.io/plopp/ for details.
11 """
12 from plopp import plot as _plot
14 return _plot(*args, **kwargs)