.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/utils/example_array_concatenation.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_utils_example_array_concatenation.py: =================== Array concatenation =================== In this example, we demonstrate pyramid's convenient ``c`` function, which is, in essence, the same as R's. It's nothing more than a convenience function in the package, but one you should understand if you're contributing. .. raw:: html
.. GENERATED FROM PYTHON SOURCE LINES 15-33 .. code-block:: Python print(__doc__) # Author: Taylor Smith import pmdarima as pm import numpy as np # ############################################################################# # You can use the 'c' function to define an array from *args array1 = pm.c(1, 2, 3, 4, 5) # Or you can define an array from an existing iterable: array2 = pm.c([1, 2, 3, 4, 5]) assert np.array_equal(array1, array2) # You can even use 'c' to flatten arrays: array_flat = pm.c(1, 2, 3, [4, 5]) assert np.array_equal(array_flat, np.arange(5) + 1) .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.001 seconds) .. _sphx_glr_download_auto_examples_utils_example_array_concatenation.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: example_array_concatenation.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: example_array_concatenation.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: example_array_concatenation.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_