Created
January 5, 2023 04:53
-
-
Save cdeitrick/69c605b713dec45a105ef8d7efbbf5a5 to your computer and use it in GitHub Desktop.
Code Snippets for Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Size in memory of a numpy array | |
| array_size = array.size | |
| array_itemsize = array.itemsize | |
| array_total = array_size * array_itemsize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment