Coverage for install/scipp/plotting.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-04-28 01:28 +0000

1# SPDX-License-Identifier: BSD-3-Clause 

2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp) 

3 

4 

5def plot(*args, **kwargs): 

6 """ 

7 Wrapper function to plot data. 

8 See https://scipp.github.io/plopp/ for details. 

9 """ 

10 from plopp import plot as _plot 

11 

12 return _plot(*args, **kwargs)