.. _sphx_glr_auto_examples_plot_ts.py: ====================== Plotting a time series ====================== This example shows how you can plot a single time series. .. image:: /auto_examples/images/sphx_glr_plot_ts_001.png :align: center .. code-block:: python import numpy as np import matplotlib.pyplot as plt # Parameters n_samples, n_features = 100, 48 # Toy dataset rng = np.random.RandomState(41) X = rng.randn(n_samples, n_features) # Plot the first time series plt.plot(X[0]) plt.show() **Total running time of the script:** ( 0 minutes 0.064 seconds) .. only :: html .. container:: sphx-glr-footer .. container:: sphx-glr-download :download:`Download Python source code: plot_ts.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: plot_ts.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_