72967/how-to-save-numpy-array
Hi Guys,
I am new to the NumPy module. I have one array in NumPy. I want to save this array for future use. How can I do this?
Hi@akhtar,
You can use numpy.save() function to save your array. It stores the input array in a disk file with npy extension. I have attached one example below.
import numpy as np a = np.array([1,2,3,4,5]) np.save('outfile',a)
I hope this will help.
If you have matplotlib, you can do: import ...READ MORE
Slicing is basically extracting particular set of ...READ MORE
Hi. Refer to the below command: import pandas ...READ MORE
Irrespective of whether the dataframe has similar ...READ MORE
Good question, glad you brought this up. I ...READ MORE
Hi, it is pretty simple, to be ...READ MORE
The vstack function in numpy will stack ...READ MORE
Hey, @Sourav, We can solve this with the ...READ MORE
Hi@akhtar, You can use numpy.load() function to load ...READ MORE
Hi@akhtar, You can find one function called savefig ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.