
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
96 Views
To create a recarray from a list of records in text form, use the numpy.core.records.fromrecords() method in Python Numpy. The names is set using the "names" parameter. The field names, either specified as a comma-separated string in the form 'col1, col2, col3', or as a list or tuple of strings ... Read More

AmitDiwan
240 Views
To join a sequence of arrays, use the numpy.stack() method in Python Numpy. The function returns the stacked array has one more dimension than the input arrays. The axis parameter specifies the index of the new axis in the dimensions of the result. For example, if axis=0 it will be ... Read More

AmitDiwan
348 Views
Squeeze the Array shape using the numpy.squeeze() method. This removes axes of length one from an array over specific axis. The axis is set using the "axis" parameter. We have set axis 0 here.The function returns the input array, but with all or a subset of the dimensions of length ... Read More

AmitDiwan
165 Views
Squeeze the Array shape using the numpy.squeeze() method. This removes axes of length one from an array over specific axis. The axis is set using the "axis" parameter.The function returns the input array, but with all or a subset of the dimensions of length 1 removed. This is always a ... Read More

AmitDiwan
4K+ Views
Squeeze the Array shape using the numpy.squeeze() method in Python Numpy. This will remove axes of length one from an array. The function returns the input array, but with all or a subset of the dimensions of length 1 removed. This is always a itself or a view into the ... Read More

AmitDiwan
3K+ Views
To expand the shape of an array, use the numpy.expand_dims() method. Insert a new axis that will appear at the axis position in the expanded array shape. The function returns the View of the input array with the number of dimensions increased.NumPy offers comprehensive mathematical functions, random number generators, linear ... Read More

AmitDiwan
166 Views
To compute the bit-wise OR of two 2D arrays element-wise, use the numpy.bitwise_or() method in Python Numpy. Computes the bit-wise OR of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator |.The 1st and 2d parameter are the arrays, only integer and ... Read More

AmitDiwan
761 Views
To compute the bit-wise OR of two boolean arrays element-wise, use the numpy.bitwise_or() method in Python Numpy. Computes the bit-wise OR of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator |.The 1st and 2d parameter are the arrays, only integer and ... Read More

AmitDiwan
147 Views
To mask rows and/or columns of a 2D array that contain masked values, use the np.ma.mask_rowcols() method in Numpy. The function returns a modified version of the input array, masked depending on the value of the axis parameter.Mask whole rows and/or columns of a 2D array that contain masked values. ... Read More

AmitDiwan
287 Views
To mask rows and/or columns of a 2D array that contain masked values, use the np.ma.mask_rowcols() method in Numpy. The function returns a modified version of the input array, masked depending on the value of the axis parameterMask whole rows and/or columns of a 2D array that contain masked values. ... Read More