MCPcopy Index your code
hub / github.com/numpy/numpy / rec_drop_fields

Function rec_drop_fields

numpy/lib/recfunctions.py:596–600  ·  view source on GitHub ↗

Returns a new numpy.recarray with fields in `drop_names` dropped.

(base, drop_names)

Source from the content-addressed store, hash-verified

594
595@array_function_dispatch(_rec_drop_fields_dispatcher)
596def rec_drop_fields(base, drop_names):
597 """
598 Returns a new numpy.recarray with fields in `drop_names` dropped.
599 """
600 return drop_fields(base, drop_names, usemask=False, asrecarray=True)
601
602
603def _rename_fields_dispatcher(base, namemapper):

Callers

nothing calls this directly

Calls 1

drop_fieldsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…