I have a 2D numpy array. Is there a way to create a view onto it that would include the first k rows and all columns?
The point is to avoid copying the underlying data (the array is so large that making partial copies is not feasible.)
|
|
|
Sure, just index it as you normally would. E.g. Edit: I commonly work with >10GB 3D arrays of uint8's, so I worry about this a lot... Numpy can be very efficient at memory management if you keep a few things in mind. Here are a few tips on avoiding making copies of arrays in memory: Use If you do want to make a copy with Additionally, many numpy functions take an As a second edit, here's a few more on tips on views vs. copies with numpy arrays: Unlike python lists, You'll often hear about "fancy indexing" of numpy arrays. Using a list (or integer array) as an index is "fancy indexing". It can be very useful, but copies the data. As an example of this: Even really crazy indexing like
Be careful with this, however... It's extremely powerful and useful, but you need to understand how the underlying data is stored in memory. If you have an array of floats, and view them as ints, (or vice versa) numpy will interpret the underlying bits of the array as ints. For example, this means that |
||||
|
|