argopy.ArgoIndex.query.profiler_type

argopy.ArgoIndex.query.profiler_type#

ArgoIndex.query.profiler_type(profiler_type: List[int], nrows=None, composed=False)#

Search index for profiler types

The list of valid types is given by IDs of Argo reference table 8.

Parameters:

profiler_type (str, list(str)) – List of profiler types to search for.

Return type:

ArgoIndex

Examples

from argopy import ArgoIndex
idx = ArgoIndex()

idx.query.profiler_type(845)
Listing 46 List valid types#
from argopy import ArgoNVSReferenceTables
valid_types = ArgoNVSReferenceTables().tbl(8)['altLabel']