aerosandbox.tools.pretty_plots.quickplot ======================================== .. py:module:: aerosandbox.tools.pretty_plots.quickplot Attributes ---------- .. autoapisummary:: aerosandbox.tools.pretty_plots.quickplot.x Functions --------- .. autoapisummary:: aerosandbox.tools.pretty_plots.quickplot.qp Module Contents --------------- .. py:function:: qp(*args, backend='plotly', show=True, plotly_renderer = 'browser', orthographic=True, stacklevel=1) Quickly plots ("QP") a 1D, 2D, or 3D dataset as a line plot with markers. Useful for exploratory data analysis. .. rubric:: Example >>> import aerosandbox.numpy as np >>> >>> x = np.linspace(0, 10) >>> y = x ** 2 >>> z = np.sin(x) >>> qp(x, y, z) :param \*args: The arguments that you want to plot. You can provide 1, 2, or 3 arrays, all of which should be 1D and of the same length. :param backend: The backend to use. Current options: * "plotly" :param show: A boolean of whether or not to show the plot. :param plotly_renderer: A string of what to use as the Plotly renderer. If you don't want to overwrite a default that you've already set, set this variable to None. :param orthographic: A boolean of whether or not to use an orthographic (rather than persepctive) projection when viewing 3D plots. :param stacklevel: (Advanced) Choose the level of the stack that you want to retrieve plot labels at. Higher :param integers will get you higher: :type integers will get you higher: i.e., more end-user-facing :param argument in warnings.warn().: Returns: None (in-place) .. py:data:: x