Seeing White* on a Map

This notebook demonstrates some of the data wrangling and mapping capabilities of the censusdis package. It does the following:

  1. Load metadata on the US Census redistricting data set from 2020

  2. Load data on total population and the population of various ractial groups for every county in the United States

  3. Determine the fraction of the population that is white

  4. Plot the results on a map


*With apologies to the Seeing White podcast for borrowing the name.

Basic imports

[1]:
# So we can run from within the censusdis project and find the packages we need.
import os
import sys

sys.path.append(
    os.path.join(os.path.abspath(os.path.join(os.path.curdir, os.path.pardir)))
)
[2]:
import censusdis.data as ced
import censusdis.maps as cdm
from censusdis.states import ALL_STATES_AND_DC

Setup

For more details on what we are setting up here, see the comments in this introductory notebook.

[3]:
CENSUS_API_KEY = None
[4]:
YEAR = 2020
DATASET = "dec/pl"
GROUP = "P2"

Fetch metadata

We will fetch the metadata on what fields are available and then select the ones that represent the population count of people who identify as white, possibly mixed with one or more other races and those who identify as white alone.

[5]:
leaves = ced.variables.group_leaves(DATASET, YEAR, GROUP)

df_all_variables = ced.variables.all_variables(DATASET, YEAR, GROUP)

df_all_variables
[5]:
YEAR DATASET GROUP VARIABLE LABEL SUGGESTED_WEIGHT VALUES
0 2020 dec/pl P2 P2_001N !!Total: NaN None
1 2020 dec/pl P2 P2_002N !!Total:!!Hispanic or Latino NaN None
2 2020 dec/pl P2 P2_003N !!Total:!!Not Hispanic or Latino: NaN None
3 2020 dec/pl P2 P2_004N !!Total:!!Not Hispanic or Latino:!!Population... NaN None
4 2020 dec/pl P2 P2_005N !!Total:!!Not Hispanic or Latino:!!Population... NaN None
... ... ... ... ... ... ... ...
68 2020 dec/pl P2 P2_069N !!Total:!!Not Hispanic or Latino:!!Population... NaN None
69 2020 dec/pl P2 P2_070N !!Total:!!Not Hispanic or Latino:!!Population... NaN None
70 2020 dec/pl P2 P2_071N !!Total:!!Not Hispanic or Latino:!!Population... NaN None
71 2020 dec/pl P2 P2_072N !!Total:!!Not Hispanic or Latino:!!Population... NaN None
72 2020 dec/pl P2 P2_073N !!Total:!!Not Hispanic or Latino:!!Population... NaN None

73 rows × 7 columns

[6]:
df_total_variables = df_all_variables[
    df_all_variables["LABEL"].str.endswith("!!Total:")
]
df_white_alone_variables = df_all_variables[
    df_all_variables["LABEL"].str.endswith("White alone")
]

total_variables = list(df_total_variables["VARIABLE"])
white_alone_variables = list(df_white_alone_variables["VARIABLE"])

Load data

Now that we know what fields we are interested in we can load data for those fields at the county level for all 50 states and DC. Since we are going to want to plot it, we add with_geometry=True so that we get back a gpd.GeoDataFrame with the geometry of every county instead of a plain pd.DataFrame.

[7]:
gdf_counties = ced.download(
    DATASET,
    YEAR,
    total_variables + white_alone_variables,
    state=ALL_STATES_AND_DC,
    county="*",
    api_key=CENSUS_API_KEY,
    with_geometry=True,
)
[8]:
gdf_counties.head()
[8]:
STATE COUNTY P2_001N P2_005N geometry
0 01 001 58805 41582 POLYGON ((-86.92120 32.65754, -86.92035 32.658...
1 01 003 231767 186495 POLYGON ((-88.02858 30.22676, -88.02399 30.230...
2 01 005 25223 11086 POLYGON ((-85.74803 31.61918, -85.74544 31.618...
3 01 007 22293 16442 POLYGON ((-87.42194 33.00338, -87.33177 33.005...
4 01 009 59134 49764 POLYGON ((-86.96336 33.85822, -86.95967 33.857...

Summarize the white population

The next step is to total up the people who identify as white, possibly with other races, and those who identify as white alone.

[9]:
gdf_counties["white_alone"] = gdf_counties[white_alone_variables].sum(axis=1)
[10]:
gdf_counties["pct_white_alone"] = 100.0 * (
    gdf_counties["white_alone"] / gdf_counties[total_variables[0]]
)
[11]:
gdf_counties[total_variables + ["white_alone", "pct_white_alone"]].head()
[11]:
P2_001N white_alone pct_white_alone
0 58805 41582 70.711674
1 231767 186495 80.466589
2 25223 11086 43.951949
3 22293 16442 73.754093
4 59134 49764 84.154632
[12]:
gdf_counties[["pct_white_alone"]].describe()
[12]:
pct_white_alone
count 3143.000000
mean 74.150915
std 19.804085
min 1.776396
25% 62.575904
50% 80.725998
75% 90.337848
max 97.404829

Load state shapefile

When we plot the data on a map, we also want to plot the boundaries of the states. The API we will use will download the shapefiles from the US Census and cache them in a local filesystem.

If you want to browse available files you can look at the US Census cartographic boundary page.

The specific zip file the code will download for us is the 2020 500,000:1 scale state boundary file `cb_2020_us_state_500k.zip <https://www2.census.gov/geo/tiger/GENZ2020/shp/cb_2020_us_state_500k.zip>`__.

[13]:
reader = cdm.ShapeReader(year=YEAR)
[14]:
gdf_state_bounds = reader.read_cb_shapefile("us", "state")
gdf_state_bounds = gdf_state_bounds[gdf_state_bounds["STATEFP"].isin(ALL_STATES_AND_DC)]

Plot on a map

This is a basic plot, that you can style as you wish. Note that we use cdm.plot_us and cdm.plot_us_boundary because they take care of moving Alaska and Hawaii to a location where they are easy to visualize. If we did not do this, they would appear in their actual geographic locations relatively far from the continental US and the Aleutian islands would be split at ±180° longitude.

[17]:
%%prun

import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = (14, 8)

col, name = "pct_white_alone", "White Alone"

ax = cdm.plot_us(
    gdf_counties,
    col,
    cmap="gray",
    legend=True,
    vmin=0.0,
    vmax=100.0,
)

ax = cdm.plot_us_boundary(gdf_state_bounds, edgecolor="black", linewidth=0.5, ax=ax)

ax.set_title(f"{name} Population as a Percent of County Population")

ax.tick_params(
    left=False,
    right=False,
    bottom=False,
    labelleft=False,
    labelbottom=False,
)

../_images/nb_Seeing_White_22_1.png
         3897445 function calls (3873517 primitive calls) in 1.978 seconds

   Ordered by: internal time

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        4    0.442    0.110    0.442    0.110 {method '_transform' of 'pyproj._transformer._Transformer' objects}
        2    0.208    0.104    0.208    0.104 {pyproj._transformer.from_crs}
        5    0.128    0.026    0.131    0.026 {method 'draw_path_collection' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
     1223    0.080    0.000    0.120    0.000 coords.py:52(xy)
     9275    0.052    0.000    0.068    0.000 cycler.py:364(by_key)
    42221    0.044    0.000    0.146    0.000 decorators.py:62(wrapped)
     4615    0.032    0.000    0.075    0.000 path.py:321(make_compound_path)
     6765    0.027    0.000    0.047    0.000 inspect.py:626(cleandoc)
     2992    0.026    0.000    0.026    0.000 __init__.py:101(check_in_list)
   513868    0.025    0.000    0.025    0.000 {method 'append' of 'array.array' objects}
    11962    0.023    0.000    0.023    0.000 predicates.py:140(is_empty)
      100    0.019    0.000    0.019    0.000 {built-in method shapely.lib.set_coordinates}
    96962    0.017    0.000    0.039    0.000 __init__.py:725(__getitem__)
      139    0.017    0.000    0.017    0.000 {built-in method marshal.loads}
     4615    0.017    0.000    0.443    0.000 plotting.py:100(_PolygonPatch)
     7419    0.016    0.000    0.016    0.000 {built-in method shapely.lib.get_coordinates}
224841/223528    0.015    0.000    0.022    0.000 {built-in method builtins.isinstance}
   257043    0.015    0.000    0.015    0.000 {method 'tolist' of 'numpy.ndarray' objects}
        2    0.015    0.007    0.016    0.008 {built-in method matplotlib._path.get_path_collection_extents}
    97279    0.015    0.000    0.021    0.000 __init__.py:674(_get)
     5838    0.014    0.000    0.014    0.000 _geometry.py:414(get_exterior_ring)
    24025    0.014    0.000    0.114    0.000 colors.py:265(to_rgba)
     9276    0.013    0.000    0.013    0.000 {method 'search' of 're.Pattern' objects}
     7417    0.013    0.000    0.013    0.000 predicates.py:41(has_z)
59550/57790    0.013    0.000    0.017    0.000 artist.py:319(stale)
     4627    0.012    0.000    0.215    0.000 patches.py:48(__init__)
     4279    0.012    0.000    0.012    0.000 _geometry.py:520(get_geometry)
      430    0.012    0.000    0.012    0.000 {built-in method builtins.dir}
    10814    0.011    0.000    0.059    0.000 path.py:99(__init__)
30778/30766    0.010    0.000    0.011    0.000 {built-in method numpy.asarray}
   101965    0.010    0.000    0.010    0.000 cycler.py:239(__iter__)
     4814    0.010    0.000    0.018    0.000 artist.py:180(__init__)
227428/222705    0.009    0.000    0.010    0.000 {built-in method builtins.len}
    10814    0.009    0.000    0.026    0.000 path.py:202(_update_values)
    10823    0.008    0.000    0.017    0.000 __init__.py:134(check_shape)
     4615    0.008    0.000    0.008    0.000 _geometry.py:124(get_coordinate_dimension)
     4615    0.007    0.000    0.007    0.000 _geometry.py:478(get_num_interior_rings)
       96    0.007    0.000    0.007    0.000 affinity.py:71(_affine_coords)
     9265    0.007    0.000    0.029    0.000 patches.py:317(_set_edgecolor)
    30784    0.007    0.000    0.023    0.000 re.py:289(_compile)
    95931    0.007    0.000    0.007    0.000 {method 'startswith' of 'str' objects}
    42221    0.007    0.000    0.010    0.000 decorators.py:64(<listcomp>)
  762/660    0.007    0.000    0.164    0.000 {built-in method builtins.__build_class__}
78843/78601    0.007    0.000    0.018    0.000 {built-in method builtins.getattr}
    97284    0.007    0.000    0.007    0.000 {function RcParams.__getitem__ at 0x28a3dcc10}
    24687    0.007    0.000    0.027    0.000 colors.py:213(_is_nth_color)
      213    0.006    0.000    0.021    0.000 artist.py:1521(get_setters)
    25052    0.006    0.000    0.020    0.000 re.py:188(match)
      240    0.006    0.000    0.006    0.000 {method 'astype' of 'numpy.ndarray' objects}
     3241    0.006    0.000    0.006    0.000 {built-in method numpy.array}
   137175    0.006    0.000    0.006    0.000 {method 'append' of 'list' objects}
9645/8836    0.006    0.000    0.019    0.000 {built-in method numpy.core._multiarray_umath.implement_array_function}
      572    0.006    0.000    0.006    0.000 {built-in method posix.stat}
     4658    0.006    0.000    0.006    0.000 polygon.py:149(__next__)
      694    0.006    0.000    0.020    0.000 geodataframe.py:1409(__getitem__)
     9265    0.006    0.000    0.104    0.000 patches.py:343(_set_facecolor)
    25104    0.006    0.000    0.006    0.000 {method 'match' of 're.Pattern' objects}
      213    0.005    0.000    0.010    0.000 artist.py:1457(<listcomp>)
    50569    0.005    0.000    0.005    0.000 {built-in method builtins.min}
        7    0.005    0.001    0.005    0.001 {built-in method _imp.create_dynamic}
     3200    0.005    0.000    0.005    0.000 _geometry.py:54(get_type_id)
     4050    0.005    0.000    0.070    0.000 artist.py:1474(get_valid_values)
     4389    0.005    0.000    0.005    0.000 {method 'reduce' of 'numpy.ufunc' objects}
      213    0.005    0.000    0.032    0.000 artist.py:1446(get_aliases)
    16713    0.004    0.000    0.006    0.000 enum.py:358(__call__)
     7319    0.004    0.000    0.045    0.000 base.py:203(coords)
    12152    0.004    0.000    0.008    0.000 {built-in method builtins.any}
    72514    0.004    0.000    0.004    0.000 {method 'lstrip' of 'str' objects}
    59599    0.004    0.000    0.004    0.000 artist.py:851(get_animated)
    11961    0.004    0.000    0.045    0.000 base.py:609(is_empty)
     4627    0.004    0.000    0.010    0.000 patches.py:399(set_linestyle)
     6358    0.004    0.000    0.006    0.000 inspect.py:2498(__init__)
     8858    0.003    0.000    0.003    0.000 {method 'split' of 'str' objects}
    66433    0.003    0.000    0.003    0.000 {method 'items' of 'dict' objects}
    32468    0.003    0.000    0.003    0.000 __init__.py:154(<genexpr>)
    10456    0.003    0.000    0.005    0.000 transforms.py:1764(__init__)
     4638    0.003    0.000    0.009    0.000 patches.py:384(set_linewidth)
      139    0.003    0.000    0.003    0.000 {built-in method io.open_code}
       24    0.003    0.000    0.005    0.000 enum.py:179(__new__)
12837/12824    0.003    0.000    0.004    0.000 {method 'join' of 'str' objects}
      920    0.003    0.000    0.004    0.000 inspect.py:2781(__init__)
    42221    0.003    0.000    0.003    0.000 decorators.py:66(<listcomp>)
  324/168    0.003    0.000    0.007    0.000 sre_parse.py:493(_parse)
    10983    0.003    0.000    0.004    0.000 __init__.py:1327(_to_unmasked_float_array)
    42221    0.003    0.000    0.003    0.000 decorators.py:73(<listcomp>)
     4627    0.003    0.000    0.083    0.000 patches.py:434(set_fill)
    23472    0.003    0.000    0.005    0.000 {built-in method builtins.hasattr}
     1120    0.003    0.000    0.018    0.000 series.py:342(__init__)
    30957    0.003    0.000    0.003    0.000 path.py:211(vertices)
      646    0.003    0.000    0.007    0.000 inspect.py:2152(_signature_from_function)
     9436    0.002    0.000    0.006    0.000 lines.py:63(_scale_dashes)
     7323    0.002    0.000    0.022    0.000 coordinates.py:93(get_coordinates)
     4860    0.002    0.000    0.002    0.000 __init__.py:190(__init__)
        4    0.002    0.001    0.034    0.009 plotting.py:29(_flatten_multi_geoms)
     6764    0.002    0.000    0.043    0.000 inspect.py:607(getdoc)
     4615    0.002    0.000    0.219    0.000 patches.py:943(__init__)
      112    0.002    0.000    0.085    0.001 artist.py:1602(pprint_setters)
    35816    0.002    0.000    0.002    0.000 {method 'get' of 'dict' objects}
4796/4782    0.002    0.000    0.248    0.000 deprecation.py:443(wrapper)
        1    0.002    0.002    0.465    0.465 plotting.py:175(<listcomp>)
     7415    0.002    0.000    0.024    0.000 base.py:603(has_z)
     6776    0.002    0.000    0.002    0.000 {method 'expandtabs' of 'str' objects}
     3009    0.002    0.000    0.006    0.000 fromnumeric.py:69(_wrapreduction)
     4050    0.002    0.000    0.004    0.000 artist.py:1559(aliased_name)
     4636    0.002    0.000    0.005    0.000 patches.py:456(set_capstyle)
    11211    0.002    0.000    0.002    0.000 transforms.py:110(__init__)
     7658    0.002    0.000    0.002    0.000 {built-in method __new__ of type object at 0x103b67288}
     4627    0.002    0.000    0.004    0.000 patches.py:496(set_hatch)
        4    0.002    0.000    0.002    0.000 crs.py:183(__init__)
     4615    0.002    0.000    0.035    0.000 polygon.py:248(interiors)
     4682    0.002    0.000    0.011    0.000 patches.py:262(get_transform)
       30    0.002    0.000    0.012    0.000 __init__.py:831(_rc_params_in_file)
     4909    0.002    0.000    0.006    0.000 <__array_function__ internals>:177(concatenate)
5233/3630    0.002    0.000    0.002    0.000 {built-in method _abc._abc_subclasscheck}
     4627    0.002    0.000    0.004    0.000 patches.py:476(set_joinstyle)
     5838    0.002    0.000    0.025    0.000 polygon.py:244(exterior)
    16711    0.002    0.000    0.002    0.000 enum.py:670(__new__)
        1    0.002    0.002    0.011    0.011 collections.py:1824(<listcomp>)
     4628    0.002    0.000    0.004    0.000 patches.py:304(set_antialiased)
  2715/45    0.002    0.000    0.003    0.000 copy.py:128(deepcopy)
  737/722    0.002    0.000    0.033    0.000 artist.py:1180(_update_props)
  732/666    0.002    0.000    0.010    0.000 inspect.py:2246(_signature_from_callable)
     4712    0.001    0.000    0.002    0.000 lines.py:33(_get_dash_pattern)
     4615    0.001    0.000    0.017    0.000 polygon.py:140(__init__)
     5304    0.001    0.000    0.021    0.000 re.py:198(search)
  766/167    0.001    0.000    0.003    0.000 sre_compile.py:71(_compile)
     2312    0.001    0.000    0.004    0.000 generic.py:5904(__setattr__)
     9351    0.001    0.000    0.001    0.000 cycler.py:165(keys)
       43    0.001    0.000    0.001    0.000 {method 'set_text' of 'matplotlib.ft2font.FT2Font' objects}
     9275    0.001    0.000    0.001    0.000 cycler.py:386(<dictcomp>)
      238    0.001    0.000    0.002    0.000 {pandas._libs.ops.scalar_compare}
        2    0.001    0.001    0.684    0.342 geoseries.py:1047(to_crs)
     4615    0.001    0.000    0.016    0.000 polygon.py:144(__iter__)
      694    0.001    0.000    0.014    0.000 frame.py:3758(__getitem__)
     1231    0.001    0.000    0.002    0.000 generic.py:259(__init__)
    146/1    0.001    0.000    1.979    1.979 {built-in method builtins.exec}
     4388    0.001    0.000    0.001    0.000 {built-in method builtins.sorted}
     1719    0.001    0.000    0.003    0.000 copy.py:66(copy)
     6019    0.001    0.000    0.001    0.000 {method 'format' of 'str' objects}
     4801    0.001    0.000    0.003    0.000 artist.py:451(get_transform)
     4631    0.001    0.000    0.001    0.000 hatch.py:182(_validate_hatch_pattern)
     4615    0.001    0.000    0.015    0.000 polygon.py:157(__len__)
     2566    0.001    0.000    0.006    0.000 fromnumeric.py:2432(all)
        1    0.001    0.001    0.518    0.518 plotting.py:126(_plot_polygon_collection)
     7109    0.001    0.000    0.003    0.000 generic.py:45(_instancecheck)
     4638    0.001    0.000    0.016    0.000 patches.py:332(set_edgecolor)
     4615    0.001    0.000    0.015    0.000 base.py:108(_ndim)
      648    0.001    0.000    0.002    0.000 __init__.py:1726(normalize_kwargs)
      139    0.001    0.000    0.001    0.000 {method 'read' of '_io.BufferedReader' objects}
      100    0.001    0.000    0.004    0.000 artist.py:170(<listcomp>)
     4615    0.001    0.000    0.007    0.000 plotting.py:121(<listcomp>)
    21541    0.001    0.000    0.001    0.000 path.py:225(codes)
     4615    0.001    0.000    0.002    0.000 path.py:330(<listcomp>)
     4821    0.001    0.000    0.001    0.000 {built-in method numpy.empty}
     3405    0.001    0.000    0.004    0.000 array.py:361(__getitem__)
     6051    0.001    0.000    0.003    0.000 {built-in method _abc._abc_instancecheck}
       16    0.001    0.000    0.001    0.000 {built-in method posix.listdir}
     4638    0.001    0.000    0.041    0.000 patches.py:350(set_facecolor)
     1223    0.001    0.000    0.133    0.000 maps.py:450(_wrap_poly)
1372/1370    0.001    0.000    0.002    0.000 __init__.py:291(process)
     4279    0.001    0.000    0.019    0.000 base.py:954(_get_geom_item)
    31162    0.001    0.000    0.001    0.000 {built-in method builtins.callable}
      511    0.001    0.000    0.002    0.000 generic.py:5844(__finalize__)
      188    0.001    0.000    0.007    0.000 <frozen importlib._bootstrap_external>:1505(find_spec)
     2654    0.001    0.000    0.002    0.000 __init__.py:411(_strip_comment)
     2566    0.001    0.000    0.008    0.000 <__array_function__ internals>:177(all)
     7109    0.001    0.000    0.001    0.000 generic.py:40(_check)
       71    0.001    0.000    0.006    0.000 text.py:363(_get_layout)
      505    0.001    0.000    0.002    0.000 enum.py:88(__setitem__)
     7319    0.001    0.000    0.001    0.000 coords.py:20(__init__)
     1025    0.001    0.000    0.002    0.000 _ufunc_config.py:33(seterr)
      496    0.001    0.000    0.012    0.000 geoseries.py:154(__init__)
       36    0.001    0.000    0.002    0.000 {built-in method builtins.eval}
      383    0.001    0.000    0.004    0.000 construction.py:493(sanitize_array)
     4843    0.001    0.000    0.002    0.000 transforms.py:1335(__add__)
     1598    0.001    0.000    0.001    0.000 __init__.py:1994(_setattr_cm)
    16787    0.001    0.000    0.001    0.000 path.py:256(should_simplify)
        1    0.001    0.001    0.001    0.001 constructive.py:51(boundary)
        1    0.001    0.001    0.003    0.003 font_manager.py:1360(_findfont_cached)
      972    0.001    0.000    0.003    0.000 copy.py:258(_reconstruct)
     4644    0.001    0.000    0.003    0.000 patches.py:273(get_patch_transform)
      102    0.001    0.000    0.002    0.000 concat.py:278(_get_mgr_concatenation_plan)
     5454    0.001    0.000    0.001    0.000 sre_parse.py:164(__getitem__)
      111    0.001    0.000    0.042    0.000 geodataframe.py:133(__init__)
     1272    0.001    0.000    0.001    0.000 {method 'copy' of 'numpy.ndarray' objects}
     2874    0.001    0.000    0.001    0.000 {pandas._libs.lib.is_list_like}
      604    0.001    0.000    0.001    0.000 font_manager.py:631(__hash__)
       16    0.001    0.000    0.001    0.000 {method 'draw_path' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
      102    0.001    0.000    0.001    0.000 {method 'to_wkt' of 'pyproj._crs.Base' objects}
     4507    0.001    0.000    0.021    0.000 base.py:957(__iter__)
     3685    0.001    0.000    0.001    0.000 sre_parse.py:233(__next)
     1025    0.001    0.000    0.001    0.000 _ufunc_config.py:132(geterr)
     2379    0.001    0.000    0.001    0.000 managers.py:2058(dtype)
  906/311    0.001    0.000    0.001    0.000 sre_parse.py:174(getwidth)
     3194    0.001    0.000    0.010    0.000 base.py:302(geom_type)
      146    0.001    0.000    0.012    0.000 <frozen importlib._bootstrap>:901(_find_spec)
        4    0.001    0.000    0.002    0.000 {pandas._libs.lib.map_infer_mask}
       81    0.001    0.000    0.006    0.000 lines.py:272(__init__)
       54    0.001    0.000    0.005    0.000 ticker.py:2074(_raw_ticks)
    16787    0.001    0.000    0.001    0.000 path.py:244(simplify_threshold)
2113/2011    0.001    0.000    0.003    0.000 {built-in method builtins.all}
     1515    0.001    0.000    0.001    0.000 base.py:5254(__contains__)
     1473    0.001    0.000    0.002    0.000 base.py:135(crs)
      188    0.001    0.000    0.001    0.000 colors.py:1101(<listcomp>)
     3009    0.001    0.000    0.001    0.000 fromnumeric.py:70(<dictcomp>)
     1131    0.001    0.000    0.002    0.000 generic.py:5888(__getattr__)
     6051    0.001    0.000    0.004    0.000 abc.py:117(__instancecheck__)
       79    0.001    0.000    0.001    0.000 core.py:3601(__init__)
      139    0.001    0.000    0.025    0.000 <frozen importlib._bootstrap_external>:916(get_code)
     1019    0.001    0.000    0.001    0.000 contextlib.py:86(__init__)
       28    0.001    0.000    0.001    0.000 util.py:182(_collapse_string_to_ranges)
       23    0.001    0.000    0.001    0.000 creation.py:404(multipolygons)
     1175    0.001    0.000    0.002    0.000 series.py:661(name)
        1    0.001    0.001    0.010    0.010 plotting.py:233(<listcomp>)
     4865    0.001    0.000    0.001    0.000 artist.py:300(axes)
      648    0.001    0.000    0.001    0.000 __init__.py:1765(<dictcomp>)
      417    0.001    0.000    0.001    0.000 functools.py:35(update_wrapper)
     5507    0.001    0.000    0.001    0.000 {method 'group' of 're.Match' objects}
       32    0.001    0.000    0.001    0.000 {built-in method io.open}
      388    0.001    0.000    0.001    0.000 font_manager.py:1140(score_stretch)
     4857    0.001    0.000    0.001    0.000 transforms.py:2503(composite_transform_factory)
     8852    0.001    0.000    0.001    0.000 {method 'pop' of 'list' objects}
        4    0.001    0.000    0.005    0.001 collections.py:1418(<listcomp>)
      237    0.001    0.000    0.001    0.000 managers.py:1129(iget)
6608/6141    0.001    0.000    0.001    0.000 {built-in method builtins.hash}
     2372    0.001    0.000    0.001    0.000 series.py:596(dtype)
     3196    0.001    0.000    0.004    0.000 base.py:415(__iter__)
     1655    0.001    0.000    0.001    0.000 common.py:1591(_is_dtype_type)
       33    0.001    0.000    0.055    0.002 axis.py:1257(_update_ticks)
     3468    0.001    0.000    0.001    0.000 base.py:925(__len__)
      865    0.001    0.000    0.002    0.000 series.py:565(_set_axis)
      429    0.001    0.000    0.001    0.000 transforms.py:754(__init__)
     1959    0.001    0.000    0.001    0.000 series.py:611(name)
        1    0.001    0.001    0.496    0.496 maps.py:780(plot_us_boundary)
     3125    0.001    0.000    0.001    0.000 sre_parse.py:254(get)
      388    0.001    0.000    0.001    0.000 font_manager.py:1082(score_family)
2425/2259    0.001    0.000    0.001    0.000 {method 'update' of 'dict' objects}
     5311    0.001    0.000    0.001    0.000 {method 'find' of 'str' objects}
      348    0.001    0.000    0.012    0.000 geodataframe.py:1518(_geodataframe_constructor_sliced)
       54    0.001    0.000    0.002    0.000 ticker.py:778(_set_format)
      278    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:361(cache_from_source)
       18    0.000    0.000    0.001    0.000 __init__.py:345(namedtuple)
      729    0.000    0.000    0.001    0.000 inspect.py:494(unwrap)
      671    0.000    0.000    0.001    0.000 __init__.py:880(get_siblings)
     6096    0.000    0.000    0.000    0.000 coords.py:49(__array__)
     6388    0.000    0.000    0.001    0.000 object_array.py:134(<lambda>)
5233/3630    0.000    0.000    0.002    0.000 abc.py:121(__subclasscheck__)
     4008    0.000    0.000    0.001    0.000 {built-in method builtins.setattr}
       63    0.000    0.000    0.001    0.000 colors.py:1099(<dictcomp>)
     2867    0.000    0.000    0.001    0.000 inference.py:325(is_hashable)
        1    0.000    0.000    0.647    0.647 plotting.py:486(plot_dataframe)
     1835    0.000    0.000    0.001    0.000 blocks.py:2370(external_values)
     1835    0.000    0.000    0.002    0.000 managers.py:2065(external_values)
     3102    0.000    0.000    0.001    0.000 inspect.py:2830(<genexpr>)
      230    0.000    0.000    0.002    0.000 managers.py:1183(iset)
      869    0.000    0.000    0.001    0.000 base.py:7372(maybe_extract_name)
        1    0.000    0.000    0.000    0.000 backend_agg.py:78(__init__)
     4909    0.000    0.000    0.000    0.000 multiarray.py:152(concatenate)
        1    0.000    0.000    0.001    0.001 decoder.py:343(raw_decode)
      510    0.000    0.000    0.001    0.000 config.py:116(_get_single_key)
3100/3000    0.000    0.000    0.003    0.000 {built-in method builtins.next}
      977    0.000    0.000    0.007    0.000 __init__.py:695(__setitem__)
      113    0.000    0.000    0.002    0.000 base.py:6941(_cmp_method)
     1073    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:121(_path_join)
      171    0.000    0.000    0.000    0.000 {method '__exit__' of '_io._IOBase' objects}
 3344/795    0.000    0.000    0.000    0.000 __init__.py:362(recursive_subclasses)
      694    0.000    0.000    0.011    0.000 frame.py:4274(_get_item_cache)
      464    0.000    0.000    0.000    0.000 {method 'copy' of 'dict' objects}
     6656    0.000    0.000    0.000    0.000 {method 'isidentifier' of 'str' objects}
       23    0.000    0.000    0.010    0.000 multipolygon.py:49(__new__)
      938    0.000    0.000    0.001    0.000 common.py:162(is_object_dtype)
      443    0.000    0.000    0.001    0.000 transforms.py:194(set_children)
        2    0.000    0.000    0.000    0.000 {method 'clear' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
        2    0.000    0.000    0.473    0.237 _vectorized.py:1098(transform)
      230    0.000    0.000    0.011    0.000 frame.py:3955(__setitem__)
      539    0.000    0.000    0.000    0.000 enum.py:462(__setattr__)
      102    0.000    0.000    0.001    0.000 {method 'get_slice' of 'pandas._libs.internals.BlockManager' objects}
      228    0.000    0.000    0.000    0.000 _geometry.py:665(get_num_geometries)
     8465    0.000    0.000    0.000    0.000 inspect.py:2548(name)
    153/3    0.000    0.000    0.259    0.086 <frozen importlib._bootstrap>:1002(_find_and_load)
    139/4    0.000    0.000    0.258    0.064 <frozen importlib._bootstrap_external>:844(exec_module)
        1    0.000    0.000    0.000    0.000 {method 'readlines' of '_io._IOBase' objects}
     1073    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:123(<listcomp>)
     2714    0.000    0.000    0.000    0.000 util.py:185(is_consecutive)
  320/167    0.000    0.000    0.007    0.000 sre_parse.py:435(_parse_sub)
        2    0.000    0.000    0.683    0.341 array.py:692(to_crs)
       27    0.000    0.000    0.012    0.000 axis.py:58(__init__)
    147/3    0.000    0.000    0.259    0.086 <frozen importlib._bootstrap>:967(_find_and_load_unlocked)
      513    0.000    0.000    0.001    0.000 blocks.py:2120(get_block_type)
       92    0.000    0.000    0.005    0.000 __init__.py:1368(_preprocess_data)
       23    0.000    0.000    0.008    0.000 multipolygon.py:58(<listcomp>)
     1018    0.000    0.000    0.001    0.000 artist.py:103(_stale_axes_callback)
      230    0.000    0.000    0.021    0.000 geodataframe.py:1430(__setitem__)
      267    0.000    0.000    0.000    0.000 {method 'clear' of 'dict' objects}
     4531    0.000    0.000    0.000    0.000 artist.py:1567(<genexpr>)
      230    0.000    0.000    0.005    0.000 frame.py:4892(_sanitize_column)
      225    0.000    0.000    0.000    0.000 core.py:455(__init__)
 1019/994    0.000    0.000    0.002    0.000 contextlib.py:123(__exit__)
     1514    0.000    0.000    0.001    0.000 array.py:957(ndim)
     1709    0.000    0.000    0.001    0.000 function_base.py:346(iterable)
     4615    0.000    0.000    0.000    0.000 patches.py:955(get_path)
     1835    0.000    0.000    0.002    0.000 series.py:666(values)
      119    0.000    0.000    0.024    0.000 geodataframe.py:244(set_geometry)
   180/45    0.000    0.000    0.003    0.000 copy.py:226(_deepcopy_dict)
       30    0.000    0.000    0.000    0.000 {built-in method builtins.compile}
      125    0.000    0.000    0.009    0.000 series.py:6233(_cmp_method)
     1835    0.000    0.000    0.001    0.000 blocks.py:196(external_values)
     1352    0.000    0.000    0.002    0.000 artist.py:417(pchanged)
       96    0.000    0.000    0.006    0.000 text.py:738(draw)
      486    0.000    0.000    0.001    0.000 base.py:5304(__getitem__)
     2020    0.000    0.000    0.001    0.000 array.py:953(shape)
  645/378    0.000    0.000    0.000    0.000 transforms.py:167(_invalidate_internal)
      100    0.000    0.000    0.126    0.001 artist.py:159(_update_set_signature_and_docstring)
      167    0.000    0.000    0.013    0.000 sre_compile.py:759(compile)
      208    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap>:166(_get_module_lock)
     1231    0.000    0.000    0.000    0.000 flags.py:49(__init__)
   273/11    0.000    0.000    0.002    0.000 core.py:776(_parseNoCache)
     1177    0.000    0.000    0.001    0.000 common.py:1725(validate_all_hashable)
      172    0.000    0.000    0.001    0.000 colors.py:307(_to_rgba_no_colorcycle)
      882    0.000    0.000    0.000    0.000 {method '__reduce_ex__' of 'object' objects}
      167    0.000    0.000    0.001    0.000 sre_compile.py:536(_compile_info)
       10    0.000    0.000    0.000    0.000 {built-in method posix.getcwd}
      102    0.000    0.000    0.002    0.000 lines.py:729(draw)
     2354    0.000    0.000    0.001    0.000 common.py:1744(<genexpr>)
      222    0.000    0.000    0.001    0.000 shape_base.py:612(column_stack)
    146/4    0.000    0.000    0.258    0.064 <frozen importlib._bootstrap>:659(_load_unlocked)
    293/2    0.000    0.000    0.209    0.105 artist.py:54(draw_wrapper)
       23    0.000    0.000    0.137    0.006 maps.py:479(<listcomp>)
      180    0.000    0.000    0.005    0.000 markers.py:327(_set_marker)
      431    0.000    0.000    0.001    0.000 transforms.py:1881(__init__)
      146    0.000    0.000    0.002    0.000 <frozen importlib._bootstrap>:486(_init_module_attrs)
      237    0.000    0.000    0.011    0.000 frame.py:3703(_ixs)
      195    0.000    0.000    0.002    0.000 font_manager.py:588(__init__)
     1298    0.000    0.000    0.002    0.000 base.py:13(is_geometry_type)
     6396    0.000    0.000    0.000    0.000 {built-in method builtins.id}
      510    0.000    0.000    0.001    0.000 lines.py:1269(set_xdata)
      303    0.000    0.000    0.001    0.000 _base.py:844(<dictcomp>)
 1019/994    0.000    0.000    0.002    0.000 contextlib.py:114(__enter__)
      125    0.000    0.000    0.003    0.000 array_ops.py:231(comparison_op)
        8    0.000    0.000    0.000    0.000 {built-in method pandas._libs.missing.isnaobj}
       12    0.000    0.000    0.246    0.020 __init__.py:1(<module>)
      401    0.000    0.000    0.001    0.000 __init__.py:65(check_isinstance)
      116    0.000    0.000    0.004    0.000 text.py:185(_reset_visual_defaults)
      344    0.000    0.000    0.001    0.000 inspect.py:545(_finddoc)
       50    0.000    0.000    0.001    0.000 lines.py:654(recache)
      280    0.000    0.000    0.001    0.000 blocks.py:2172(new_block)
     4764    0.000    0.000    0.000    0.000 {built-in method builtins.issubclass}
      460    0.000    0.000    0.005    0.000 geodataframe.py:40(_ensure_geometry)
      101    0.000    0.000    0.001    0.000 deprecation.py:128(deprecate)
     2009    0.000    0.000    0.000    0.000 sre_parse.py:172(append)
      865    0.000    0.000    0.001    0.000 base.py:58(_validate_set_axis)
  147/146    0.000    0.000    0.010    0.000 <frozen importlib._bootstrap_external>:1374(_get_spec)
      450    0.000    0.000    0.001    0.000 font_manager.py:922(_json_decode)
      192    0.000    0.000    0.000    0.000 {method 'round' of 'numpy.ndarray' objects}
      230    0.000    0.000    0.010    0.000 frame.py:4164(_set_item)
     7072    0.000    0.000    0.000    0.000 inspect.py:2560(kind)
     1019    0.000    0.000    0.001    0.000 contextlib.py:261(helper)
        1    0.000    0.000    0.000    0.000 helpers.py:692(<dictcomp>)
     5388    0.000    0.000    0.000    0.000 {method 'strip' of 'str' objects}
      189    0.000    0.000    0.000    0.000 transforms.py:2902(_interval_contains_close)
      704    0.000    0.000    0.000    0.000 indexing.py:2656(check_deprecated_indexers)
      865    0.000    0.000    0.001    0.000 construction.py:861(is_empty_data)
      246    0.000    0.000    0.013    0.000 common.py:57(new_method)
      237    0.000    0.000    0.009    0.000 frame.py:4257(_box_col_values)
      132    0.000    0.000    0.015    0.000 _docstring.py:38(__call__)
      100    0.000    0.000    0.003    0.000 deprecation.py:416(make_keyword_only)
      408    0.000    0.000    0.001    0.000 concat.py:415(is_na)
  179/152    0.000    0.000    0.001    0.000 transforms.py:2436(get_affine)
     3296    0.000    0.000    0.000    0.000 array.py:107(_geom_to_shapely)
      230    0.000    0.000    0.004    0.000 frame.py:4139(_set_item_mgr)
      306    0.000    0.000    0.000    0.000 font_manager.py:807(set_size)
       67    0.000    0.000    0.003    0.000 axis.py:351(_apply_params)
     4656    0.000    0.000    0.000    0.000 {method 'rstrip' of 'str' objects}
      116    0.000    0.000    0.004    0.000 series.py:4773(_reduce)
  578/563    0.000    0.000    0.032    0.000 artist.py:1227(set)
      527    0.000    0.000    0.000    0.000 managers.py:1891(__init__)
      230    0.000    0.000    0.003    0.000 frame.py:4132(_iset_item_mgr)
       37    0.000    0.000    0.000    0.000 sre_compile.py:276(_optimize_charset)
      366    0.000    0.000    0.001    0.000 array.py:272(__init__)
      462    0.000    0.000    0.001    0.000 lines.py:1290(set_ydata)
      213    0.000    0.000    0.032    0.000 artist.py:1426(__init__)
      519    0.000    0.000    0.000    0.000 blocks.py:2091(maybe_coerce_values)
      929    0.000    0.000    0.005    0.000 artist.py:1546(is_alias)
        1    0.000    0.000    1.224    1.224 maps.py:711(plot_us)
      429    0.000    0.000    0.005    0.000 artist.py:1540(number_of_parameters)
      111    0.000    0.000    0.060    0.001 geodataframe.py:26(_geodataframe_constructor_with_fallback)
       61    0.000    0.000    0.006    0.000 text.py:918(get_window_extent)
      344    0.000    0.000    0.001    0.000 inspect.py:535(_findclass)
       23    0.000    0.000    0.000    0.000 {method 'draw_markers' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
      263    0.000    0.000    0.001    0.000 construction.py:744(_try_cast)
       54    0.000    0.000    0.001    0.000 ticker.py:744(_set_order_of_magnitude)
     1014    0.000    0.000    0.000    0.000 config.py:611(_get_deprecated_option)
       76    0.000    0.000    0.000    0.000 transforms.py:2822(nonsingular)
      167    0.000    0.000    0.008    0.000 sre_parse.py:937(parse)
      472    0.000    0.000    0.002    0.000 fromnumeric.py:51(_wrapfunc)
        1    0.000    0.000    0.142    0.142 plotting.py:316(plot_series)
      111    0.000    0.000    0.003    0.000 nanops.py:83(_f)
      511    0.000    0.000    0.001    0.000 _ufunc_config.py:435(__exit__)
      139    0.000    0.000    0.005    0.000 <frozen importlib._bootstrap_external>:1036(get_data)
      208    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:112(release)
      238    0.000    0.000    0.002    0.000 array_ops.py:60(comp_method_OBJECT_ARRAY)
      409    0.000    0.000    0.002    0.000 core.py:499(copy)
       38    0.000    0.000    0.000    0.000 function_base.py:23(linspace)
      506    0.000    0.000    0.002    0.000 config.py:134(_get_option)
      116    0.000    0.000    0.001    0.000 nanops.py:261(_get_values)
      865    0.000    0.000    0.001    0.000 managers.py:228(set_axis)
      208    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:87(acquire)
   300/86    0.000    0.000    0.229    0.003 <frozen importlib._bootstrap>:1033(_handle_fromlist)
   256/18    0.000    0.000    0.001    0.000 ast.py:409(generic_visit)
      799    0.000    0.000    0.000    0.000 {built-in method builtins.max}
     2566    0.000    0.000    0.000    0.000 fromnumeric.py:2427(_all_dispatcher)
     1337    0.000    0.000    0.000    0.000 {built-in method numpy.asanyarray}
       54    0.000    0.000    0.001    0.000 ticker.py:705(_compute_offset)
     1397    0.000    0.000    0.000    0.000 common.py:1556(get_dtype)
      511    0.000    0.000    0.001    0.000 _ufunc_config.py:430(__enter__)
  578/563    0.000    0.000    0.033    0.000 artist.py:147(<lambda>)
        1    0.000    0.000    0.000    0.000 font_manager.py:1458(_get_font)
      467    0.000    0.000    0.000    0.000 base.py:3754(get_loc)
      510    0.000    0.000    0.000    0.000 config.py:597(_get_root)
     1699    0.000    0.000    0.000    0.000 inspect.py:159(isfunction)
     3370    0.000    0.000    0.000    0.000 artist.py:295(axes)
      409    0.000    0.000    0.002    0.000 rcsetup.py:307(validate_color)
      278    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:127(_path_split)
      206    0.000    0.000    0.001    0.000 fromnumeric.py:38(_wrapit)
      753    0.000    0.000    0.001    0.000 construction.py:399(extract_array)
       33    0.000    0.000    0.001    0.000 numeric.py:2359(within_tol)
     1803    0.000    0.000    0.000    0.000 sre_parse.py:160(__len__)
     1025    0.000    0.000    0.000    0.000 {built-in method numpy.seterrobj}
      111    0.000    0.000    0.000    0.000 managers.py:272(<listcomp>)
      230    0.000    0.000    0.001    0.000 managers.py:1339(_iset_single)
      339    0.000    0.000    0.001    0.000 base.py:5464(equals)
      199    0.000    0.000    0.001    0.000 transforms.py:2347(__init__)
      662    0.000    0.000    0.003    0.000 colors.py:218(is_color_like)
        6    0.000    0.000    0.165    0.028 {pandas._libs.lib.map_infer}
       55    0.000    0.000    0.000    0.000 pathlib.py:64(parse_parts)
      274    0.000    0.000    0.002    0.000 managers.py:1934(from_array)
      364    0.000    0.000    0.000    0.000 common.py:1751(pandas_dtype)
     2122    0.000    0.000    0.000    0.000 array.py:949(size)
     1289    0.000    0.000    0.000    0.000 __init__.py:654(_set)
      666    0.000    0.000    0.011    0.000 inspect.py:3111(signature)
      518    0.000    0.000    0.000    0.000 {method 'replace' of 'str' objects}
     2046    0.000    0.000    0.000    0.000 {built-in method builtins.iter}
      666    0.000    0.000    0.010    0.000 inspect.py:2859(from_callable)
      675    0.000    0.000    0.000    0.000 __init__.py:831(clean)
      388    0.000    0.000    0.001    0.000 font_manager.py:1158(score_weight)
      109    0.000    0.000    0.000    0.000 transforms.py:1978(rotate)
        4    0.000    0.000    0.000    0.000 {built-in method shapely.lib.count_coordinates}
      146    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:696(spec_from_file_location)
      154    0.000    0.000    0.000    0.000 transforms.py:2046(scale)
      505    0.000    0.000    0.000    0.000 enum.py:44(_is_private)
     4615    0.000    0.000    0.000    0.000 transforms.py:2138(transform_path)
      284    0.000    0.000    0.000    0.000 common.py:1278(is_bool_dtype)
  328/326    0.000    0.000    0.001    0.000 transforms.py:1843(transform_affine)
      133    0.000    0.000    0.005    0.000 series.py:3194(_construct_result)
      315    0.000    0.000    0.001    0.000 markers.py:277(_recache)
  122/121    0.000    0.000    0.001    0.000 transforms.py:1772(__eq__)
       33    0.000    0.000    0.005    0.000 axis.py:1486(get_minorticklocs)
      673    0.000    0.000    0.000    0.000 {method 'reshape' of 'numpy.ndarray' objects}
      112    0.000    0.000    0.099    0.001 artist.py:1841(kwdoc)
       24    0.000    0.000    0.000    0.000 enum.py:221(<setcomp>)
     1079    0.000    0.000    0.000    0.000 sre_parse.py:286(tell)
      128    0.000    0.000    0.000    0.000 _methods.py:93(_clip_dep_is_scalar_nan)
     1143    0.000    0.000    0.000    0.000 base.py:7277(ensure_index)
      234    0.000    0.000    0.001    0.000 base.py:5363(_can_hold_identifiers_and_holds_name)
     1347    0.000    0.000    0.000    0.000 common.py:148(<lambda>)
     2149    0.000    0.000    0.000    0.000 array.py:322(crs)
       62    0.000    0.000    0.001    0.000 typing.py:738(__init__)
       71    0.000    0.000    0.001    0.000 backend_bases.py:760(__init__)
      274    0.000    0.000    0.000    0.000 results.py:136(__new__)
      303    0.000    0.000    0.002    0.000 _base.py:841(_unstale_viewLim)
      430    0.000    0.000    0.001    0.000 common.py:585(is_dtype_equal)
      102    0.000    0.000    0.057    0.001 ops.py:1351(_chop)
     1829    0.000    0.000    0.000    0.000 {method 'setdefault' of 'dict' objects}
     1386    0.000    0.000    0.000    0.000 sre_parse.py:249(match)
      233    0.000    0.000    0.001    0.000 blocks.py:2161(new_block_2d)
       96    0.000    0.000    0.015    0.000 affinity.py:12(affine_transform)
       31    0.000    0.000    0.015    0.000 maps.py:535(_relocate_ak)
      657    0.000    0.000    0.000    0.000 construction.py:461(ensure_wrapped_if_datetimelike)
      276    0.000    0.000    0.000    0.000 inspect.py:2564(replace)
     1746    0.000    0.000    0.000    0.000 array.py:354(dtype)
     2471    0.000    0.000    0.000    0.000 {method 'pop' of 'dict' objects}
      328    0.000    0.000    0.000    0.000 {built-in method matplotlib._path.affine_transform}
      126    0.000    0.000    0.000    0.000 {method 'take' of 'numpy.ndarray' objects}
     1148    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:231(_verbose_message)
      111    0.000    0.000    0.004    0.000 generic.py:11443(_min_count_stat_function)
      397    0.000    0.000    0.000    0.000 common.py:1246(is_float_dtype)
      882    0.000    0.000    0.000    0.000 copyreg.py:94(__newobj__)
      417    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:79(_unpack_uint32)
      383    0.000    0.000    0.001    0.000 construction.py:676(_sanitize_ndim)
     4656    0.000    0.000    0.000    0.000 {built-in method builtins.ord}
     2050    0.000    0.000    0.000    0.000 {built-in method numpy.geterrobj}
      389    0.000    0.000    0.000    0.000 {method 'sub' of 're.Pattern' objects}
      934    0.000    0.000    0.000    0.000 common.py:362(apply_if_callable)
       20    0.000    0.000    0.000    0.000 {method 'searchsorted' of 'numpy.ndarray' objects}
      280    0.000    0.000    0.000    0.000 blocks.py:2186(check_ndim)
     2075    0.000    0.000    0.000    0.000 {method 'add' of 'set' objects}
     1215    0.000    0.000    0.004    0.000 base.py:112(__bool__)
      820    0.000    0.000    0.000    0.000 generic.py:640(_info_axis)
      511    0.000    0.000    0.000    0.000 flags.py:85(allows_duplicate_labels)
  116/108    0.000    0.000    0.000    0.000 spines.py:332(get_spine_transform)
      233    0.000    0.000    0.001    0.000 array.py:961(copy)
      243    0.000    0.000    0.000    0.000 lines.py:1196(_set_markercolor)
       75    0.000    0.000    0.000    0.000 artist.py:1159(update_from)
      221    0.000    0.000    0.000    0.000 base.py:106(__eq__)
      378    0.000    0.000    0.000    0.000 array.py:336(crs)
        2    0.000    0.000    0.228    0.114 ops.py:822(apply)
       98    0.000    0.000    0.000    0.000 core.py:2940(_update_from)
      139    0.000    0.000    0.017    0.000 <frozen importlib._bootstrap_external>:645(_compile_bytecode)
      111    0.000    0.000    0.002    0.000 nanops.py:588(nansum)
     2247    0.000    0.000    0.000    0.000 {method 'lower' of 'str' objects}
      118    0.000    0.000    0.001    0.000 take.py:120(_take_nd_ndarray)
      416    0.000    0.000    0.001    0.000 concat.py:660(<genexpr>)
       63    0.000    0.000    0.000    0.000 inspect.py:3065(__str__)
        1    0.000    0.000    0.000    0.000 _cm_listed.py:1(<module>)
       25    0.000    0.000    0.000    0.000 {method 'draw_text_image' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
       62    0.000    0.000    0.001    0.000 transforms.py:474(transformed)
      138    0.000    0.000    0.001    0.000 transforms.py:1467(transform)
      727    0.000    0.000    0.000    0.000 types.py:171(__get__)
       72    0.000    0.000    0.004    0.000 font_manager.py:1200(findfont)
      742    0.000    0.000    0.000    0.000 figure.py:68(_stale_figure_callback)
      527    0.000    0.000    0.000    0.000 enum.py:22(_is_dunder)
       96    0.000    0.000    0.014    0.000 coordinates.py:8(transform)
      776    0.000    0.000    0.000    0.000 blocks.py:500(dtype)
      168    0.000    0.000    0.000    0.000 sre_parse.py:355(_escape)
      249    0.000    0.000    0.001    0.000 colors.py:237(_check_color_like)
      504    0.000    0.000    0.002    0.000 config.py:262(__call__)
       50    0.000    0.000    0.001    0.000 deprecation.py:457(<listcomp>)
      245    0.000    0.000    0.008    0.000 geodataframe.py:204(_get_geometry)
      770    0.000    0.000    0.000    0.000 sre_parse.py:111(__init__)
     25/6    0.000    0.000    0.001    0.000 core.py:3816(streamline)
       25    0.000    0.000    0.000    0.000 {method 'draw_glyphs_to_bitmap' of 'matplotlib.ft2font.FT2Font' objects}
      119    0.000    0.000    0.000    0.000 utils.py:430(check_array_indexer)
     1223    0.000    0.000    0.000    0.000 coords.py:23(__len__)
      400    0.000    0.000    0.000    0.000 typing.py:712(__setattr__)
  667/652    0.000    0.000    0.032    0.000 artist.py:1216(_internal_update)
     1347    0.000    0.000    0.000    0.000 common.py:146(classes)
        8    0.000    0.000    0.000    0.000 {pandas._libs.lib.infer_dtype}
      146    0.000    0.000    0.007    0.000 <frozen importlib._bootstrap>:558(module_from_spec)
        2    0.000    0.000    0.240    0.120 groupby.py:1511(apply)
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:560(_classify_pyc)
      230    0.000    0.000    0.000    0.000 indexing.py:2488(convert_to_index_sliceable)
       81    0.000    0.000    0.000    0.000 lines.py:1137(set_linestyle)
       38    0.000    0.000    0.001    0.000 patches.py:742(get_patch_transform)
       47    0.000    0.000    0.003    0.000 __init__.py:1324(_add_data_doc)
        1    0.000    0.000    0.192    0.192 pyplot.py:4(<module>)
      116    0.000    0.000    0.001    0.000 axis.py:455(update_position)
      378    0.000    0.000    0.001    0.000 transforms.py:157(invalidate)
      245    0.000    0.000    0.000    0.000 inference.py:266(is_dict_like)
       54    0.000    0.000    0.000    0.000 ticker.py:1899(scale_range)
      118    0.000    0.000    0.000    0.000 take.py:554(_take_preprocess_indexer_and_fill_value)
     1016    0.000    0.000    0.000    0.000 {method 'rpartition' of 'str' objects}
       99    0.000    0.000    0.123    0.001 artist.py:126(__init_subclass__)
      559    0.000    0.000    0.006    0.000 <frozen importlib._bootstrap_external>:135(_path_stat)
      142    0.000    0.000    0.003    0.000 text.py:93(_get_text_metrics_with_cache)
      167    0.000    0.000    0.000    0.000 enum.py:977(__and__)
      111    0.000    0.000    0.005    0.000 generic.py:6045(dtypes)
      480    0.000    0.000    0.000    0.000 copy.py:242(_keep_alive)
      417    0.000    0.000    0.000    0.000 managers.py:2069(internal_values)
        8    0.000    0.000    0.000    0.000 arraysetops.py:524(in1d)
      134    0.000    0.000    0.000    0.000 typing.py:137(_type_check)
      167    0.000    0.000    0.004    0.000 sre_compile.py:598(_code)
      210    0.000    0.000    0.000    0.000 common.py:192(all_none)
      230    0.000    0.000    0.000    0.000 managers.py:262(_clear_reference_block)
      784    0.000    0.000    0.000    0.000 inspect.py:514(_is_wrapper)
      774    0.000    0.000    0.000    0.000 __init__.py:1834(_str_equal)
      180    0.000    0.000    0.000    0.000 markers.py:302(_set_fillstyle)
        1    0.000    0.000    0.006    0.006 core.py:4(<module>)
      529    0.000    0.000    0.000    0.000 common.py:1154(needs_i8_conversion)
        2    0.000    0.000    0.000    0.000 unicode.py:55(_chars_for_ranges)
       43    0.000    0.000    0.000    0.000 _geometry.py:440(get_interior_ring)
      230    0.000    0.000    0.001    0.000 generic.py:4137(_check_setitem_copy)
      388    0.000    0.000    0.000    0.000 re.py:203(sub)
      442    0.000    0.000    0.000    0.000 sre_compile.py:423(_simple)
      614    0.000    0.000    0.000    0.000 common.py:1420(is_1d_only_ea_dtype)
      130    0.000    0.000    0.000    0.000 base.py:690(_simple_new)
      450    0.000    0.000    0.000    0.000 posixpath.py:60(isabs)
       30    0.000    0.000    0.002    0.000 axis.py:2474(get_tick_space)
      381    0.000    0.000    0.000    0.000 common.py:1433(is_extension_array_dtype)
      168    0.000    0.000    0.001    0.000 text.py:985(set_color)
      730    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:878(__exit__)
      100    0.000    0.000    0.001    0.000 axis.py:516(update_position)
        2    0.000    0.000    0.000    0.000 {method 'draw_quad_mesh' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
        7    0.000    0.000    0.001    0.000 collections.py:861(update_scalarmappable)
      788    0.000    0.000    0.000    0.000 __init__.py:950(<lambda>)
      296    0.000    0.000    0.000    0.000 common.py:684(is_integer_dtype)
       56    0.000    0.000    0.001    0.000 transforms.py:1413(__sub__)
      228    0.000    0.000    0.025    0.000 text.py:1249(set_verticalalignment)
      477    0.000    0.000    0.001    0.000 {method 'max' of 'numpy.ndarray' objects}
      155    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:58(__init__)
       63    0.000    0.000    0.001    0.000 core.py:3783(__init__)
       52    0.000    0.000    0.001    0.000 colors.py:399(to_rgba_array)
      189    0.000    0.000    0.000    0.000 ticker.py:568(__call__)
       35    0.000    0.000    0.000    0.000 function_base.py:1320(diff)
      195    0.000    0.000    0.000    0.000 font_manager.py:729(set_style)
       64    0.000    0.000    0.000    0.000 {built-in method _abc._abc_init}
        2    0.000    0.000    0.000    0.000 {method 'factorize' of 'pandas._libs.hashtable.StringHashTable' objects}
      146    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1500(_get_spec)
       18    0.000    0.000    0.003    0.000 rcsetup.py:721(validate_cycler)
      180    0.000    0.000    0.005    0.000 markers.py:228(__init__)
      383    0.000    0.000    0.000    0.000 functools.py:65(wraps)
        7    0.000    0.000    0.000    0.000 _vectorized.py:105(from_shapely)
      505    0.000    0.000    0.000    0.000 enum.py:33(_is_sunder)
      238    0.000    0.000    0.011    0.000 arraylike.py:40(__eq__)
       24    0.000    0.000    0.009    0.000 axis.py:855(clear)
      146    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:491(_get_cached)
      504    0.000    0.000    0.000    0.000 config.py:650(_warn_if_deprecated)
      730    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:874(__enter__)
      243    0.000    0.000    0.000    0.000 inspect.py:2582(__str__)
       74    0.000    0.000    0.000    0.000 getlimits.py:558(smallest_normal)
      848    0.000    0.000    0.000    0.000 inference.py:292(<genexpr>)
        2    0.000    0.000    0.009    0.005 concat.py:565(get_result)
      506    0.000    0.000    0.000    0.000 array.py:358(__len__)
      111    0.000    0.000    0.001    0.000 managers.py:271(get_dtypes)
      167    0.000    0.000    0.000    0.000 sre_parse.py:224(__init__)
      121    0.000    0.000    0.001    0.000 crs.py:961(equals)
      225    0.000    0.000    0.001    0.000 artist.py:438(set_transform)
      245    0.000    0.000    0.000    0.000 generic.py:1997(__contains__)
       16    0.000    0.000    0.001    0.000 patches.py:533(_draw_paths_with_artist_properties)
     1212    0.000    0.000    0.000    0.000 _base.py:845(<genexpr>)
      335    0.000    0.000    0.001    0.000 font_manager.py:893(copy)
      155    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:185(cb)
      880    0.000    0.000    0.000    0.000 transforms.py:1039(get_points)
      111    0.000    0.000    0.002    0.000 nanops.py:403(new_func)
      556    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:129(<genexpr>)
       53    0.000    0.000    0.000    0.000 core.py:2808(__new__)
      285    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap>:385(cached)
       84    0.000    0.000    0.000    0.000 core.py:2966(__array_finalize__)
      416    0.000    0.000    0.001    0.000 concat.py:650(<genexpr>)
      278    0.000    0.000    0.001    0.000 {method 'sum' of 'numpy.ndarray' objects}
      216    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:145(_path_is_mode_type)
        6    0.000    0.000    0.000    0.000 colors.py:549(_create_lookup_table)
      540    0.000    0.000    0.000    0.000 rcsetup.py:180(validator)
      108    0.000    0.000    0.000    0.000 missing.py:460(array_equivalent)
      444    0.000    0.000    0.000    0.000 nanops.py:86(<genexpr>)
      432    0.000    0.000    0.000    0.000 font_manager.py:1256(<genexpr>)
  331/183    0.000    0.000    0.000    0.000 transforms.py:2405(<lambda>)
      247    0.000    0.000    0.002    0.000 axis.py:2204(getter)
      322    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:398(parent)
       59    0.000    0.000    0.000    0.000 axis.py:1832(_set_formatter)
        1    0.000    0.000    0.000    0.000 _color_data.py:989(<dictcomp>)
       54    0.000    0.000    0.001    0.000 axis.py:1553(_get_tick_label_size)
      319    0.000    0.000    0.001    0.000 artist.py:1048(set_visible)
      229    0.000    0.000    0.000    0.000 text.py:1000(set_horizontalalignment)
      195    0.000    0.000    0.000    0.000 font_manager.py:742(set_variant)
      383    0.000    0.000    0.000    0.000 common.py:566(require_length_match)
      408    0.000    0.000    0.000    0.000 frame.py:857(axes)
        8    0.000    0.000    0.001    0.000 core.py:2678(__init__)
      241    0.000    0.000    0.000    0.000 common.py:544(is_string_dtype)
       64    0.000    0.000    0.000    0.000 core.py:4349(__init__)
      235    0.000    0.000    0.008    0.000 geodataframe.py:396(crs)
      198    0.000    0.000    0.003    0.000 <frozen importlib._bootstrap_external>:1337(_path_importer_cache)
     1122    0.000    0.000    0.000    0.000 generic.py:353(flags)
      510    0.000    0.000    0.000    0.000 config.py:638(_translate_key)
       24    0.000    0.000    0.001    0.000 axis.py:2733(get_tick_space)
       32    0.000    0.000    0.002    0.000 colors.py:1027(from_list)
      417    0.000    0.000    0.000    0.000 series.py:708(_values)
       46    0.000    0.000    0.000    0.000 transforms.py:624(translated)
      177    0.000    0.000    0.000    0.000 __init__.py:1314(is_math_text)
      238    0.000    0.000    0.000    0.000 font_manager.py:715(set_family)
     1215    0.000    0.000    0.000    0.000 polygon.py:221(__new__)
       19    0.000    0.000    0.001    0.000 path.py:603(get_extents)
      116    0.000    0.000    0.002    0.000 text.py:1307(set_fontproperties)
      119    0.000    0.000    0.001    0.000 frame.py:12012(_reindex_for_setitem)
      113    0.000    0.000    0.001    0.000 geodataframe.py:1542(__finalize__)
      134    0.000    0.000    0.001    0.000 transforms.py:809(from_extents)
      234    0.000    0.000    0.000    0.000 base.py:2581(is_object)
       25    0.000    0.000    0.002    0.000 backend_agg.py:200(draw_text)
      474    0.000    0.000    0.000    0.000 common.py:151(cast_scalar_indexer)
     1493    0.000    0.000    0.000    0.000 geoseries.py:237(geometry)
      189    0.000    0.000    0.000    0.000 ticker.py:516(_format_maybe_minus_and_locale)
     78/4    0.000    0.000    0.001    0.000 core.py:909(_parseCache)
     1450    0.000    0.000    0.000    0.000 base.py:324(ndim)
      139    0.000    0.000    0.000    0.000 sre_parse.py:861(_parse_flags)
      611    0.000    0.000    0.000    0.000 generic.py:332(attrs)
     1469    0.000    0.000    0.000    0.000 {built-in method builtins.abs}
     56/8    0.000    0.000    0.242    0.030 {built-in method builtins.__import__}
       68    0.000    0.000    0.004    0.000 text.py:132(__init__)
     1031    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_scalar}
      241    0.000    0.000    0.000    0.000 common.py:1532(_is_dtype)
      291    0.000    0.000    0.001    0.000 missing.py:191(_isna)
      761    0.000    0.000    0.000    0.000 {method 'ravel' of 'numpy.ndarray' objects}
      241    0.000    0.000    0.002    0.000 rcsetup.py:279(validate_color_for_prop_cycle)
      684    0.000    0.000    0.000    0.000 managers.py:172(blknos)
      510    0.000    0.000    0.000    0.000 config.py:579(_select_options)
       70    0.000    0.000    0.001    0.000 text.py:221(update)
      389    0.000    0.000    0.000    0.000 text.py:1195(set_x)
       64    0.000    0.000    0.000    0.000 _methods.py:108(_clip_dep_invoke_with_casting)
      296    0.000    0.000    0.002    0.000 _base.py:855(viewLim)
      410    0.000    0.000    0.000    0.000 enum.py:12(_is_descriptor)
      198    0.000    0.000    0.000    0.000 artist.py:737(set_figure)
        1    0.000    0.000    0.003    0.003 cm.py:33(_gen_cmap_registry)
      388    0.000    0.000    0.000    0.000 font_manager.py:1074(_expand_aliases)
       64    0.000    0.000    0.001    0.000 _methods.py:127(_clip)
       25    0.000    0.000    0.008    0.000 axis.py:918(set_tick_params)
      717    0.000    0.000    0.000    0.000 transforms.py:1921(get_matrix)
        1    0.000    0.000    0.016    0.016 __init__.py:25(<module>)
   256/18    0.000    0.000    0.001    0.000 ast.py:403(visit)
       16    0.000    0.000    0.034    0.002 axis.py:477(__init__)
       29    0.000    0.000    0.000    0.000 ticker.py:2010(_validate_steps)
       33    0.000    0.000    0.001    0.000 numeric.py:2278(isclose)
       34    0.000    0.000    0.008    0.000 axis.py:293(draw)
      121    0.000    0.000    0.000    0.000 {method 'equals' of 'pyproj._crs._CRS' objects}
      102    0.000    0.000    0.001    0.000 concat.py:444(get_reindexed_values)
      102    0.000    0.000    0.000    0.000 concat.py:366(needs_filling)
      501    0.000    0.000    0.002    0.000 crs.py:475(from_user_input)
      102    0.000    0.000    0.000    0.000 missing.py:564(_array_equivalent_object)
      581    0.000    0.000    0.000    0.000 {method 'endswith' of 'str' objects}
      622    0.000    0.000    0.000    0.000 sre_parse.py:81(groups)
       32    0.000    0.000    0.002    0.000 artist.py:778(set_clip_path)
      511    0.000    0.000    0.000    0.000 _ufunc_config.py:426(__init__)
      922    0.000    0.000    0.000    0.000 enum.py:774(__hash__)
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:593(_validate_timestamp_pyc)
      199    0.000    0.000    0.000    0.000 fromnumeric.py:2829(amin)
      111    0.000    0.000    0.000    0.000 frame.py:609(__init__)
       54    0.000    0.000    0.006    0.000 ticker.py:2138(tick_values)
      237    0.000    0.000    0.000    0.000 series.py:1267(_set_as_cached)
       11    0.000    0.000    0.006    0.001 spines.py:142(get_window_extent)
       29    0.000    0.000    0.005    0.000 ticker.py:533(set_useMathText)
      383    0.000    0.000    0.000    0.000 construction.py:733(_maybe_repeat)
      146    0.000    0.000    0.010    0.000 <frozen importlib._bootstrap_external>:1406(find_spec)
      162    0.000    0.000    0.001    0.000 lines.py:635(set_data)
      671    0.000    0.000    0.000    0.000 __init__.py:884(<listcomp>)
  167/164    0.000    0.000    0.000    0.000 sre_compile.py:461(_get_literal_prefix)
      352    0.000    0.000    0.000    0.000 crs.py:350(_crs)
        1    0.000    0.000    0.000    0.000 ExifTags.py:294(<dictcomp>)
      130    0.000    0.000    0.000    0.000 text.py:1217(set_rotation)
      165    0.000    0.000    0.000    0.000 missing.py:645(na_value_for_dtype)
      357    0.000    0.000    0.000    0.000 blocks.py:165(_can_hold_na)
      125    0.000    0.000    0.000    0.000 common.py:1048(is_numeric_v_string_like)
  163/152    0.000    0.000    0.001    0.000 typing.py:271(inner)
        1    0.000    0.000    0.001    0.001 axes3d.py:42(Axes3D)
      118    0.000    0.000    0.000    0.000 posixpath.py:71(join)
      131    0.000    0.000    0.000    0.000 text.py:329(set_rotation_mode)
      197    0.000    0.000    0.000    0.000 fromnumeric.py:2703(amax)
      153    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap>:156(__enter__)
      408    0.000    0.000    0.000    0.000 concat.py:354(__init__)
      400    0.000    0.000    0.000    0.000 typing.py:664(_is_dunder)
     55/8    0.000    0.000    0.001    0.000 core.py:3635(leave_whitespace)
       12    0.000    0.000    0.000    0.000 __init__.py:232(define_aliases)
      738    0.000    0.000    0.000    0.000 {built-in method builtins.delattr}
       10    0.000    0.000    0.000    0.000 concat.py:705(_combine_concat_plans)
    63/11    0.000    0.000    0.002    0.000 core.py:3861(parseImpl)
    208/4    0.000    0.000    0.258    0.065 <frozen importlib._bootstrap>:220(_call_with_frames_removed)
     1093    0.000    0.000    0.000    0.000 {built-in method _imp.acquire_lock}
       96    0.000    0.000    0.000    0.000 text.py:1283(_preprocess_math)
     1089    0.000    0.000    0.000    0.000 font_manager.py:693(get_size)
     2100    0.000    0.000    0.000    0.000 copy.py:182(_deepcopy_atomic)
       10    0.000    0.000    0.001    0.000 axis.py:1162(_set_lim)
       16    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:1556(_fill_cache)
       43    0.000    0.000    0.000    0.000 font_manager.py:1490(get_font)
       24    0.000    0.000    0.000    0.000 enum.py:618(_find_new_)
       50    0.000    0.000    0.000    0.000 deprecation.py:440(<listcomp>)
      698    0.000    0.000    0.000    0.000 ast.py:244(iter_fields)
      132    0.000    0.000    0.000    0.000 ast.py:419(visit_Constant)
      118    0.000    0.000    0.001    0.000 take.py:57(take_nd)
        2    0.000    0.000    0.000    0.000 unicode.py:63(<listcomp>)
       29    0.000    0.000    0.001    0.000 ticker.py:2031(set_params)
      102    0.000    0.000    0.000    0.000 ops.py:1281(_is_indexed_like)
      632    0.000    0.000    0.000    0.000 {built-in method sys.intern}
       45    0.000    0.000    0.004    0.000 lines.py:1335(update_from)
  122/111    0.000    0.000    0.014    0.000 _docstring.py:79(__call__)
      467    0.000    0.000    0.000    0.000 {method 'get_loc' of 'pandas._libs.index.IndexEngine' objects}
      166    0.000    0.000    0.000    0.000 colors.py:659(__init__)
   114/57    0.000    0.000    0.001    0.000 core.py:3722(copy)
      188    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:64(_relax_case)
        2    0.000    0.000    0.008    0.004 core.py:235(read_style_directory)
       40    0.000    0.000    0.000    0.000 colors.py:1140(__init__)
       52    0.000    0.000    0.000    0.000 pathlib.py:682(_parse_args)
        2    0.000    0.000    0.000    0.000 traitlets.py:276(getmembers)
      144    0.000    0.000    0.000    0.000 sre_parse.py:84(opengroup)
      234    0.000    0.000    0.000    0.000 blocks.py:1648(iget)
       66    0.000    0.000    0.000    0.000 ticker.py:218(<listcomp>)
      333    0.000    0.000    0.000    0.000 nanops.py:79(check)
      585    0.000    0.000    0.000    0.000 inspect.py:73(isclass)
        1    0.000    0.000    0.041    0.041 rcsetup.py:1(<module>)
      171    0.000    0.000    0.000    0.000 colors.py:762(__copy__)
       16    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1585(<setcomp>)
      112    0.000    0.000    0.002    0.000 rcsetup.py:88(f)
      477    0.000    0.000    0.000    0.000 _methods.py:39(_amax)
      148    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:351(__init__)
     1093    0.000    0.000    0.000    0.000 {built-in method _imp.release_lock}
      339    0.000    0.000    0.000    0.000 {built-in method builtins.repr}
     1798    0.000    0.000    0.000    0.000 {built-in method builtins.chr}
       41    0.000    0.000    0.000    0.000 transforms.py:2581(__init__)
      536    0.000    0.000    0.000    0.000 managers.py:2433(_using_copy_on_write)
      104    0.000    0.000    0.059    0.001 ops.py:1321(__iter__)
      174    0.000    0.000    0.001    0.000 inspect.py:2873(replace)
      192    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(round_)
      102    0.000    0.000    0.001    0.000 blocks.py:1825(getitem_block_index)
      557    0.000    0.000    0.000    0.000 text.py:1265(set_text)
        1    0.000    0.000    0.013    0.013 Image.py:27(<module>)
        1    0.000    0.000    0.009    0.009 _axes.py:46(Axes)
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:523(_check_name_wrapper)
       97    0.000    0.000    0.000    0.000 {built-in method numpy.arange}
       66    0.000    0.000    0.004    0.000 ticker.py:696(set_locs)
        7    0.000    0.000    0.000    0.000 {built-in method _imp.exec_dynamic}
       51    0.000    0.000    0.000    0.000 stride_tricks.py:416(_broadcast_shape)
     1215    0.000    0.000    0.000    0.000 inspect.py:2865(parameters)
      121    0.000    0.000    0.001    0.000 crs.py:1557(__eq__)
      166    0.000    0.000    0.000    0.000 fromnumeric.py:3152(ndim)
       21    0.000    0.000    0.000    0.000 deprecation.py:316(delete_parameter)
       29    0.000    0.000    0.006    0.000 scale.py:103(set_default_locators_and_formatters)
      193    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(dot)
      198    0.000    0.000    0.000    0.000 ticker.py:247(fix_minus)
      204    0.000    0.000    0.000    0.000 base.py:135(__hash__)
     1035    0.000    0.000    0.000    0.000 font_manager.py:648(get_family)
     35/5    0.000    0.000    0.001    0.000 core.py:3675(streamline)
      146    0.000    0.000    0.000    0.000 __init__.py:89(find_spec)
     1866    0.000    0.000    0.000    0.000 __init__.py:831(<lambda>)
       66    0.000    0.000    0.000    0.000 inspect.py:1840(_signature_bound_method)
        4    0.000    0.000    0.007    0.002 _base.py:2937(_update_title_position)
      359    0.000    0.000    0.000    0.000 text.py:1206(set_y)
       43    0.000    0.000    0.001    0.000 backend_agg.py:263(_prepare_font)
      273    0.000    0.000    0.000    0.000 scale.py:115(get_transform)
      234    0.000    0.000    0.000    0.000 frame.py:4271(_clear_item_cache)
      111    0.000    0.000    0.004    0.000 generic.py:11492(sum)
      224    0.000    0.000    0.000    0.000 font_manager.py:755(set_weight)
      334    0.000    0.000    0.000    0.000 sre_compile.py:595(isstring)
       43    0.000    0.000    0.001    0.000 font_manager.py:1270(_find_fonts_by_props)
       76    0.000    0.000    0.000    0.000 rcsetup.py:91(<listcomp>)
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:35(_new_module)
       54    0.000    0.000    0.006    0.000 ticker.py:2134(__call__)
     1073    0.000    0.000    0.000    0.000 {pandas._libs.lib.item_from_zerodim}
      525    0.000    0.000    0.000    0.000 managers.py:2009(_block)
      291    0.000    0.000    0.000    0.000 {method 'extend' of 'list' objects}
      139    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:1077(path_stats)
      138    0.000    0.000    0.001    0.000 transforms.py:2413(transform_affine)
      231    0.000    0.000    0.000    0.000 {method 'min' of 'numpy.ndarray' objects}
  309/308    0.000    0.000    0.001    0.000 transforms.py:1777(transform)
      308    0.000    0.000    0.000    0.000 common.py:156(<lambda>)
        4    0.000    0.000    0.001    0.000 colors.py:683(__call__)
      452    0.000    0.000    0.000    0.000 base.py:839(is_)
      134    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(reshape)
  131/123    0.000    0.000    0.002    0.000 geodataframe.py:197(__setattr__)
      199    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:154(_path_isfile)
      192    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(around)
        1    0.000    0.000    0.000    0.000 __init__.py:789(copy)
      156    0.000    0.000    0.000    0.000 sre_compile.py:492(_get_charset_prefix)
       11    0.000    0.000    0.007    0.001 axis.py:416(__init__)
        2    0.000    0.000    0.000    0.000 typing.py:1845(_make_nmtuple)
       10    0.000    0.000    0.001    0.000 colors.py:1315(__call__)
       59    0.000    0.000    0.000    0.000 transforms.py:2281(__init__)
   182/43    0.000    0.000    0.000    0.000 transforms.py:2376(_invalidate_internal)
      102    0.000    0.000    0.000    0.000 base.py:5356(_getitem_slice)
      362    0.000    0.000    0.000    0.000 {method 'rfind' of 'str' objects}
        8    0.000    0.000    0.066    0.008 axis.py:1368(draw)
      111    0.000    0.000    0.002    0.000 nanops.py:469(newfunc)
      198    0.000    0.000    0.000    0.000 pyplot.py:93(_copy_docstring_and_deprecators)
      234    0.000    0.000    0.000    0.000 base.py:2622(is_categorical)
      116    0.000    0.000    0.000    0.000 text.py:1030(set_linespacing)
      399    0.000    0.000    0.000    0.000 __init__.py:1424(debug)
      679    0.000    0.000    0.000    0.000 base.py:5090(_values)
       16    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1466(__init__)
        1    0.000    0.000    0.002    0.002 helpers.py:2(<module>)
      222    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(column_stack)
       50    0.000    0.000    0.000    0.000 enum.py:582(_find_data_type)
       27    0.000    0.000    0.000    0.000 spines.py:227(_adjust_location)
       51    0.000    0.000    0.000    0.000 stride_tricks.py:480(broadcast_arrays)
       24    0.000    0.000    0.000    0.000 dviread.py:220(decorate)
     1050    0.000    0.000    0.000    0.000 {method 'values' of 'dict' objects}
      273    0.000    0.000    0.000    0.000 {method 'any' of 'numpy.ndarray' objects}
      195    0.000    0.000    0.000    0.000 font_manager.py:865(set_math_fontfamily)
       12    0.000    0.000    0.001    0.000 _docstring.py:57(<listcomp>)
   148/80    0.000    0.000    0.000    0.000 _base.py:997(get_yaxis_transform)
  215/110    0.000    0.000    0.001    0.000 core.py:1832(default_name)
       14    0.000    0.000    0.000    0.000 version.py:183(__init__)
      344    0.000    0.000    0.000    0.000 inspect.py:81(ismethod)
      167    0.000    0.000    0.000    0.000 sre_parse.py:921(fix_flags)
      109    0.000    0.000    0.000    0.000 transforms.py:2001(rotate_deg)
       23    0.000    0.000    0.001    0.000 transforms.py:649(union)
      192    0.000    0.000    0.000    0.000 fromnumeric.py:3245(around)
      167    0.000    0.000    0.000    0.000 {built-in method _sre.compile}
      448    0.000    0.000    0.000    0.000 colors.py:338(<genexpr>)
       54    0.000    0.000    0.000    0.000 _methods.py:281(_ptp)
     1111    0.000    0.000    0.000    0.000 {built-in method posix.fspath}
        2    0.000    0.000    0.013    0.007 _base.py:1262(__clear)
      992    0.000    0.000    0.000    0.000 font_manager.py:664(get_style)
      611    0.000    0.000    0.000    0.000 flags.py:53(allows_duplicate_labels)
       50    0.000    0.000    0.000    0.000 {built-in method builtins.round}
      263    0.000    0.000    0.000    0.000 construction.py:713(_sanitize_str_dtypes)
      111    0.000    0.000    0.000    0.000 base.py:2752(_is_all_dates)
       62    0.000    0.000    0.000    0.000 typing_extensions.py:126(_collect_type_vars)
      103    0.000    0.000    0.000    0.000 {built-in method _codecs.utf_8_decode}
      189    0.000    0.000    0.000    0.000 axis.py:305(set_label1)
      337    0.000    0.000    0.000    0.000 transforms.py:2126(transform)
      157    0.000    0.000    0.000    0.000 transforms.py:343(intervalx)
    30/16    0.000    0.000    0.000    0.000 units.py:164(get_converter)
  274/255    0.000    0.000    0.000    0.000 results.py:159(__init__)
       36    0.000    0.000    0.001    0.000 colors.py:1280(process_value)
      675    0.000    0.000    0.000    0.000 __init__.py:834(<listcomp>)
      399    0.000    0.000    0.000    0.000 __init__.py:1689(isEnabledFor)
      992    0.000    0.000    0.000    0.000 font_manager.py:685(get_stretch)
      278    0.000    0.000    0.001    0.000 _methods.py:47(_sum)
      6/3    0.000    0.000    0.000    0.000 gridspec.py:145(get_grid_positions)
       16    0.000    0.000    0.002    0.000 <frozen importlib._bootstrap_external>:1324(_path_hooks)
      992    0.000    0.000    0.000    0.000 font_manager.py:670(get_variant)
      199    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(amin)
      126    0.000    0.000    0.000    0.000 colors.py:958(__init__)
        2    0.000    0.000    0.001    0.000 concat.py:389(__init__)
       29    0.000    0.000    0.000    0.000 pathlib.py:556(_select_from)
       44    0.000    0.000    0.001    0.000 _base.py:67(__set_name__)
      291    0.000    0.000    0.001    0.000 missing.py:108(isna)
      160    0.000    0.000    0.001    0.000 font_manager.py:608(_from_any)
      228    0.000    0.000    0.000    0.000 base.py:915(geoms)
        1    0.000    0.000    0.000    0.000 TiffTags.py:420(_populate)
      783    0.000    0.000    0.000    0.000 {method '__subclasses__' of 'type' objects}
      230    0.000    0.000    0.000    0.000 frame.py:4234(_ensure_valid_index)
       25    0.000    0.000    0.000    0.000 results.py:200(__setitem__)
      153    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:160(__exit__)
        1    0.000    0.000    0.004    0.004 common.py:8(pyparsing_common)
       14    0.000    0.000    0.000    0.000 inspect.py:2909(_bind)
      228    0.000    0.000    0.001    0.000 base.py:961(__len__)
      165    0.000    0.000    0.000    0.000 rcsetup.py:140(validate_bool)
      992    0.000    0.000    0.000    0.000 font_manager.py:676(get_weight)
      189    0.000    0.000    0.000    0.000 axis.py:318(set_label2)
        1    0.000    0.000    0.000    0.000 linalg.py:469(inv)
     1030    0.000    0.000    0.000    0.000 blocks.py:213(mgr_locs)
       16    0.000    0.000    0.002    0.000 <frozen zipimport>:63(__init__)
      133    0.000    0.000    0.000    0.000 common.py:77(get_op_result_name)
       80    0.000    0.000    0.000    0.000 pathlib.py:742(__str__)
      195    0.000    0.000    0.000    0.000 font_manager.py:781(set_stretch)
       31    0.000    0.000    0.000    0.000 axis.py:1858(set_major_locator)
       15    0.000    0.000    0.000    0.000 {built-in method posix.lstat}
       66    0.000    0.000    0.002    0.000 ticker.py:215(format_ticks)
       81    0.000    0.000    0.000    0.000 transforms.py:1827(frozen)
      197    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(amax)
      192    0.000    0.000    0.001    0.000 fromnumeric.py:3754(round_)
      133    0.000    0.000    0.000    0.000 transforms.py:352(intervaly)
      109    0.000    0.000    0.000    0.000 base.py:54(shape)
       57    0.000    0.000    0.000    0.000 transforms.py:2673(__init__)
      354    0.000    0.000    0.000    0.000 {method 'count' of 'str' objects}
        5    0.000    0.000    0.132    0.026 collections.py:343(draw)
       34    0.000    0.000    0.000    0.000 colors.py:479(<setcomp>)
      922    0.000    0.000    0.000    0.000 inspect.py:2552(default)
      195    0.000    0.000    0.001    0.000 font_manager.py:642(__eq__)
       36    0.000    0.000    0.001    0.000 rcsetup.py:107(<listcomp>)
      450    0.000    0.000    0.000    0.000 copy.py:263(<genexpr>)
  266/157    0.000    0.000    0.001    0.000 core.py:1857(name)
      166    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(ndim)
        2    0.000    0.000    0.000    0.000 traitlets.py:999(setup_class)
      123    0.000    0.000    0.000    0.000 base.py:494(find)
      240    0.000    0.000    0.000    0.000 axis.py:758(get_transform)
        2    0.000    0.000    0.023    0.011 _base.py:574(__init__)
       16    0.000    0.000    0.000    0.000 arraysetops.py:323(_unique1d)
       81    0.000    0.000    0.000    0.000 lines.py:1406(set_dash_capstyle)
      192    0.000    0.000    0.000    0.000 {built-in method builtins.sum}
       65    0.000    0.000    0.000    0.000 path.py:162(_fast_from_codes_and_verts)
      417    0.000    0.000    0.000    0.000 {built-in method from_bytes}
      167    0.000    0.000    0.000    0.000 sre_parse.py:76(__init__)
      311    0.000    0.000    0.000    0.000 {built-in method _thread.allocate_lock}
      102    0.000    0.000    0.000    0.000 {pandas._libs.algos.take_2d_axis0_int64_int64}
       18    0.000    0.000    0.000    0.000 sre_compile.py:413(<listcomp>)
      416    0.000    0.000    0.000    0.000 {method '__exit__' of '_thread.lock' objects}
       24    0.000    0.000    0.000    0.000 enum.py:164(__prepare__)
        1    0.000    0.000    0.000    0.000 text.py:108(Text)
      373    0.000    0.000    0.000    0.000 transforms.py:209(<lambda>)
       29    0.000    0.000    0.005    0.000 ticker.py:427(__init__)
       29    0.000    0.000    0.000    0.000 ticker.py:2025(_staircase)
      111    0.000    0.000    0.004    0.000 generic.py:11777(sum)
      510    0.000    0.000    0.000    0.000 concat.py:731(_next_or_none)
       53    0.000    0.000    0.000    0.000 core.py:3205(__getitem__)
      241    0.000    0.000    0.000    0.000 common.py:573(condition)
        6    0.000    0.000    0.167    0.028 apply.py:1159(apply_standard)
      568    0.000    0.000    0.000    0.000 posixpath.py:41(_get_sep)
      525    0.000    0.000    0.000    0.000 common.py:196(<genexpr>)
      230    0.000    0.000    0.000    0.000 frame.py:1498(__len__)
       81    0.000    0.000    0.000    0.000 lines.py:1064(set_drawstyle)
       28    0.000    0.000    0.000    0.000 __init__.py:1284(getLogger)
      657    0.000    0.000    0.000    0.000 artist.py:847(get_visible)
      282    0.000    0.000    0.000    0.000 {built-in method pandas._libs.missing.checknull}
       81    0.000    0.000    0.000    0.000 lines.py:1122(set_linewidth)
       82    0.000    0.000    0.000    0.000 __init__.py:253(make_alias)
      138    0.000    0.000    0.000    0.000 transforms.py:2417(transform_non_affine)
   114/57    0.000    0.000    0.001    0.000 core.py:3724(<listcomp>)
        4    0.000    0.000    0.000    0.000 {pandas._libs.algos.take_2d_axis1_object_object}
      116    0.000    0.000    0.000    0.000 nanops.py:350(_na_ok_dtype)
      222    0.000    0.000    0.000    0.000 shape_base.py:608(_column_stack_dispatcher)
      102    0.000    0.000    0.168    0.002 maps.py:643(_relocate_ak_hi_pr_group)
       29    0.000    0.000    0.006    0.000 axis.py:765(_set_scale)
      115    0.000    0.000    0.000    0.000 generic.py:445(_validate_dtype)
    29/28    0.000    0.000    0.000    0.000 transforms.py:1109(get_points)
      212    0.000    0.000    0.000    0.000 artist.py:271(convert_xunits)
      134    0.000    0.000    0.000    0.000 fromnumeric.py:198(reshape)
       99    0.000    0.000    0.000    0.000 spines.py:558(__getitem__)
      726    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_integer}
       61    0.000    0.000    0.000    0.000 text.py:893(get_unitless_position)
       42    0.000    0.000    0.000    0.000 transforms.py:1607(transform_path_non_affine)
       31    0.000    0.000    0.000    0.000 axis.py:1874(set_minor_locator)
       44    0.000    0.000    0.000    0.000 _base.py:52(__init__)
    33/32    0.000    0.000    0.000    0.000 transforms.py:379(bounds)
       37    0.000    0.000    0.000    0.000 transforms.py:1087(__init__)
      116    0.000    0.000    0.000    0.000 text.py:1321(set_usetex)
       71    0.000    0.000    0.000    0.000 backend_bases.py:928(set_clip_path)
      231    0.000    0.000    0.000    0.000 _methods.py:43(_amin)
        1    0.000    0.000    0.000    0.000 rrule.py:2(<module>)
       18    0.000    0.000    0.001    0.000 core.py:262(_trim_arity)
      111    0.000    0.000    0.000    0.000 text.py:1098(set_fontsize)
      348    0.000    0.000    0.000    0.000 artist.py:1132(sticky_edges)
       63    0.000    0.000    0.001    0.000 colors.py:1080(reversed)
      344    0.000    0.000    0.000    0.000 enum.py:438(<genexpr>)
        1    0.000    0.000    0.000    0.000 __init__.py:966(<dictcomp>)
      729    0.000    0.000    0.000    0.000 {built-in method sys.getrecursionlimit}
        1    0.000    0.000    0.000    0.000 patches.py:27(Patch)
        1    0.000    0.000    0.000    0.000 colors.py:77(<dictcomp>)
       14    0.000    0.000    0.001    0.000 axis.py:2237(_init)
       35    0.000    0.000    0.000    0.000 core.py:2315(__init__)
        1    0.000    0.000    0.022    0.022 colors.py:1(<module>)
       99    0.000    0.000    0.000    0.000 transforms.py:790(unit)
       14    0.000    0.000    0.001    0.000 axis.py:2496(_init)
      444    0.000    0.000    0.000    0.000 sre_parse.py:168(__setitem__)
       55    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:203(_lock_unlock_module)
      275    0.000    0.000    0.000    0.000 _methods.py:55(_any)
       30    0.000    0.000    0.000    0.000 text.py:348(update_from)
       37    0.000    0.000    0.000    0.000 core.py:2984(parseImpl)
        6    0.000    0.000    0.002    0.000 patches.py:2230(<listcomp>)
  248/246    0.000    0.000    0.000    0.000 transforms.py:2597(get_matrix)
      416    0.000    0.000    0.000    0.000 concat.py:647(<genexpr>)
      604    0.000    0.000    0.000    0.000 font_manager.py:857(get_math_fontfamily)
   103/55    0.000    0.000    0.000    0.000 _base.py:917(get_xaxis_transform)
      592    0.000    0.000    0.000    0.000 {method 'get' of 'mappingproxy' objects}
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1006(__init__)
        8    0.000    0.000    0.001    0.000 _base.py:1876(apply_aspect)
       54    0.000    0.000    0.000    0.000 fromnumeric.py:2604(ptp)
       25    0.000    0.000    0.000    0.000 __init__.py:221(connect)
       60    0.000    0.000    0.001    0.000 __init__.py:813(_open_file_or_url)
       27    0.000    0.000    0.041    0.002 axis.py:1544(_get_tick)
       11    0.000    0.000    0.007    0.001 axis.py:2079(_get_tick_boxes_siblings)
      459    0.000    0.000    0.000    0.000 {built-in method _thread.get_ident}
       88    0.000    0.000    0.001    0.000 transforms.py:800(from_bounds)
      586    0.000    0.000    0.000    0.000 artist.py:966(get_agg_filter)
       76    0.000    0.000    0.000    0.000 transforms.py:2033(translate)
        4    0.000    0.000    0.017    0.004 _base.py:2245(add_collection)
      312    0.000    0.000    0.000    0.000 concat.py:113(<genexpr>)
        9    0.000    0.000    0.001    0.000 spines.py:35(__init__)
       77    0.000    0.000    0.000    0.000 transforms.py:318(ymin)
       81    0.000    0.000    0.000    0.000 lines.py:1052(set_color)
        1    0.000    0.000    0.000    0.000 figure.py:2373(__init__)
      348    0.000    0.000    0.000    0.000 geodataframe.py:1516(_constructor_sliced)
       34    0.000    0.000    0.039    0.001 axis.py:1595(get_major_ticks)
       28    0.000    0.000    0.000    0.000 core.py:2915(__init__)
      224    0.000    0.000    0.000    0.000 transforms.py:1350(_iter_break_from_left_to_right)
       74    0.000    0.000    0.000    0.000 getlimits.py:476(__new__)
      146    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:811(find_spec)
      119    0.000    0.000    0.000    0.000 base.py:46(__len__)
       27    0.000    0.000    0.000    0.000 __init__.py:1404(__init__)
      343    0.000    0.000    0.000    0.000 managers.py:188(blklocs)
       28    0.000    0.000    0.001    0.000 typing.py:434(Union)
        4    0.000    0.000    0.208    0.052 _base.py:2999(draw)
      704    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_iterator}
        1    0.000    0.000    0.000    0.000 _color_data.py:2(<module>)
        6    0.000    0.000    0.001    0.000 _base.py:2868(handle_single_axis)
       54    0.000    0.000    0.001    0.000 lines.py:1182(set_marker)
       12    0.000    0.000    0.000    0.000 _base.py:4271(get_children)
       63    0.000    0.000    0.000    0.000 deprecation.py:187(finalize)
        1    0.000    0.000    0.001    0.001 core.py:400(ParserElement)
      131    0.000    0.000    0.000    0.000 core.py:1711(set_whitespace_chars)
       50    0.000    0.000    0.001    0.000 artist.py:1233(_cm_set)
      167    0.000    0.000    0.000    0.000 font_manager.py:1061(get_default_size)
        2    0.000    0.000    0.007    0.004 concat.py:176(concatenate_managers)
       42    0.000    0.000    0.001    0.000 pathlib.py:1079(__new__)
      218    0.000    0.000    0.000    0.000 artist.py:283(convert_yunits)
      653    0.000    0.000    0.000    0.000 typing.py:1374(cast)
      103    0.000    0.000    0.000    0.000 codecs.py:319(decode)
      153    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:152(__init__)
      586    0.000    0.000    0.000    0.000 artist.py:939(get_rasterized)
       75    0.000    0.000    0.000    0.000 {method '__deepcopy__' of 'numpy.ndarray' objects}
        4    0.000    0.000    0.000    0.000 base.py:2381(is_unique)
        2    0.000    0.000    0.012    0.006 groupby.py:1122(_concat_objects)
       75    0.000    0.000    0.000    0.000 transforms.py:328(ymax)
       41    0.000    0.000    0.000    0.000 patches.py:734(_convert_units)
        8    0.000    0.000    0.000    0.000 transforms.py:493(anchored)
       12    0.000    0.000    0.012    0.001 _docstring.py:51(__missing__)
       62    0.000    0.000    0.001    0.000 core.py:1352(__add__)
      189    0.000    0.000    0.000    0.000 inspect.py:1748(_signature_get_user_defined_method)
       27    0.000    0.000    0.000    0.000 __init__.py:1335(_fixupParents)
      128    0.000    0.000    0.000    0.000 _methods.py:103(_clip_dep_is_byte_swapped)
      144    0.000    0.000    0.000    0.000 sre_parse.py:96(closegroup)
       18    0.000    0.000    0.000    0.000 warnings.py:130(filterwarnings)
       10    0.000    0.000    0.001    0.000 series.py:966(__getitem__)
       51    0.000    0.000    0.000    0.000 stride_tricks.py:538(<listcomp>)
        4    0.000    0.000    0.000    0.000 {pandas._libs.algos.take_1d_object_object}
        4    0.000    0.000    0.001    0.000 collections.py:76(__init__)
        9    0.000    0.000    0.002    0.000 _fontconfig_pattern.py:80(parse_fontconfig_pattern)
       18    0.000    0.000    0.002    0.000 backend_agg.py:221(get_text_width_height_descent)
       24    0.000    0.000    0.000    0.000 enum.py:197(<dictcomp>)
      116    0.000    0.000    0.000    0.000 nanops.py:217(_maybe_get_mask)
       32    0.000    0.000    0.000    0.000 axis.py:898(reset_ticks)
      246    0.000    0.000    0.000    0.000 generic.py:550(_get_axis_number)
      648    0.000    0.000    0.000    0.000 copy.py:107(_copy_immutable)
       31    0.000    0.000    0.150    0.005 maps.py:470(_wrap_polys)
       37    0.000    0.000    0.000    0.000 warnings.py:458(__enter__)
       10    0.000    0.000    0.000    0.000 managers.py:2023(getitem_mgr)
  190/188    0.000    0.000    0.000    0.000 {method 'view' of 'numpy.ndarray' objects}
       64    0.000    0.000    0.001    0.000 abc.py:105(__new__)
      137    0.000    0.000    0.000    0.000 cast.py:1422(sanitize_to_nanoseconds)
    21/12    0.000    0.000    0.004    0.000 deprecation.py:379(wrapper)
       25    0.000    0.000    0.000    0.000 axis.py:1017(_translate_tick_params)
      112    0.000    0.000    0.000    0.000 __init__.py:1845(_str_lower_equal)
       19    0.000    0.000    0.000    0.000 copyreg.py:103(_slotnames)
        1    0.000    0.000    0.000    0.000 rcsetup.py:1265(<dictcomp>)
       96    0.000    0.000    0.000    0.000 text.py:687(_get_wrapped_text)
       13    0.000    0.000    0.000    0.000 collections.py:766(_set_edgecolor)
       62    0.000    0.000    0.000    0.000 numerictypes.py:356(issubdtype)
       65    0.000    0.000    0.009    0.000 affinity.py:231(translate)
      146    0.000    0.000    0.000    0.000 _virtualenv.py:51(find_spec)
      224    0.000    0.000    0.000    0.000 shape_base.py:207(_arrays_for_stack_dispatcher)
        1    0.000    0.000    0.000    0.000 figure.py:2341(Figure)
      108    0.000    0.000    0.000    0.000 numeric.py:115(inferred_type)
        1    0.000    0.000    0.000    0.000 markers.py:156(MarkerStyle)
       44    0.000    0.000    0.000    0.000 results.py:533(copy)
       12    0.000    0.000    0.000    0.000 {built-in method posix.readlink}
      149    0.000    0.000    0.000    0.000 sre_compile.py:65(_combine_flags)
      147    0.000    0.000    0.000    0.000 TiffTags.py:26(__new__)
        7    0.000    0.000    0.007    0.001 axis.py:2294(_update_label_position)
       23    0.000    0.000    0.000    0.000 transforms.py:2751(_revalidate)
      171    0.000    0.000    0.000    0.000 cm.py:78(__getitem__)
       10    0.000    0.000    0.003    0.000 utils.py:88(_copytobuffer)
       81    0.000    0.000    0.000    0.000 lines.py:1358(set_dash_joinstyle)
      139    0.000    0.000    0.000    0.000 core.py:757(preParse)
       81    0.000    0.000    0.000    0.000 lines.py:1422(set_solid_capstyle)
      111    0.000    0.000    0.000    0.000 nanops.py:1453(_maybe_null_out)
       81    0.000    0.000    0.000    0.000 lines.py:1374(set_solid_joinstyle)
       29    0.000    0.000    0.001    0.000 ticker.py:1969(__init__)
      323    0.000    0.000    0.000    0.000 sre_compile.py:453(_get_iscased)
       81    0.000    0.000    0.000    0.000 lines.py:718(set_transform)
       71    0.000    0.000    0.000    0.000 pathlib.py:725(_format_parsed_parts)
        1    0.000    0.000    0.002    0.002 font_manager.py:1(<module>)
        1    0.000    0.000    0.022    0.022 axes3d.py:1(<module>)
       50    0.000    0.000    0.000    0.000 enum.py:571(_get_mixins_)
      452    0.000    0.000    0.000    0.000 {built-in method builtins.vars}
       22    0.000    0.000    0.003    0.000 axis.py:1304(<listcomp>)
       27    0.000    0.000    0.000    0.000 axis.py:208(_apply_tickdir)
       92    0.000    0.000    0.000    0.000 {method 'view' of 'numpy.generic' objects}
       71    0.000    0.000    0.000    0.000 artist.py:929(_set_gc_clip)
        4    0.000    0.000    0.005    0.001 axis.py:643(__init__)
      312    0.000    0.000    0.000    0.000 rcsetup.py:800(_convert_validator_spec)
      111    0.000    0.000    0.000    0.000 array.py:37(construct_from_string)
      306    0.000    0.000    0.000    0.000 concat.py:92(is_nonempty)
       37    0.000    0.000    0.000    0.000 transforms.py:1319(__init_subclass__)
       45    0.000    0.000    0.000    0.000 transforms.py:131(__getstate__)
      183    0.000    0.000    0.000    0.000 textwrap.py:477(prefixed_lines)
       24    0.000    0.000    0.002    0.000 patches.py:582(draw)
      467    0.000    0.000    0.000    0.000 base.py:6569(_maybe_cast_indexer)
       23    0.000    0.000    0.000    0.000 transforms.py:2736(__init__)
       64    0.000    0.000    0.001    0.000 fromnumeric.py:2111(clip)
        1    0.000    0.000    0.001    0.001 _base.py:547(_AxesBase)
      605    0.000    0.000    0.000    0.000 font_manager.py:699(get_file)
       87    0.000    0.000    0.000    0.000 pathlib.py:303(splitroot)
      102    0.000    0.000    0.000    0.000 {pandas._libs.lib.array_equivalent_object}
       43    0.000    0.000    0.000    0.000 pathlib.py:702(_from_parts)
       46    0.000    0.000    0.000    0.000 core.py:6625(array)
      133    0.000    0.000    0.000    0.000 dispatch.py:13(should_extension_dispatch)
      327    0.000    0.000    0.000    0.000 base.py:56(<genexpr>)
        1    0.000    0.000    0.000    0.000 patches.py:2508(Round4)
      309    0.000    0.000    0.000    0.000 figure.py:2733(_get_dpi)
        2    0.000    0.000    0.007    0.004 _base.py:818(_init_axis)
       18    0.000    0.000    0.001    0.000 rcsetup.py:629(cycler)
       63    0.000    0.000    0.000    0.000 transforms.py:2323(blended_transform_factory)
       95    0.000    0.000    0.000    0.000 rcsetup.py:66(__call__)
        4    0.000    0.000    0.000    0.000 base.py:430(__new__)
       43    0.000    0.000    0.000    0.000 backend_agg.py:43(get_hinting_flag)
       63    0.000    0.000    0.000    0.000 _base.py:567(<dictcomp>)
       64    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(clip)
      108    0.000    0.000    0.000    0.000 ticker.py:1932(closeto)
      116    0.000    0.000    0.000    0.000 _validators.py:226(validate_bool_kwarg)
       59    0.000    0.000    0.000    0.000 transforms.py:313(xmin)
       64    0.000    0.000    0.001    0.000 {method 'clip' of 'numpy.ndarray' objects}
      380    0.000    0.000    0.000    0.000 enum.py:787(name)
       78    0.000    0.000    0.000    0.000 core.py:1315(_replace_dtype_fields)
       13    0.000    0.000    0.000    0.000 cast.py:1178(maybe_infer_to_datetimelike)
       57    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(copyto)
       62    0.000    0.000    0.000    0.000 typing.py:676(__init__)
      111    0.000    0.000    0.000    0.000 transforms.py:2254(get_affine)
        6    0.000    0.000    0.000    0.000 _vectorized.py:550(geom_type)
      216    0.000    0.000    0.000    0.000 core.py:3401(dtype)
       15    0.000    0.000    0.004    0.000 axis.py:1565(_copy_tick_props)
        1    0.000    0.000    0.001    0.001 ExifTags.py:20(Base)
        1    0.000    0.000    0.001    0.001 dates.py:1(<module>)
      146    0.000    0.000    0.000    0.000 {built-in method _imp.is_frozen}
       24    0.000    0.000    0.000    0.000 enum.py:561(_check_for_existing_members)
       28    0.000    0.000    0.000    0.000 typing.py:232(_remove_dups_flatten)
        8    0.000    0.000    0.000    0.000 transforms.py:534(shrunk_to_aspect)
       59    0.000    0.000    0.000    0.000 transforms.py:323(xmax)
       30    0.000    0.000    0.001    0.000 __init__.py:550(_get_data_path)
       96    0.000    0.000    0.000    0.000 text.py:315(get_rotation)
      102    0.000    0.000    0.001    0.000 crs.py:1198(to_wkt)
      106    0.000    0.000    0.000    0.000 enums.py:13(create)
       97    0.000    0.000    0.000    0.000 exceptions.py:24(__init__)
      131    0.000    0.000    0.000    0.000 core.py:1915(__eq__)
      118    0.000    0.000    0.000    0.000 cast.py:527(maybe_promote)
       28    0.000    0.000    0.000    0.000 artist.py:1007(set_alpha)
      6/2    0.000    0.000    0.208    0.104 image.py:113(_draw_list_compositing_images)
       71    0.000    0.000    0.000    0.000 artist.py:1117(set_zorder)
        9    0.000    0.000    0.000    0.000 managers.py:301(apply)
       47    0.000    0.000    0.000    0.000 fromnumeric.py:2333(any)
        4    0.000    0.000    0.445    0.111 transformer.py:690(transform)
      388    0.000    0.000    0.000    0.000 font_manager.py:1112(score_style)
      102    0.000    0.000    0.000    0.000 concat.py:375(dtype)
       30    0.000    0.000    0.000    0.000 __init__.py:1675(_safe_first_finite)
      102    0.000    0.000    0.001    0.000 crs.py:1567(__hash__)
       69    0.000    0.000    0.000    0.000 transforms.py:2214(<lambda>)
       30    0.000    0.000    0.000    0.000 functools.py:517(decorating_function)
       54    0.000    0.000    0.000    0.000 ticker.py:1942(le)
       22    0.000    0.000    0.002    0.000 axis.py:1306(<listcomp>)
      124    0.000    0.000    0.000    0.000 numerictypes.py:282(issubclass_)
        4    0.000    0.000    0.000    0.000 {pandas._libs.lib.maybe_convert_objects}
       19    0.000    0.000    0.001    0.000 geoseries.py:33(_geoseries_constructor_with_fallback)
       63    0.000    0.000    0.000    0.000 inspect.py:1866(_signature_is_builtin)
      242    0.000    0.000    0.000    0.000 core.py:3614(<genexpr>)
      130    0.000    0.000    0.000    0.000 base.py:870(_reset_identity)
      222    0.000    0.000    0.000    0.000 transforms.py:1324(<genexpr>)
      102    0.000    0.000    0.000    0.000 frame.py:874(shape)
       33    0.000    0.000    0.003    0.000 axis.py:1482(get_majorticklocs)
      308    0.000    0.000    0.000    0.000 common.py:151(classes_and_not_datetimelike)
      135    0.000    0.000    0.000    0.000 axis.py:342(_set_artist_props)
        6    0.000    0.000    0.000    0.000 core.py:2332(masked_invalid)
       71    0.000    0.000    0.001    0.000 backend_bases.py:683(new_gc)
      486    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_float}
       11    0.000    0.000    0.000    0.000 _base.py:2510(_process_unit_info)
      266    0.000    0.000    0.000    0.000 __init__.py:80(<genexpr>)
       82    0.000    0.000    0.000    0.000 core.py:2266(__init__)
      457    0.000    0.000    0.000    0.000 base.py:166(kind)
       62    0.000    0.000    0.000    0.000 transforms.py:1831(is_separable)
      228    0.000    0.000    0.000    0.000 base.py:951(__init__)
      271    0.000    0.000    0.000    0.000 {method 'values' of 'mappingproxy' objects}
        1    0.000    0.000    0.000    0.000 _mathtext_data.py:1(<module>)
       16    0.000    0.000    0.000    0.000 _base.py:1025(get_yaxis_text1_transform)
       29    0.000    0.000    0.001    0.000 ticker.py:2889(__init__)
        1    0.000    0.000    0.001    0.001 _mathtext.py:1(<module>)
      155    0.000    0.000    0.000    0.000 typing_extensions.py:119(_should_collect_from_parameters)
    24/12    0.000    0.000    0.001    0.000 core.py:4108(parseImpl)
      388    0.000    0.000    0.000    0.000 font_manager.py:1176(score_size)
       30    0.000    0.000    0.000    0.000 deprecation.py:154(_deprecated_property)
        1    0.000    0.000    0.003    0.003 colorbar.py:281(__init__)
       81    0.000    0.000    0.000    0.000 lines.py:1240(set_markeredgewidth)
        6    0.000    0.000    0.000    0.000 concat.py:103(<listcomp>)
      167    0.000    0.000    0.000    0.000 typing.py:128(_type_convert)
      105    0.000    0.000    0.000    0.000 backend_bases.py:963(set_foreground)
      384    0.000    0.000    0.000    0.000 fromnumeric.py:3241(_around_dispatcher)
        1    0.000    0.000    0.024    0.024 patches.py:1(<module>)
       25    0.000    0.000    0.000    0.000 weakref.py:47(__new__)
        2    0.000    0.000    0.001    0.000 dataclasses.py:809(_process_class)
       71    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(result_type)
        4    0.000    0.000    0.017    0.004 coordinates.py:141(set_coordinates)
      116    0.000    0.000    0.000    0.000 text.py:1339(set_parse_math)
      222    0.000    0.000    0.000    0.000 transforms.py:1330(<genexpr>)
       78    0.000    0.000    0.000    0.000 util.py:111(set_)
      101    0.000    0.000    0.000    0.000 deprecation.py:205(<listcomp>)
      110    0.000    0.000    0.000    0.000 generic.py:564(_get_axis)
       20    0.000    0.000    0.000    0.000 colors.py:1180(reversed)
       16    0.000    0.000    0.000    0.000 axis.py:505(_apply_tickdir)
      190    0.000    0.000    0.000    0.000 core.py:1362(getmask)
     29/8    0.000    0.000    0.002    0.000 core.py:4379(leave_whitespace)
       79    0.000    0.000    0.000    0.000 _collections_abc.py:868(__iter__)
        6    0.000    0.000    0.000    0.000 concat.py:108(<setcomp>)
      474    0.000    0.000    0.000    0.000 {method 'copy' of 'list' objects}
        2    0.000    0.000    0.000    0.000 traitlets.py:977(setup_class)
       31    0.000    0.000    0.007    0.000 affinity.py:153(scale)
       45    0.000    0.000    0.000    0.000 transforms.py:136(__setstate__)
   148/39    0.000    0.000    0.000    0.000 core.py:1862(__str__)
       51    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(broadcast_arrays)
       46    0.000    0.000    0.000    0.000 lines.py:959(_get_markerfacecolor)
       38    0.000    0.000    0.000    0.000 patches.py:876(get_bbox)
        6    0.000    0.000    0.000    0.000 astype.py:239(astype_array_safe)
       48    0.000    0.000    0.000    0.000 units.py:56(_is_natively_supported)
       16    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1597(path_hook_for_FileFinder)
      115    0.000    0.000    0.000    0.000 common.py:393(is_timedelta64_dtype)
      335    0.000    0.000    0.000    0.000 axis.py:359(<genexpr>)
       66    0.000    0.000    0.000    0.000 _ufunc_config.py:452(_no_nep50_warning)
       14    0.000    0.000    0.000    0.000 transforms.py:1057(set)
       20    0.000    0.000    0.000    0.000 _dtype.py:344(_name_get)
       28    0.000    0.000    0.000    0.000 __init__.py:2034(getLogger)
        1    0.000    0.000    0.097    0.097 figure.py:1(<module>)
      118    0.000    0.000    0.000    0.000 take.py:326(_get_take_nd_function)
      195    0.000    0.000    0.000    0.000 font_manager.py:837(set_file)
       81    0.000    0.000    0.000    0.000 lines.py:1255(set_markersize)
        8    0.000    0.000    0.002    0.000 base.py:63(_delegate_property)
        1    0.000    0.000    0.000    0.000 deprecation.py:1(<module>)
        1    0.000    0.000    0.648    0.648 plotting.py:964(__call__)
      388    0.000    0.000    0.000    0.000 font_manager.py:1129(score_variant)
       37    0.000    0.000    0.000    0.000 warnings.py:477(__exit__)
       18    0.000    0.000    0.000    0.000 contextlib.py:234(contextmanager)
        2    0.000    0.000    0.000    0.000 {pandas._libs.algos.groupsort_indexer}
       27    0.000    0.000    0.000    0.000 transforms.py:784(frozen)
       14    0.000    0.000    0.000    0.000 version.py:503(_cmpkey)
        2    0.000    0.000    0.001    0.000 collections.py:2060(draw)
      146    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:736(find_spec)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1(<module>)
        2    0.000    0.000    0.001    0.001 array.py:1398(<setcomp>)
       45    0.000    0.000    0.001    0.000 path.py:281(__deepcopy__)
       27    0.000    0.000    0.000    0.000 axis.py:196(_set_labelrotation)
        6    0.000    0.000    0.002    0.000 _base.py:3314(tick_params)
       54    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(ptp)
       54    0.000    0.000    0.000    0.000 ticker.py:1949(ge)
        3    0.000    0.000    0.001    0.000 _base.py:2809(autoscale_view)
        1    0.000    0.000    0.001    0.001 helpers.py:590(_makeTags)
       18    0.000    0.000    0.000    0.000 sre_compile.py:411(_mk_bitmap)
      248    0.000    0.000    0.000    0.000 patches.py:2244(<genexpr>)
      347    0.000    0.000    0.000    0.000 enum.py:792(value)
       65    0.000    0.000    0.000    0.000 transforms.py:2222(transform_non_affine)
      264    0.000    0.000    0.000    0.000 axis.py:560(formatter)
      119    0.000    0.000    0.000    0.000 series.py:764(__len__)
        1    0.000    0.000    0.000    0.000 figure.py:170(FigureBase)
        2    0.000    0.000    0.000    0.000 {built-in method posix.access}
       23    0.000    0.000    0.000    0.000 warnings.py:181(_add_filter)
       47    0.000    0.000    0.000    0.000 enum.py:415(__getattr__)
       54    0.000    0.000    0.000    0.000 ticker.py:1917(__init__)
      160    0.000    0.000    0.000    0.000 transforms.py:1753(<lambda>)
        1    0.000    0.000    0.025    0.025 _axes.py:1(<module>)
        7    0.000    0.000    0.000    0.000 transforms.py:1714(set)
        1    0.000    0.000    0.002    0.002 PngImagePlugin.py:34(<module>)
       33    0.000    0.000    0.000    0.000 axis.py:2157(<genexpr>)
       13    0.000    0.000    0.000    0.000 {pandas._libs.lib.infer_datetimelike_array}
       18    0.000    0.000    0.001    0.000 core.py:4889(parseImpl)
       58    0.000    0.000    0.000    0.000 results.py:191(__getitem__)
       18    0.000    0.000    0.000    0.000 cycler.py:206(_from_iter)
       62    0.000    0.000    0.000    0.000 axis.py:553(locator)
       25    0.000    0.000    0.000    0.000 __init__.py:119(_weak_or_strong_ref)
       19    0.000    0.000    0.001    0.000 patches.py:603(get_window_extent)
       24    0.000    0.000    0.000    0.000 enum.py:81(__init__)
      112    0.000    0.000    0.000    0.000 exceptions.py:19(clear)
        4    0.000    0.000    0.007    0.002 axis.py:2555(_update_label_position)
      171    0.000    0.000    0.000    0.000 colors.py:944(copy)
        6    0.000    0.000    0.002    0.000 patches.py:2226(pprint_styles)
        4    0.000    0.000    0.000    0.000 base.py:708(_with_infer)
       37    0.000    0.000    0.000    0.000 sre_compile.py:249(_compile_charset)
       11    0.000    0.000    0.000    0.000 _base.py:945(get_xaxis_text1_transform)
        6    0.000    0.000    0.000    0.000 concat.py:116(<setcomp>)
      2/1    0.000    0.000    0.003    0.003 pyplot.py:212(switch_backend)
        1    0.000    0.000    0.001    0.001 backend_agg.py:1(<module>)
        3    0.000    0.000    0.016    0.005 collections.py:234(get_datalim)
        6    0.000    0.000    0.002    0.000 concat.py:71(concat_compat)
    55/36    0.000    0.000    0.000    0.000 typing.py:932(__hash__)
       28    0.000    0.000    0.000    0.000 rcsetup.py:64(<dictcomp>)
       63    0.000    0.000    0.000    0.000 _base.py:564(_axis_map)
        2    0.000    0.000    0.209    0.105 figure.py:3120(draw)
       29    0.000    0.000    0.000    0.000 scale.py:704(scale_factory)
        1    0.000    0.000    0.000    0.000 path.py:24(Path)
       22    0.000    0.000    0.000    0.000 typing.py:840(copy_with)
        2    0.000    0.000    0.000    0.000 concat.py:476(<listcomp>)
      6/3    0.000    0.000    0.000    0.000 gridspec.py:657(get_position)
        1    0.000    0.000    0.041    0.041 backend_bases.py:1(<module>)
       20    0.000    0.000    0.000    0.000 results.py:431(__iadd__)
      108    0.000    0.000    0.000    0.000 core.py:3676(_get_data)
        1    0.000    0.000    0.005    0.005 ExifTags.py:12(<module>)
       54    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(nonzero)
       23    0.000    0.000    0.000    0.000 __init__.py:222(__getattr__)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1714(Parser)
     14/7    0.000    0.000    0.000    0.000 transforms.py:2367(frozen)
      222    0.000    0.000    0.000    0.000 patches.py:2237(<genexpr>)
       81    0.000    0.000    0.000    0.000 lines.py:1099(set_gapcolor)
        5    0.000    0.000    0.000    0.000 {method 'argsort' of 'numpy.ndarray' objects}
       33    0.000    0.000    0.001    0.000 <__array_function__ internals>:177(isclose)
        8    0.000    0.000    0.000    0.000 arraysetops.py:373(intersect1d)
       39    0.000    0.000    0.000    0.000 core.py:2981(_generateDefaultName)
       33    0.000    0.000    0.000    0.000 _collections_abc.py:933(update)
      152    0.000    0.000    0.000    0.000 stride_tricks.py:542(<genexpr>)
       43    0.000    0.000    0.000    0.000 {method 'clear' of 'matplotlib.ft2font.FT2Font' objects}
        6    0.000    0.000    0.000    0.000 concat.py:109(<setcomp>)
       16    0.000    0.000    0.000    0.000 _base.py:1051(get_yaxis_text2_transform)
      145    0.000    0.000    0.000    0.000 {method 'find' of 'bytearray' objects}
       24    0.000    0.000    0.000    0.000 getlimits.py:668(__init__)
        2    0.000    0.000    0.210    0.105 backend_agg.py:392(draw)
        1    0.000    0.000    0.000    0.000 TiffTags.py:20(<module>)
       41    0.000    0.000    0.000    0.000 __init__.py:175(check_getitem)
       81    0.000    0.000    0.000    0.000 lines.py:1040(set_antialiased)
       47    0.000    0.000    0.000    0.000 text.py:1184(set_position)
      243    0.000    0.000    0.000    0.000 text.py:907(get_text)
        2    0.000    0.000    0.000    0.000 plotting.py:62(_expand_kwargs)
       14    0.000    0.000    0.000    0.000 numeric.py:290(full)
      139    0.000    0.000    0.000    0.000 {built-in method _imp._fix_co_filename}
       10    0.000    0.000    0.006    0.001 axis.py:1621(grid)
       41    0.000    0.000    0.000    0.000 backend_bases.py:891(set_alpha)
       47    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(any)
      162    0.000    0.000    0.000    0.000 {built-in method math.log10}
       35    0.000    0.000    0.000    0.000 numeric.py:150(ones)
        2    0.000    0.000    0.000    0.000 concat.py:625(<listcomp>)
      104    0.000    0.000    0.000    0.000 generic.py:5881(<genexpr>)
        4    0.000    0.000    0.000    0.000 array.py:965(take)
      170    0.000    0.000    0.000    0.000 textwrap.py:474(predicate)
        2    0.000    0.000    0.000    0.000 {pandas._libs.algos.take_2d_axis0_float64_float64}
       10    0.000    0.000    0.001    0.000 core.py:2791(_generateDefaultName)
       81    0.000    0.000    0.000    0.000 transforms.py:2683(get_matrix)
        4    0.000    0.000    0.000    0.000 accessor.py:178(__init__)
        4    0.000    0.000    0.000    0.000 accessor.py:255(_wrap_result)
       47    0.000    0.000    0.000    0.000 core.py:2345(parseImpl)
       11    0.000    0.000    0.000    0.000 typing.py:831(__getitem__)
       47    0.000    0.000    0.000    0.000 rcsetup.py:357(validate_fontsize)
      212    0.000    0.000    0.000    0.000 concat.py:117(<genexpr>)
       12    0.000    0.000    0.000    0.000 dataclasses.py:671(_get_field)
       45    0.000    0.000    0.000    0.000 copy.py:236(_deepcopy_method)
        2    0.000    0.000    0.000    0.000 figure.py:205(_get_draw_artists)
        1    0.000    0.000    0.037    0.037 text.py:1(<module>)
       81    0.000    0.000    0.000    0.000 lines.py:1220(set_markerfacecolor)
        3    0.000    0.000    0.000    0.000 colors.py:1361(inverse)
        4    0.000    0.000    0.000    0.000 base.py:1168(take)
        1    0.000    0.000    0.007    0.007 lines.py:1(<module>)
       44    0.000    0.000    0.000    0.000 core.py:1844(set_name)
        2    0.000    0.000    0.016    0.008 path.py:1048(get_path_collection_extents)
       74    0.000    0.000    0.000    0.000 getlimits.py:581(tiny)
      250    0.000    0.000    0.000    0.000 _compat.py:196(ignore_shapely2_warnings)
       55    0.000    0.000    0.001    0.000 core.py:3643(<listcomp>)
       28    0.000    0.000    0.000    0.000 pathlib.py:866(stem)
       24    0.000    0.000    0.000    0.000 core.py:3903(_generateDefaultName)
        1    0.000    0.000    0.003    0.003 artist.py:1(<module>)
       11    0.000    0.000    0.000    0.000 _base.py:1134(_set_position)
       26    0.000    0.000    0.000    0.000 artist.py:45(allow_rasterization)
        4    0.000    0.000    0.000    0.000 {pandas._libs.algos.take_2d_axis1_int64_int64}
        3    0.000    0.000    0.000    0.000 _base.py:1616(set_aspect)
       20    0.000    0.000    0.000    0.000 _base.py:3556(_validate_converted_limits)
        1    0.000    0.000    0.043    0.043 contour.py:1(<module>)
       31    0.000    0.000    0.000    0.000 affinity.py:77(interpret_origin)
        2    0.000    0.000    0.000    0.000 grouper.py:702(get_grouper)
       78    0.000    0.000    0.000    0.000 core.py:1283(_replace_dtype_fields_recursive)
        1    0.000    0.000    0.004    0.004 cm.py:1(<module>)
      134    0.000    0.000    0.000    0.000 {built-in method math.cos}
       14    0.000    0.000    0.001    0.000 core.py:595(set_parse_action)
        4    0.000    0.000    0.001    0.000 cm.py:427(to_rgba)
      120    0.000    0.000    0.000    0.000 function.py:56(__call__)
       16    0.000    0.000    0.001    0.000 backend_agg.py:109(draw_path)
      101    0.000    0.000    0.000    0.000 deprecation.py:99(deprecated)
       11    0.000    0.000    0.000    0.000 axis.py:444(_apply_tickdir)
        5    0.000    0.000    0.000    0.000 cm.py:593(norm)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1627(FigureCanvasBase)
      316    0.000    0.000    0.000    0.000 concat.py:663(<genexpr>)
        2    0.000    0.000    0.002    0.001 concat.py:199(<listcomp>)
       39    0.000    0.000    0.000    0.000 pathlib.py:715(_from_parsed_parts)
       27    0.000    0.000    0.000    0.000 transforms.py:246(frozen)
       41    0.000    0.000    0.000    0.000 {method 'copy' of 'numpy.generic' objects}
        2    0.000    0.000    0.001    0.001 concat.py:542(<listcomp>)
       14    0.000    0.000    0.000    0.000 __init__.py:1685(safe_isfinite)
       43    0.000    0.000    0.000    0.000 transforms.py:361(width)
       23    0.000    0.000    0.000    0.000 lines.py:697(_transform_path)
       20    0.000    0.000    0.000    0.000 core.py:959(reset_cache)
    88/69    0.000    0.000    0.000    0.000 typing.py:755(__hash__)
       25    0.000    0.000    0.000    0.000 axis.py:1065(<dictcomp>)
      121    0.000    0.000    0.000    0.000 ticker.py:192(set_axis)
        1    0.000    0.000    0.024    0.024 _base.py:1(<module>)
       19    0.000    0.000    0.000    0.000 transforms.py:1794(transform_path_affine)
        2    0.000    0.000    0.000    0.000 utils.py:243(maybe_convert_indices)
      217    0.000    0.000    0.000    0.000 typing.py:742(<genexpr>)
       52    0.000    0.000    0.000    0.000 {built-in method numpy.zeros}
        1    0.000    0.000    0.003    0.003 scale.py:1(<module>)
       84    0.000    0.000    0.000    0.000 core.py:3904(<genexpr>)
       47    0.000    0.000    0.000    0.000 deprecation.py:289(wrapper)
       23    0.000    0.000    0.000    0.000 markers.py:293(__bool__)
       70    0.000    0.000    0.001    0.000 artist.py:1205(update)
      156    0.000    0.000    0.000    0.000 core.py:1924(__hash__)
       48    0.000    0.000    0.000    0.000 axis.py:1721(convert_units)
        1    0.000    0.000    0.000    0.000 colors.py:61(__init__)
      121    0.000    0.000    0.000    0.000 managers.py:238(items)
       71    0.000    0.000    0.000    0.000 backend_bases.py:1025(get_hatch_path)
        1    0.000    0.000    0.000    0.000 _cm.py:1(<module>)
       54    0.000    0.000    0.000    0.000 ticker.py:1633(raise_if_exceeds)
       34    0.000    0.000    0.000    0.000 axis.py:1608(get_minor_ticks)
       54    0.000    0.000    0.000    0.000 {method 'nonzero' of 'numpy.ndarray' objects}
        7    0.000    0.000    0.000    0.000 axis.py:2334(_update_offset_text_position)
      128    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1472(<genexpr>)
       14    0.000    0.000    0.000    0.000 transforms.py:2457(__init__)
       20    0.000    0.000    0.001    0.000 core.py:4779(parseImpl)
        1    0.000    0.000    0.000    0.000 unicode.py:111(<listcomp>)
       11    0.000    0.000    0.000    0.000 typing.py:472(Optional)
        8    0.000    0.000    0.000    0.000 algorithms.py:1484(take)
       16    0.000    0.000    0.000    0.000 core.py:4084(__init__)
      116    0.000    0.000    0.000    0.000 spines.py:551(__getattr__)
      193    0.000    0.000    0.000    0.000 multiarray.py:740(dot)
       63    0.000    0.000    0.000    0.000 inspect.py:1878(_signature_is_functionlike)
       16    0.000    0.000    0.000    0.000 deprecation.py:257(rename_parameter)
        1    0.000    0.000    0.004    0.004 common.py:2(<module>)
       22    0.000    0.000    0.000    0.000 common.py:96(is_bool_indexer)
       80    0.000    0.000    0.000    0.000 transforms.py:1768(__array__)
        8    0.000    0.000    0.000    0.000 array_ops.py:336(logical_op)
     10/3    0.000    0.000    0.001    0.000 unicode.py:14(__get__)
       71    0.000    0.000    0.000    0.000 text.py:277(_get_multialignment)
        1    0.000    0.000    0.017    0.017 _fontconfig_pattern.py:1(<module>)
       12    0.000    0.000    0.000    0.000 {method 'cumsum' of 'numpy.ndarray' objects}
        1    0.000    0.000    0.001    0.001 core.py:5798(<listcomp>)
        1    0.000    0.000    0.001    0.001 widgets.py:1(<module>)
       11    0.000    0.000    0.000    0.000 typing.py:908(__getitem__)
       26    0.000    0.000    0.000    0.000 sre_parse.py:432(_uniq)
       14    0.000    0.000    0.000    0.000 {method 'splitlines' of 'str' objects}
        1    0.000    0.000    0.000    0.000 legend.py:333(Legend)
      192    0.000    0.000    0.000    0.000 text.py:1335(get_usetex)
      113    0.000    0.000    0.000    0.000 base.py:986(dtype)
       81    0.000    0.000    0.000    0.000 lines.py:1230(set_markerfacecoloralt)
       10    0.000    0.000    0.000    0.000 series.py:1068(_get_values)
        2    0.000    0.000    0.001    0.000 dataclasses.py:1170(make_dataclass)
       15    0.000    0.000    0.000    0.000 core.py:2792(charsAsStr)
        5    0.000    0.000    0.000    0.000 shape_base.py:81(atleast_2d)
        1    0.000    0.000    0.002    0.002 legend.py:1(<module>)
       81    0.000    0.000    0.000    0.000 lines.py:538(set_markevery)
       16    0.000    0.000    0.000    0.000 markers.py:791(_set_tickleft)
        2    0.000    0.000    0.000    0.000 colorbar.py:1065(_process_values)
        2    0.000    0.000    0.000    0.000 sorting.py:639(get_group_index_sorter)
       11    0.000    0.000    0.002    0.000 core.py:1076(parse_string)
       59    0.000    0.000    0.000    0.000 axis.py:564(formatter)
      122    0.000    0.000    0.000    0.000 figure.py:2736(_set_dpi)
       35    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(diff)
       31    0.000    0.000    0.000    0.000 posixpath.py:228(expanduser)
        1    0.000    0.000    0.006    0.006 image.py:1(<module>)
       63    0.000    0.000    0.000    0.000 blocks.py:200(fill_value)
        2    0.000    0.000    0.000    0.000 {method 'get_indexer' of 'pandas._libs.index.IndexEngine' objects}
     27/7    0.000    0.000    0.001    0.000 core.py:4409(streamline)
      104    0.000    0.000    0.000    0.000 _docstring.py:88(do_copy)
        2    0.000    0.000    0.000    0.000 {pandas._libs.lib.generate_slices}
        6    0.000    0.000    0.000    0.000 patches.py:2244(<listcomp>)
        1    0.000    0.000    0.002    0.002 colorbar.py:529(_draw_all)
      4/1    0.000    0.000    0.000    0.000 configurable.py:131(_find_my_config)
       12    0.000    0.000    0.000    0.000 typing.py:893(__getitem_inner__)
       16    0.000    0.000    0.000    0.000 _base.py:73(wrapper)
       91    0.000    0.000    0.000    0.000 typing.py:466(<genexpr>)
      215    0.000    0.000    0.000    0.000 base.py:130(<genexpr>)
  116/108    0.000    0.000    0.000    0.000 spines.py:202(_ensure_position_is_set)
      117    0.000    0.000    0.000    0.000 axis.py:549(locator)
        3    0.000    0.000    0.005    0.002 axis.py:1309(get_tightbbox)
      275    0.000    0.000    0.000    0.000 transforms.py:1803(get_affine)
        2    0.000    0.000    0.000    0.000 enum.py:475(_create_)
       28    0.000    0.000    0.000    0.000 typing.py:218(_deduplicate)
       31    0.000    0.000    0.000    0.000 {method 'remove' of 'list' objects}
        4    0.000    0.000    0.001    0.000 managers.py:751(<listcomp>)
        6    0.000    0.000    0.000    0.000 dataclasses.py:377(_create_fn)
       38    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(linspace)
        1    0.000    0.000    0.002    0.002 ticker.py:1(<module>)
        7    0.000    0.000    0.005    0.001 <frozen importlib._bootstrap_external>:1171(create_module)
       34    0.000    0.000    0.000    0.000 transforms.py:367(height)
      189    0.000    0.000    0.000    0.000 axis.py:289(get_loc)
       32    0.000    0.000    0.000    0.000 functools.py:478(lru_cache)
       78    0.000    0.000    0.000    0.000 core.py:1329(make_mask_descr)
       39    0.000    0.000    0.000    0.000 backend_bases.py:908(set_antialiased)
      100    0.000    0.000    0.000    0.000 typing.py:927(__eq__)
    33/15    0.000    0.000    0.001    0.000 core.py:4373(parseImpl)
        3    0.000    0.000    0.000    0.000 core.py:1010(__call__)
       11    0.000    0.000    0.000    0.000 ticker.py:668(get_offset)
        1    0.000    0.000    0.001    0.001 _common.py:1(<module>)
       29    0.000    0.000    0.000    0.000 spines.py:135(get_patch_transform)
        6    0.000    0.000    0.000    0.000 generic.py:6076(astype)
        2    0.000    0.000    0.000    0.000 types.py:69(new_class)
       37    0.000    0.000    0.000    0.000 warnings.py:437(__init__)
        1    0.000    0.000    0.000    0.000 axis.py:604(Axis)
        1    0.000    0.000    0.004    0.004 quiver.py:1(<module>)
        1    0.000    0.000    0.001    0.001 dviread.py:1(<module>)
       86    0.000    0.000    0.000    0.000 font_manager.py:1515(<genexpr>)
       54    0.000    0.000    0.000    0.000 fromnumeric.py:1892(nonzero)
        2    0.000    0.000    0.000    0.000 groupby.py:922(__init__)
        4    0.000    0.000    0.000    0.000 base.py:881(_engine)
      112    0.000    0.000    0.000    0.000 managers.py:997(__init__)
       18    0.000    0.000    0.000    0.000 cycler.py:135(__init__)
       52    0.000    0.000    0.000    0.000 numeric.py:1878(isscalar)
      159    0.000    0.000    0.000    0.000 {built-in method math.radians}
        2    0.000    0.000    0.000    0.000 colors.py:1008(_init)
       51    0.000    0.000    0.000    0.000 traitlets.py:654(get)
       15    0.000    0.000    0.000    0.000 text.py:270(_get_xy_display)
      116    0.000    0.000    0.000    0.000 text.py:610(set_wrap)
        8    0.000    0.000    0.001    0.000 spines.py:425(linear_spine)
       40    0.000    0.000    0.000    0.000 base.py:168(__setattr__)
       30    0.000    0.000    0.000    0.000 deprecation.py:176(finalize)
       20    0.000    0.000    0.000    0.000 blocks.py:236(make_block_same_class)
        6    0.000    0.000    0.000    0.000 blocks.py:504(astype)
       40    0.000    0.000    0.000    0.000 pathlib.py:752(__fspath__)
       43    0.000    0.000    0.000    0.000 transforms.py:253(x0)
       19    0.000    0.000    0.000    0.000 axis.py:1125(get_inverted)
      108    0.000    0.000    0.000    0.000 {built-in method builtins.divmod}
        1    0.000    0.000    0.000    0.000 tokenize.py:388(open)
       10    0.000    0.000    0.000    0.000 transforms.py:373(size)
       81    0.000    0.000    0.000    0.000 lines.py:1210(set_markeredgecolor)
       18    0.000    0.000    0.000    0.000 cycler.py:52(_process_keys)
        1    0.000    0.000    0.026    0.026 plotting.py:192(_plot_linestring_collection)
       22    0.000    0.000    0.006    0.000 axis.py:1300(_get_ticklabel_bboxes)
        1    0.000    0.000    0.000    0.000 dviread.py:238(Dvi)
        2    0.000    0.000    0.000    0.000 backend_bases.py:1675(__init__)
        1    0.000    0.000    0.000    0.000 model.py:1(<module>)
        1    0.000    0.000    0.001    0.001 _axes.py:6030(pcolormesh)
       32    0.000    0.000    0.000    0.000 __init__.py:218(_acquireLock)
        1    0.000    0.000    0.002    0.002 transforms.py:1(<module>)
       97    0.000    0.000    0.000    0.000 core.py:1868(streamline)
        7    0.000    0.000    0.000    0.000 core.py:3059(__array_wrap__)
       10    0.000    0.000    0.000    0.000 blocks.py:861(take_nd)
      102    0.000    0.000    0.000    0.000 blocks.py:1912(get_values)
       11    0.000    0.000    0.000    0.000 _base.py:971(get_xaxis_text2_transform)
      8/4    0.000    0.000    0.000    0.000 functools.py:973(__get__)
       43    0.000    0.000    0.000    0.000 polygon.py:179(_get_ring)
        1    0.000    0.000    0.000    0.000 lines.py:204(Line2D)
       10    0.000    0.000    0.000    0.000 _base.py:1179(_set_artist_props)
       27    0.000    0.000    0.001    0.000 lines.py:1026(get_path)
       16    0.000    0.000    0.001    0.000 spines.py:285(draw)
      314    0.000    0.000    0.000    0.000 __init__.py:765(__iter__)
       10    0.000    0.000    0.000    0.000 utils.py:145(_convertback)
        1    0.000    0.000    0.002    0.002 backend_inline.py:1(<module>)
        1    0.000    0.000    0.001    0.001 ElementTree.py:6(<module>)
      134    0.000    0.000    0.000    0.000 __init__.py:301(wrapper)
      143    0.000    0.000    0.000    0.000 series.py:546(_constructor)
      111    0.000    0.000    0.000    0.000 nanops.py:1492(check_below_min_count)
      102    0.000    0.000    0.000    0.000 managers.py:233(is_single_block)
       15    0.000    0.000    0.000    0.000 deprecation.py:350(<genexpr>)
        4    0.000    0.000    0.000    0.000 _base.py:1862(get_data_ratio)
        1    0.000    0.000    0.009    0.009 core.py:1(<module>)
        6    0.000    0.000    0.000    0.000 numeric.py:2407(array_equal)
        2    0.000    0.000    0.000    0.000 {pyproj._crs.is_proj}
        1    0.000    0.000    0.000    0.000 mlab.py:1(<module>)
      102    0.000    0.000    0.000    0.000 {pandas._libs.internals.get_blkno_placements}
     12/5    0.000    0.000    0.000    0.000 core.py:4092(streamline)
        1    0.000    0.000    0.032    0.032 collections.py:1(<module>)
       32    0.000    0.000    0.000    0.000 __init__.py:651(__init__)
        2    0.000    0.000    0.000    0.000 api.py:104(<listcomp>)
        8    0.000    0.000    0.000    0.000 series.py:6247(_logical_method)
        2    0.000    0.000    0.000    0.000 colors.py:485(<listcomp>)
       90    0.000    0.000    0.000    0.000 enum.py:777(__reduce_ex__)
      135    0.000    0.000    0.000    0.000 typing.py:749(__eq__)
        4    0.000    0.000    0.000    0.000 {built-in method matplotlib._path.update_path_extents}
        2    0.000    0.000    0.240    0.120 groupby.py:1592(_python_apply_general)
        4    0.000    0.000    0.000    0.000 config.py:142(_set_option)
       13    0.000    0.000    0.000    0.000 os.py:674(__getitem__)
       20    0.000    0.000    0.001    0.000 core.py:4956(parseImpl)
       25    0.000    0.000    0.000    0.000 artist.py:1238(<dictcomp>)
      189    0.000    0.000    0.000    0.000 _collections_abc.py:409(__subclasshook__)
       18    0.000    0.000    0.000    0.000 artist.py:24(_prevent_rasterization)
        7    0.000    0.000    0.000    0.000 __init__.py:897(__set_name__)
       69    0.000    0.000    0.000    0.000 {method 'setter' of 'property' objects}
        1    0.000    0.000    0.000    0.000 {method 'read' of '_io.TextIOWrapper' objects}
      166    0.000    0.000    0.000    0.000 fromnumeric.py:3148(_ndim_dispatcher)
      220    0.000    0.000    0.000    0.000 {pandas._libs.algos.ensure_object}
    39/28    0.000    0.000    0.001    0.000 typing.py:352(__getitem__)
        5    0.000    0.000    0.000    0.000 cm.py:382(__init__)
        6    0.000    0.000    0.000    0.000 core.py:1828(masked_where)
       32    0.000    0.000    0.000    0.000 codecs.py:309(__init__)
      204    0.000    0.000    0.000    0.000 {method 'ljust' of 'str' objects}
        2    0.000    0.000    0.000    0.000 stride_tricks.py:340(_broadcast_to)
      146    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:406(has_location)
        8    0.000    0.000    0.000    0.000 {built-in method _operator.or_}
        2    0.000    0.000    0.002    0.001 generic.py:5044(reindex)
      135    0.000    0.000    0.000    0.000 core.py:3803(<genexpr>)
       12    0.000    0.000    0.000    0.000 __init__.py:273(get_aliased_and_aliases)
       23    0.000    0.000    0.000    0.000 transforms.py:654(<listcomp>)
       47    0.000    0.000    0.000    0.000 transforms.py:263(y0)
        6    0.000    0.000    0.000    0.000 _dtype.py:34(__str__)
      199    0.000    0.000    0.000    0.000 fromnumeric.py:2824(_amin_dispatcher)
      197    0.000    0.000    0.000    0.000 fromnumeric.py:2698(_amax_dispatcher)
        6    0.000    0.000    0.000    0.000 astype.py:192(astype_array)
      154    0.000    0.000    0.000    0.000 core.py:1700(leave_whitespace)
       16    0.000    0.000    0.000    0.000 core.py:2820(parseImpl)
        2    0.000    0.000    0.000    0.000 {built-in method posix.mkdir}
        1    0.000    0.000    0.000    0.000 _fontconfig_pattern.py:57(_make_fontconfig_parser)
        3    0.000    0.000    0.000    0.000 __init__.py:197(caching_module_getattr)
      134    0.000    0.000    0.000    0.000 fromnumeric.py:193(_reshape_dispatcher)
       82    0.000    0.000    0.000    0.000 pathlib.py:1089(_init)
      104    0.000    0.000    0.000    0.000 concat.py:559(<genexpr>)
        4    0.000    0.000    0.001    0.000 managers.py:689(reindex_indexer)
       26    0.000    0.000    0.000    0.000 {built-in method fromkeys}
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1031(get_filename)
       39    0.000    0.000    0.000    0.000 backend_bases.py:983(set_joinstyle)
        8    0.000    0.000    0.002    0.000 concat.py:635(_is_uniform_join_units)
        8    0.000    0.000    0.001    0.000 geodataframe.py:235(_set_geometry)
     12/8    0.000    0.000    0.007    0.001 axis.py:583(__get__)
       12    0.000    0.000    0.000    0.000 axis.py:2141(_get_ticks_position)
        4    0.000    0.000    0.000    0.000 axis.py:2594(_update_offset_text_position)
        1    0.000    0.000    0.007    0.007 axis.py:1(<module>)
        2    0.000    0.000    0.000    0.000 _base.py:881(_set_lim_and_transforms)
      119    0.000    0.000    0.000    0.000 artist.py:618(get_gid)
        6    0.000    0.000    0.000    0.000 concat.py:217(<listcomp>)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:578(_ReducedHCT_Element)
      104    0.000    0.000    0.000    0.000 concat.py:623(<genexpr>)
      111    0.000    0.000    0.000    0.000 geodataframe.py:1512(_constructor)
       40    0.000    0.000    0.002    0.000 re.py:250(compile)
      169    0.000    0.000    0.000    0.000 rcsetup.py:59(func)
        1    0.000    0.000    0.009    0.009 offsetbox.py:1(<module>)
       30    0.000    0.000    0.000    0.000 pathlib.py:1166(glob)
        6    0.000    0.000    0.167    0.028 geoseries.py:643(apply)
        1    0.000    0.000    0.000    0.000 Image.py:495(Image)
       36    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(min_scalar_type)
      102    0.000    0.000    0.000    0.000 generic.py:5876(<genexpr>)
       43    0.000    0.000    0.000    0.000 {method 'set_size' of 'matplotlib.ft2font.FT2Font' objects}
      139    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:841(create_module)
        2    0.000    0.000    0.000    0.000 concat.py:682(<listcomp>)
        1    0.000    0.000    0.002    0.002 __init__.py:210(_check_versions)
       28    0.000    0.000    0.000    0.000 core.py:5368(__init__)
       62    0.000    0.000    0.000    0.000 patches.py:2259(_register_style)
       39    0.000    0.000    0.000    0.000 backend_bases.py:913(set_capstyle)
      104    0.000    0.000    0.000    0.000 concat.py:539(<genexpr>)
        6    0.000    0.000    0.000    0.000 cm.py:699(_ensure_cmap)
        2    0.000    0.000    0.000    0.000 {method 'readline' of '_io.BufferedReader' objects}
        5    0.000    0.000    0.000    0.000 accessor.py:178(__get__)
        9    0.000    0.000    0.020    0.002 _base.py:734(__init_subclass__)
       95    0.000    0.000    0.000    0.000 __init__.py:419(<genexpr>)
        3    0.000    0.000    0.000    0.000 {method '_rebuild_blknos_and_blklocs' of 'pandas._libs.internals.BlockManager' objects}
       10    0.000    0.000    0.000    0.000 path.py:191(_create_closed)
       16    0.000    0.000    0.000    0.000 markers.py:797(_set_tickright)
        9    0.000    0.000    0.000    0.000 {built-in method _imp.is_builtin}
        9    0.000    0.000    0.002    0.000 core.py:5392(__init__)
       54    0.000    0.000    0.000    0.000 transforms.py:1864(inverted)
        4    0.000    0.000    0.000    0.000 _base.py:2485(update_datalim)
        1    0.000    0.000    0.000    0.000 helpers.py:1061(<listcomp>)
        2    0.000    0.000    0.000    0.000 _base.py:2854(<listcomp>)
      161    0.000    0.000    0.000    0.000 util.py:196(escape_re_range_char)
       30    0.000    0.000    0.000    0.000 __init__.py:2290(_unpack_to_numpy)
       28    0.000    0.000    0.000    0.000 pathlib.py:1098(_make_child_relpath)
       11    0.000    0.000    0.000    0.000 markers.py:811(_set_tickdown)
        1    0.000    0.000    0.001    0.001 backend_tools.py:1(<module>)
        2    0.000    0.000    0.000    0.000 colorbar.py:1235(_proportional_y)
        6    0.000    0.000    0.000    0.000 traitlets.py:1519(_notify_observers)
        1    0.000    0.000    0.142    0.142 geoseries.py:807(plot)
        5    0.000    0.000    0.000    0.000 generic.py:11108(_logical_func)
       23    0.000    0.000    0.000    0.000 transforms.py:655(<listcomp>)
        1    0.000    0.000    0.010    0.010 colorbar.py:1491(make_axes_gridspec)
       23    0.000    0.000    0.000    0.000 core.py:4948(__init__)
        2    0.000    0.000    0.000    0.000 base.py:3888(get_indexer)
       28    0.000    0.000    0.000    0.000 {method 'sort' of 'numpy.ndarray' objects}
        2    0.000    0.000    0.023    0.011 figure.py:632(add_subplot)
        4    0.000    0.000    0.002    0.000 object_array.py:39(_str_map)
      116    0.000    0.000    0.000    0.000 nanops.py:195(_get_fill_value)
        2    0.000    0.000    0.000    0.000 series.py:916(take)
       28    0.000    0.000    0.000    0.000 colors.py:203(_sanitize_extrema)
       11    0.000    0.000    0.000    0.000 core.py:1555(make_mask)
       23    0.000    0.000    0.000    0.000 transforms.py:2764(get_transformed_points_and_affine)
        5    0.000    0.000    0.000    0.000 collections.py:307(_prepare_points)
        7    0.000    0.000    0.000    0.000 managers.py:1860(<listcomp>)
       20    0.000    0.000    0.000    0.000 transforms.py:2651(get_matrix)
        1    0.000    0.000    0.000    0.000 posixpath.py:397(_joinrealpath)
       34    0.000    0.000    0.000    0.000 traceback.py:272(__getitem__)
       16    0.000    0.000    0.000    0.000 arraysetops.py:138(unique)
        1    0.000    0.000    0.001    0.001 mathtext.py:1(<module>)
       20    0.000    0.000    0.000    0.000 _docstring.py:43(update)
        9    0.000    0.000    0.000    0.000 shape_base.py:23(atleast_1d)
       59    0.000    0.000    0.000    0.000 text.py:901(get_position)
       28    0.000    0.000    0.000    0.000 rcsetup.py:52(__init__)
        8    0.000    0.000    0.000    0.000 colors.py:1213(__init__)
       16    0.000    0.000    0.000    0.000 core.py:1526(__or__)
       14    0.000    0.000    0.000    0.000 typing.py:879(__getitem__)
        6    0.000    0.000    0.000    0.000 __init__.py:708(safe_masked_invalid)
       18    0.000    0.000    0.002    0.000 text.py:101(_get_text_metrics_with_cache_impl)
        2    0.000    0.000    0.240    0.120 maps.py:663(relocate_ak_hi_pr)
        1    0.000    0.000    0.000    0.000 collections.py:26(Collection)
        1    0.000    0.000    0.007    0.007 polar.py:1(<module>)
        1    0.000    0.000    0.003    0.003 pyplot.py:691(figure)
        1    0.000    0.000    0.011    0.011 art3d.py:5(<module>)
        2    0.000    0.000    0.000    0.000 algorithms.py:593(factorize)
        2    0.000    0.000    0.000    0.000 base.py:1752(_validate_names)
       15    0.000    0.000    0.000    0.000 common.py:501(is_categorical_dtype)
        3    0.000    0.000    0.000    0.000 _base.py:1522(_set_title_offset_trans)
      138    0.000    0.000    0.000    0.000 cycler.py:227(<genexpr>)
       29    0.000    0.000    0.000    0.000 pathlib.py:831(name)
       14    0.000    0.000    0.000    0.000 transforms.py:2492(get_matrix)
       28    0.000    0.000    0.000    0.000 {method 'fullmatch' of 're.Pattern' objects}
        8    0.000    0.000    0.000    0.000 deprecation.py:139(finalize)
       23    0.000    0.000    0.000    0.000 markers.py:318(get_joinstyle)
        8    0.000    0.000    0.000    0.000 spines.py:292(set_position)
       38    0.000    0.000    0.000    0.000 loader.py:218(_is_section_key)
        5    0.000    0.000    0.006    0.001 _base.py:3155(grid)
      100    0.000    0.000    0.000    0.000 markers.py:299(get_fillstyle)
       51    0.000    0.000    0.000    0.000 version.py:202(<genexpr>)
        1    0.000    0.000    0.000    0.000 _tricontour.py:1(<module>)
        1    0.000    0.000    0.003    0.003 textpath.py:1(<module>)
       22    0.000    0.000    0.000    0.000 ast.py:33(parse)
       29    0.000    0.000    0.000    0.000 text.py:1150(set_fontweight)
        3    0.000    0.000    0.002    0.001 patches.py:2184(__init_subclass__)
       31    0.000    0.000    0.000    0.000 transforms.py:2307(get_matrix)
        2    0.000    0.000    0.000    0.000 base.py:5377(append)
       15    0.000    0.000    0.000    0.000 rcsetup.py:85(_listify_validator)
       12    0.000    0.000    0.001    0.000 axis.py:237(set_clip_path)
        1    0.000    0.000    0.000    0.000 ExifTags.py:340(<dictcomp>)
        2    0.000    0.000    0.000    0.000 {pandas._libs.algos.take_1d_int64_int64}
        3    0.000    0.000    0.002    0.001 generic.py:6258(copy)
       96    0.000    0.000    0.000    0.000 text.py:323(get_transform_rotates_text)
       63    0.000    0.000    0.000    0.000 inspect.py:91(ismethoddescriptor)
       49    0.000    0.000    0.000    0.000 core.py:2333(_generateDefaultName)
        1    0.000    0.000    0.000    0.000 unicode.py:3(<module>)
        1    0.000    0.000    0.000    0.000 pathlib.py:331(_resolve)
       18    0.000    0.000    0.000    0.000 cycler.py:415(cycler)
        3    0.000    0.000    0.000    0.000 managers.py:616(copy)
       41    0.000    0.000    0.000    0.000 backend_bases.py:994(set_linewidth)
       29    0.000    0.000    0.000    0.000 ticker.py:500(set_useLocale)
        1    0.000    0.000    0.000    0.000 unicode.py:85(identchars)
       10    0.000    0.000    0.000    0.000 deprecation.py:242(__set_name__)
        1    0.000    0.000    0.013    0.013 figure.py:1190(colorbar)
        2    0.000    0.000    0.000    0.000 concat.py:246(_maybe_reindex_columns_na_proxy)
       18    0.000    0.000    0.000    0.000 _collections_abc.py:78(_check_methods)
       11    0.000    0.000    0.000    0.000 rcsetup.py:336(_validate_cmap)
        5    0.000    0.000    0.000    0.000 collections.py:564(set_linewidth)
        2    0.000    0.000    0.208    0.104 transformer.py:314(__init__)
       81    0.000    0.000    0.000    0.000 markers.py:482(_set_nothing)
        4    0.000    0.000    0.000    0.000 function_base.py:2269(__init__)
       66    0.000    0.000    0.000    0.000 ticker.py:238(set_locs)
       37    0.000    0.000    0.000    0.000 inference.py:188(is_array_like)
      108    0.000    0.000    0.000    0.000 generic.py:664(ndim)
        4    0.000    0.000    0.000    0.000 managers.py:2361(_merge_blocks)
       96    0.000    0.000    0.000    0.000 text.py:606(get_wrap)
        3    0.000    0.000    0.000    0.000 gridspec.py:413(get_subplot_params)
       33    0.000    0.000    0.000    0.000 {method 'set' of 'ContextVar' objects}
        1    0.000    0.000    0.000    0.000 __init__.py:6(<module>)
       17    0.000    0.000    0.000    0.000 inspect.py:2607(__hash__)
      112    0.000    0.000    0.000    0.000 {method 'items' of 'mappingproxy' objects}
      134    0.000    0.000    0.000    0.000 {built-in method math.sin}
       28    0.000    0.000    0.000    0.000 core.py:587(filled)
        1    0.000    0.000    0.010    0.010 geo.py:1(<module>)
       23    0.000    0.000    0.000    0.000 base.py:286(is_dtype)
      104    0.000    0.000    0.000    0.000 _docstring.py:86(copy)
       28    0.000    0.000    0.000    0.000 rcsetup.py:449(_validate_linestyle)
       78    0.000    0.000    0.000    0.000 util.py:108(get)
        4    0.000    0.000    0.000    0.000 figure.py:115(__init__)
       10    0.000    0.000    0.000    0.000 indexing.py:2522(check_bool_indexer)
       23    0.000    0.000    0.000    0.000 transforms.py:656(<listcomp>)
      107    0.000    0.000    0.000    0.000 {method '__contains__' of 'frozenset' objects}
       23    0.000    0.000    0.000    0.000 transforms.py:657(<listcomp>)
       21    0.000    0.000    0.000    0.000 blocks.py:2250(extend_blocks)
        1    0.000    0.000    0.000    0.000 patches.py:3062(ArrowStyle)
        1    0.000    0.000    0.000    0.000 GimpGradientFile.py:16(<module>)
        1    0.000    0.000    0.002    0.002 exceptions.py:3(<module>)
        4    0.000    0.000    0.000    0.000 transforms.py:856(update_from_path)
       19    0.000    0.000    0.000    0.000 _collections_abc.py:767(__contains__)
        9    0.000    0.000    0.000    0.000 missing.py:268(_isna_array)
       91    0.000    0.000    0.000    0.000 transforms.py:2122(get_matrix)
        1    0.000    0.000    0.000    0.000 ImageColor.py:20(<module>)
        2    0.000    0.000    0.000    0.000 __init__.py:504(_get_config_or_cache_dir)
       47    0.000    0.000    0.000    0.000 {method 'issuperset' of 'set' objects}
        1    0.000    0.000    0.000    0.000 _enums.py:1(<module>)
       27    0.000    0.000    0.000    0.000 axis.py:223(get_tick_padding)
      111    0.000    0.000    0.000    0.000 base.py:2017(nlevels)
       81    0.000    0.000    0.000    0.000 {method 'index' of 'list' objects}
        1    0.000    0.000    0.000    0.000 core.py:3459(__init__)
        1    0.000    0.000    0.000    0.000 util.py:2(<module>)
       17    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:159(_path_isdir)
        4    0.000    0.000    0.004    0.001 axis.py:1082(set_clip_path)
        1    0.000    0.000    0.000    0.000 {built-in method posix.scandir}
        7    0.000    0.000    0.000    0.000 deprecation.py:363(<listcomp>)
        4    0.000    0.000    0.000    0.000 _base.py:3035(<listcomp>)
        4    0.000    0.000    0.000    0.000 blocks.py:1758(take_nd)
        7    0.000    0.000    0.000    0.000 managers.py:1061(from_blocks)
      119    0.000    0.000    0.000    0.000 backend_bases.py:179(open_group)
       39    0.000    0.000    0.000    0.000 loader.py:297(__contains__)
        4    0.000    0.000    0.001    0.000 core.py:1437(__mul__)
       75    0.000    0.000    0.000    0.000 traitlets.py:692(__get__)
       25    0.000    0.000    0.000    0.000 {built-in method _functools.reduce}
        2    0.000    0.000    0.000    0.000 typing.py:1865(__new__)
        4    0.000    0.000    0.000    0.000 _base.py:2877(<listcomp>)
       12    0.000    0.000    0.000    0.000 axis.py:1663(update_units)
        7    0.000    0.000    0.000    0.000 collections.py:729(_set_facecolor)
        1    0.000    0.000    0.000    0.000 _constrained_layout.py:1(<module>)
        7    0.000    0.000    0.000    0.000 managers.py:1854(_consolidate_check)
        8    0.000    0.000    0.000    0.000 colors.py:1595(make_norm_from_scale)
        4    0.000    0.000    0.000    0.000 colors.py:1662(Norm)
        1    0.000    0.000    0.078    0.078 colorbar.py:1(<module>)
        6    0.000    0.000    0.167    0.028 series.py:4661(apply)
        2    0.000    0.000    0.000    0.000 frame.py:8267(groupby)
      8/7    0.000    0.000    0.004    0.001 __init__.py:109(import_module)
        8    0.000    0.000    0.000    0.000 configurable.py:125(<listcomp>)
        2    0.000    0.000    0.000    0.000 api.py:108(_get_distinct_objs)
        2    0.000    0.000    0.000    0.000 array.py:1322(<listcomp>)
       71    0.000    0.000    0.000    0.000 backend_bases.py:828(get_clip_path)
       12    0.000    0.000    0.000    0.000 sre_parse.py:295(_class_escape)
        1    0.000    0.000    0.000    0.000 markers.py:1(<module>)
        4    0.000    0.000    0.002    0.001 accessor.py:2285(startswith)
        2    0.000    0.000    0.001    0.001 generic.py:5332(_reindex_with_indexers)
      3/2    0.000    0.000    0.000    0.000 gridspec.py:507(get_subplot_params)
        1    0.000    0.000    0.000    0.000 _afm.py:1(<module>)
       23    0.000    0.000    0.000    0.000 markers.py:378(get_transform)
       18    0.000    0.000    0.000    0.000 cycler.py:474(_cycler)
        1    0.000    0.000    0.000    0.000 tokenize.py:295(detect_encoding)
      204    0.000    0.000    0.000    0.000 {pandas._libs.hashtable.object_hash}
        9    0.000    0.000    0.000    0.000 collections.py:654(_bcast_lwls)
        1    0.000    0.000    0.000    0.000 artist.py:117(Artist)
       30    0.000    0.000    0.000    0.000 axis.py:1792(set_major_formatter)
       11    0.000    0.000    0.000    0.000 markers.py:805(_set_tickup)
        2    0.000    0.000    0.000    0.000 managers.py:944(take)
        8    0.000    0.000    0.000    0.000 numeric.py:77(zeros_like)
      119    0.000    0.000    0.000    0.000 backend_bases.py:186(close_group)
        7    0.000    0.000    0.000    0.000 array.py:138(from_shapely)
        1    0.000    0.000    0.000    0.000 common.py:6(<module>)
        4    0.000    0.000    0.000    0.000 numpy_.py:69(__init__)
        1    0.000    0.000    0.000    0.000 _mathtext_data.py:461(<dictcomp>)
        2    0.000    0.000    0.000    0.000 _base.py:827(set_figure)
       63    0.000    0.000    0.000    0.000 inspect.py:286(isbuiltin)
       97    0.000    0.000    0.000    0.000 {method 'item' of 'numpy.ndarray' objects}
        4    0.000    0.000    0.000    0.000 gridspec.py:228(__getitem__)
      108    0.000    0.000    0.000    0.000 {built-in method math.floor}
       23    0.000    0.000    0.000    0.000 lines.py:712(_get_transformed_path)
       38    0.000    0.000    0.000    0.000 loader.py:310(_has_section)
       16    0.000    0.000    0.000    0.000 ticker.py:1651(nonsingular)
        1    0.000    0.000    0.000    0.000 _cm.py:158(<dictcomp>)
        3    0.000    0.000    0.000    0.000 patches.py:689(__init__)
        4    0.000    0.000    0.000    0.000 base.py:588(_dtype_to_subclass)
        1    0.000    0.000    0.001    0.001 traceback.py:321(extract)
      204    0.000    0.000    0.000    0.000 base.py:138(<genexpr>)
       13    0.000    0.000    0.000    0.000 {built-in method builtins.locals}
        2    0.000    0.000    0.000    0.000 algorithms.py:287(_check_object_for_strings)
        7    0.000    0.000    0.000    0.000 core.py:8025(asarray)
      122    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_bool}
        1    0.000    0.000    0.000    0.000 category.py:1(<module>)
        2    0.000    0.000    0.000    0.000 grouper.py:467(__init__)
        1    0.000    0.000    0.000    0.000 core.py:1032(enable_packrat)
       97    0.000    0.000    0.000    0.000 core.py:5713(<genexpr>)
       36    0.000    0.000    0.000    0.000 rcsetup.py:711(<genexpr>)
       46    0.000    0.000    0.000    0.000 backend_agg.py:273(points_to_pixels)
       12    0.000    0.000    0.002    0.000 rcsetup.py:401(validate_font_properties)
        1    0.000    0.000    0.001    0.001 api.py:1(<module>)
        1    0.000    0.000    0.000    0.000 results.py:2(<module>)
        2    0.000    0.000    0.000    0.000 axis.py:2010(_set_tick_locations)
        2    0.000    0.000    0.208    0.104 transformer.py:541(from_crs)
       59    0.000    0.000    0.000    0.000 axis.py:701(isDefault_majfmt)
        2    0.000    0.000    0.000    0.000 algorithms.py:530(factorize_array)
        1    0.000    0.000    0.000    0.000 _compat.py:3(<module>)
        7    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1179(exec_module)
       60    0.000    0.000    0.000    0.000 axis.py:693(isDefault_majloc)
        2    0.000    0.000    0.000    0.000 algorithms.py:1795(safe_sort)
       32    0.000    0.000    0.000    0.000 __init__.py:227(_releaseLock)
        1    0.000    0.000    0.000    0.000 twodim_base.py:162(eye)
       27    0.000    0.000    0.000    0.000 ticker.py:1755(__call__)
        4    0.000    0.000    0.000    0.000 inspect.py:2888(_hash_basis)
        6    0.000    0.000    0.167    0.028 apply.py:1108(apply)
       36    0.000    0.000    0.000    0.000 core.py:4148(<genexpr>)
        1    0.000    0.000    0.000    0.000 axis3d.py:53(Axis)
        4    0.000    0.000    0.000    0.000 functools.py:843(register)
       23    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:175(_path_isabs)
        7    0.000    0.000    0.000    0.000 collections.py:827(_set_mappable_flags)
       12    0.000    0.000    0.000    0.000 axis.py:2445(get_ticks_position)
        7    0.000    0.000    0.000    0.000 artist.py:266(have_units)
       10    0.000    0.000    0.000    0.000 axis.py:2208(setter)
       52    0.000    0.000    0.000    0.000 core.py:3819(<genexpr>)
        2    0.000    0.000    0.002    0.001 generic.py:3873(_take)
        1    0.000    0.000    0.000    0.000 colorbar.py:195(Colorbar)
       61    0.000    0.000    0.000    0.000 inspect.py:2275(<lambda>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:489(_init_fn)
       59    0.000    0.000    0.000    0.000 image.py:123(<genexpr>)
       11    0.000    0.000    0.000    0.000 blocks.py:544(copy)
        2    0.000    0.000    0.000    0.000 managers.py:1040(_verify_integrity)
       23    0.000    0.000    0.000    0.000 artist.py:632(get_snap)
        2    0.000    0.000    0.010    0.005 concat.py:146(concat)
        1    0.000    0.000    0.000    0.000 cycler.py:1(<module>)
        1    0.000    0.000    0.000    0.000 core.py:3596(ParseExpression)
        1    0.000    0.000    0.000    0.000 traitlets.py:1886(traits)
       15    0.000    0.000    0.000    0.000 _collections_abc.py:783(values)
       23    0.000    0.000    0.000    0.000 lines.py:933(get_markeredgecolor)
       10    0.000    0.000    0.000    0.000 formatters.py:511(pop)
        8    0.000    0.000    0.000    0.000 arraysetops.py:766(isin)
        1    0.000    0.000    0.000    0.000 scale.py:734(_get_scale_docs)
       18    0.000    0.000    0.000    0.000 transforms.py:56(_make_str_method)
       71    0.000    0.000    0.000    0.000 backend_bases.py:880(get_snap)
       54    0.000    0.000    0.000    0.000 enum.py:244(<genexpr>)
        1    0.000    0.000    0.000    0.000 pylabtools.py:241(select_figure_formats)
       10    0.000    0.000    0.000    0.000 results.py:436(<listcomp>)
       16    0.000    0.000    0.000    0.000 axis.py:499(_get_text1_transform)
        1    0.000    0.000    0.000    0.000 backend_inline.py:161(configure_inline_support)
        2    0.000    0.000    0.000    0.000 base.py:5402(<setcomp>)
       95    0.000    0.000    0.000    0.000 results.py:17(__getitem__)
       11    0.000    0.000    0.000    0.000 axis.py:2087(<listcomp>)
      142    0.000    0.000    0.000    0.000 {pandas._libs.algos.ensure_platform_int}
       10    0.000    0.000    0.000    0.000 axis.py:821(limit_range_for_scale)
        1    0.000    0.000    0.000    0.000 config.py:32(InlineBackend)
        8    0.000    0.000    0.000    0.000 sre_compile.py:432(_generate_overlap_table)
       12    0.000    0.000    0.000    0.000 core.py:5667(<lambda>)
        2    0.000    0.000    0.000    0.000 pyplot.py:893(gcf)
       16    0.000    0.000    0.000    0.000 array_ops.py:354(fill_bool)
        1    0.000    0.000    0.005    0.005 axis3d.py:5(<module>)
        1    0.000    0.000    0.000    0.000 _legacy.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _layoutgrid.py:1(<module>)
       96    0.000    0.000    0.000    0.000 text.py:1351(get_parse_math)
        1    0.000    0.000    0.013    0.013 gridspec.py:265(subplots)
       33    0.000    0.000    0.000    0.000 {method 'reset' of 'ContextVar' objects}
        5    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(atleast_2d)
        1    0.000    0.000    0.000    0.000 abc.py:1(<module>)
       58    0.000    0.000    0.000    0.000 results.py:244(__bool__)
      138    0.000    0.000    0.000    0.000 core.py:772(postParse)
       19    0.000    0.000    0.000    0.000 {method 'flatten' of 'numpy.ndarray' objects}
        1    0.000    0.000    0.000    0.000 path.py:1(<module>)
        1    0.000    0.000    0.000    0.000 unicode.py:99(identbodychars)
       64    0.000    0.000    0.000    0.000 backend_bases.py:998(set_url)
        1    0.000    0.000    0.000    0.000 backend_agg.py:379(FigureCanvasAgg)
       12    0.000    0.000    0.000    0.000 typing.py:875(copy_with)
       27    0.000    0.000    0.000    0.000 rcsetup.py:563(_validate_greaterequal0_lessequal1)
       52    0.000    0.000    0.000    0.000 _collections_abc.py:315(__subclasshook__)
       71    0.000    0.000    0.000    0.000 text.py:344(get_rotation_mode)
        6    0.000    0.000    0.000    0.000 array.py:1041(astype)
        7    0.000    0.000    0.001    0.000 geoseries.py:620(_wrapped_pandas_method)
        9    0.000    0.000    0.000    0.000 pathlib.py:736(_make_child)
       69    0.000    0.000    0.000    0.000 artist.py:730(get_path_effects)
        5    0.000    0.000    0.000    0.000 core.py:1704(mask_or)
       10    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(empty_like)
        1    0.000    0.000    0.000    0.000 ImageFile.py:30(<module>)
        1    0.000    0.000    0.000    0.000 bezier.py:1(<module>)
        1    0.000    0.000    0.000    0.000 transforms.py:222(BboxBase)
        1    0.000    0.000    0.000    0.000 results.py:27(ParseResults)
       35    0.000    0.000    0.000    0.000 typing.py:919(<genexpr>)
        1    0.000    0.000    0.000    0.000 _binary.py:15(<module>)
      114    0.000    0.000    0.000    0.000 base.py:1734(name)
        4    0.000    0.000    0.000    0.000 base.py:742(__iter__)
       76    0.000    0.000    0.000    0.000 patches.py:763(rotation_point)
       12    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(searchsorted)
        1    0.000    0.000    0.000    0.000 __init__.py:33(__getattr__)
        2    0.000    0.000    0.000    0.000 base.py:5411(<listcomp>)
       44    0.000    0.000    0.000    0.000 unicode.py:17(<genexpr>)
       16    0.000    0.000    0.000    0.000 axis.py:502(_get_text2_transform)
        8    0.000    0.000    0.000    0.000 typing.py:524(__init__)
        2    0.000    0.000    0.000    0.000 base.py:4318(reindex)
        2    0.000    0.000    0.012    0.006 generic.py:1015(_wrap_applied_output)
       46    0.000    0.000    0.000    0.000 backend_bases.py:1006(set_snap)
       33    0.000    0.000    0.000    0.000 core.py:3417(shape)
        1    0.000    0.000    0.000    0.000 axis.py:36(Tick)
        1    0.000    0.000    0.000    0.000 transforms.py:673(Bbox)
       10    0.000    0.000    0.000    0.000 core.py:1424(getmaskarray)
        2    0.000    0.000    0.000    0.000 posixpath.py:334(normpath)
       23    0.000    0.000    0.000    0.000 markers.py:321(get_capstyle)
       29    0.000    0.000    0.000    0.000 axis.py:1818(set_minor_formatter)
        2    0.000    0.000    0.000    0.000 types.py:100(prepare_class)
       45    0.000    0.000    0.000    0.000 typing.py:902(<genexpr>)
       38    0.000    0.000    0.000    0.000 results.py:262(haskeys)
       71    0.000    0.000    0.000    0.000 backend_bases.py:843(get_dashes)
        2    0.000    0.000    0.001    0.000 backend_agg.py:405(get_renderer)
     16/4    0.000    0.000    0.000    0.000 ast.py:79(_convert)
       36    0.000    0.000    0.001    0.000 traceback.py:285(line)
        1    0.000    0.000    0.003    0.003 table.py:9(<module>)
        1    0.000    0.000    0.000    0.000 _axes.py:5680(_pcolorargs)
      148    0.000    0.000    0.000    0.000 {method 'pop' of 'collections.deque' objects}
       17    0.000    0.000    0.000    0.000 rcsetup.py:273(validate_color_or_auto)
       11    0.000    0.000    0.000    0.000 transforms.py:1588(transform_path)
        2    0.000    0.000    0.000    0.000 _validators.py:268(validate_axis_style_args)
        8    0.000    0.000    0.000    0.000 {method 'clear' of 'collections.OrderedDict' objects}
        6    0.000    0.000    0.000    0.000 managers.py:447(astype)
        1    0.000    0.000    0.000    0.000 fnmatch.py:80(translate)
       65    0.000    0.000    0.000    0.000 {method 'insert' of 'list' objects}
        2    0.000    0.000    0.210    0.105 backend_bases.py:2067(draw_idle)
       11    0.000    0.000    0.000    0.000 axis.py:438(_get_text1_transform)
       16    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(unique)
        6    0.000    0.000    0.000    0.000 _base.py:3534(get_xlim)
     12/2    0.000    0.000    0.001    0.000 core.py:1503(makeOptionalList)
       14    0.000    0.000    0.000    0.000 core.py:5585(__init__)
       29    0.000    0.000    0.000    0.000 ticker.py:454(set_useOffset)
        7    0.000    0.000    0.000    0.000 core.py:1392(__radd__)
       58    0.000    0.000    0.000    0.000 axis.py:717(isDefault_minfmt)
        8    0.000    0.000    0.000    0.000 base.py:821(_view)
       71    0.000    0.000    0.000    0.000 backend_bases.py:1032(get_hatch_color)
       37    0.000    0.000    0.000    0.000 text.py:432(<listcomp>)
       51    0.000    0.000    0.000    0.000 colors.py:384(<genexpr>)
       27    0.000    0.000    0.000    0.000 __init__.py:193(_checkLevel)
       64    0.000    0.000    0.000    0.000 core.py:3858(<genexpr>)
       64    0.000    0.000    0.000    0.000 fromnumeric.py:2107(_clip_dispatcher)
        9    0.000    0.000    0.000    0.000 core.py:3115(view)
        2    0.000    0.000    0.000    0.000 common.py:235(asarray_tuplesafe)
        4    0.000    0.000    0.000    0.000 getipython.py:17(get_ipython)
        2    0.000    0.000    0.000    0.000 base.py:7396(_maybe_cast_data_without_dtype)
        6    0.000    0.000    0.000    0.000 apply.py:1089(__init__)
       14    0.000    0.000    0.001    0.000 core.py:675(<listcomp>)
        1    0.000    0.000    0.000    0.000 __init__.py:183(_get_version)
       18    0.000    0.000    0.000    0.000 {method 'translate' of 'bytearray' objects}
        6    0.000    0.000    0.000    0.000 managers.py:1917(from_blocks)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2813(__init__)
       17    0.000    0.000    0.000    0.000 axis.py:1579(get_major_locator)
       27    0.000    0.000    0.000    0.000 __init__.py:771(__init__)
        8    0.000    0.000    0.000    0.000 core.py:4758(__init__)
       17    0.000    0.000    0.000    0.000 core.py:1545(_shrink_mask)
        5    0.000    0.000    0.000    0.000 rcsetup.py:212(_validate_pathlike)
       67    0.000    0.000    0.000    0.000 axis.py:394(<dictcomp>)
       60    0.000    0.000    0.000    0.000 axis.py:709(isDefault_minloc)
        4    0.000    0.000    0.000    0.000 _base.py:1702(set_adjustable)
       71    0.000    0.000    0.000    0.000 backend_bases.py:1044(get_sketch_params)
        1    0.000    0.000    0.000    0.000 _axes.py:104(set_title)
        8    0.000    0.000    0.000    0.000 missing.py:309(_isna_string_dtype)
       15    0.000    0.000    0.000    0.000 {method 'partition' of 'str' objects}
       67    0.000    0.000    0.000    0.000 axis.py:389(<dictcomp>)
       13    0.000    0.000    0.000    0.000 os.py:754(encode)
        3    0.000    0.000    0.000    0.000 cm.py:497(set_array)
       12    0.000    0.000    0.000    0.000 fromnumeric.py:1345(searchsorted)
        6    0.000    0.000    0.000    0.000 blocks.py:221(make_block)
        2    0.000    0.000    0.000    0.000 crs.py:1451(is_geographic)
      168    0.000    0.000    0.000    0.000 _collections_abc.py:825(__iter__)
        1    0.000    0.000    0.000    0.000 patches.py:2267(BoxStyle)
       57    0.000    0.000    0.000    0.000 multiarray.py:1079(copyto)
        7    0.000    0.000    0.000    0.000 blocks.py:1785(_slice)
       26    0.000    0.000    0.000    0.000 axis.py:1718(have_units)
       27    0.000    0.000    0.000    0.000 colors.py:231(_has_alpha_channel)
       11    0.000    0.000    0.000    0.000 {method 'all' of 'numpy.ndarray' objects}
       97    0.000    0.000    0.000    0.000 {built-in method _warnings._filters_mutated}
        9    0.000    0.000    0.000    0.000 text.py:591(set_clip_box)
        3    0.000    0.000    0.000    0.000 weakref.py:105(__init__)
      9/7    0.000    0.000    0.004    0.001 <frozen importlib._bootstrap>:1018(_gcd_import)
       10    0.000    0.000    0.000    0.000 common.py:319(is_datetime64_dtype)
       11    0.000    0.000    0.000    0.000 transforms.py:1597(transform_path_affine)
        7    0.000    0.000    0.001    0.000 geoseries.py:628(__getitem__)
        2    0.000    0.000    0.000    0.000 transforms.py:1395(contains_branch_seperately)
       10    0.000    0.000    0.000    0.000 collections.py:213(get_offset_transform)
       71    0.000    0.000    0.000    0.000 backend_bases.py:1021(get_hatch)
        6    0.000    0.000    0.000    0.000 patches.py:2237(<listcomp>)
       20    0.000    0.000    0.000    0.000 _dtype.py:330(_name_includes_bit_suffix)
        1    0.000    0.000    0.000    0.000 unicode.py:80(alphanums)
       23    0.000    0.000    0.000    0.000 transforms.py:2791(get_affine)
        2    0.000    0.000    0.000    0.000 typing.py:1410(get_type_hints)
        2    0.000    0.000    0.000    0.000 _base.py:3121(set_axisbelow)
        7    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1155(__init__)
       32    0.000    0.000    0.000    0.000 {method 'acquire' of '_thread.RLock' objects}
        1    0.000    0.000    0.000    0.000 core.py:2890(Regex)
        4    0.000    0.000    0.000    0.000 algorithms.py:197(_reconstruct_data)
        8    0.000    0.000    0.000    0.000 core.py:561(_setResultsName)
        1    0.000    0.000    0.000    0.000 texmanager.py:56(TexManager)
        6    0.000    0.000    0.000    0.000 traitlets.py:534(__init__)
       13    0.000    0.000    0.000    0.000 __init__.py:235(_connect_picklable)
        4    0.000    0.000    0.000    0.000 utils.py:191(validate_indices)
       57    0.000    0.000    0.000    0.000 __init__.py:274(<genexpr>)
        6    0.000    0.000    0.000    0.000 geoseries.py:955(set_crs)
       21    0.000    0.000    0.000    0.000 artist.py:269(<genexpr>)
       27    0.000    0.000    0.000    0.000 core.py:3222(_scalar_heuristic)
        1    0.000    0.000    0.000    0.000 legend_handler.py:1(<module>)
        6    0.000    0.000    0.000    0.000 collections.py:785(set_edgecolor)
        1    0.000    0.000    0.000    0.000 figure.py:175(__init__)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:1(<module>)
        2    0.000    0.000    0.002    0.001 frame.py:5186(reindex)
        6    0.000    0.000    0.000    0.000 apply.py:112(__init__)
       15    0.000    0.000    0.000    0.000 posixpath.py:164(islink)
        1    0.000    0.000    0.001    0.001 linecache.py:80(updatecache)
       11    0.000    0.000    0.000    0.000 axis.py:441(_get_text2_transform)
       71    0.000    0.000    0.000    0.000 backend_bases.py:1040(get_hatch_linewidth)
        6    0.000    0.000    0.010    0.002 _decorators.py:323(wrapper)
        6    0.000    0.000    0.000    0.000 deprecation.py:506(suppress_matplotlib_deprecation_warning)
        6    0.000    0.000    0.000    0.000 rcsetup.py:174(_make_type_validator)
        1    0.000    0.000    0.000    0.000 typing.py:1191(__init_subclass__)
       10    0.000    0.000    0.000    0.000 deprecation.py:239(__init__)
        4    0.000    0.000    0.000    0.000 transforms.py:932(update_from_data_xy)
       10    0.000    0.000    0.000    0.000 dataclasses.py:612(_is_type)
      102    0.000    0.000    0.000    0.000 base.py:386(_can_hold_na)
       10    0.000    0.000    0.000    0.000 core.py:4430(_generateDefaultName)
        2    0.000    0.000    0.000    0.000 figure.py:761(_add_axes_internal)
       32    0.000    0.000    0.000    0.000 codecs.py:260(__init__)
       67    0.000    0.000    0.000    0.000 axis.py:376(<dictcomp>)
       14    0.000    0.000    0.000    0.000 inspect.py:3040(bind)
       12    0.000    0.000    0.000    0.000 base.py:170(crs)
        1    0.000    0.000    0.000    0.000 backend_bases.py:151(RendererBase)
        9    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(atleast_1d)
        1    0.000    0.000    0.000    0.000 contour.py:77(ContourLabeler)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1281(XMLPullParser)
        1    0.000    0.000    0.000    0.000 rcsetup.py:131(_validate_date)
        2    0.000    0.000    0.000    0.000 functools.py:799(singledispatch)
       54    0.000    0.000    0.000    0.000 {method '__exit__' of '_thread.RLock' objects}
        8    0.000    0.000    0.000    0.000 array_ops.py:295(na_logical_op)
        2    0.000    0.000    0.000    0.000 pyplot.py:123(install_repl_displayhook)
       15    0.000    0.000    0.000    0.000 rcsetup.py:152(validate_axisbelow)
       12    0.000    0.000    0.000    0.000 collections.py:756(get_edgecolor)
        2    0.000    0.000    0.000    0.000 base.py:1268(copy)
       30    0.000    0.000    0.000    0.000 __init__.py:1715(<genexpr>)
        1    0.000    0.000    0.000    0.000 colorbar.py:1118(_mesh)
        2    0.000    0.000    0.001    0.000 _base.py:1221(<dictcomp>)
       36    0.000    0.000    0.000    0.000 {built-in method numpy.core._multiarray_umath.normalize_axis_index}
        1    0.000    0.000    0.000    0.000 __init__.py:129(CallbackRegistry)
       71    0.000    0.000    0.000    0.000 multiarray.py:668(result_type)
        2    0.000    0.000    0.686    0.343 geodataframe.py:1284(to_crs)
        6    0.000    0.000    0.000    0.000 _base.py:3783(get_ylim)
        8    0.000    0.000    0.000    0.000 common.py:99(_maybe_match_name)
       71    0.000    0.000    0.000    0.000 backend_bases.py:801(restore)
        5    0.000    0.000    0.000    0.000 transforms.py:988(intervalx)
        5    0.000    0.000    0.000    0.000 blocks.py:160(_consolidate_key)
      108    0.000    0.000    0.000    0.000 common.py:182(<genexpr>)
        5    0.000    0.000    0.000    0.000 core.py:4972(_generateDefaultName)
        2    0.000    0.000    0.006    0.003 collections.py:1370(__init__)
        1    0.000    0.000    0.000    0.000 managers.py:2319(_consolidate)
        9    0.000    0.000    0.000    0.000 collections.py:687(<listcomp>)
       55    0.000    0.000    0.000    0.000 colors.py:394(<genexpr>)
       12    0.000    0.000    0.000    0.000 dataclasses.py:416(_field_init)
        1    0.000    0.000    0.001    0.001 traceback.py:200(extract_stack)
        1    0.000    0.000    0.000    0.000 core.py:257(<listcomp>)
        6    0.000    0.000    0.000    0.000 pathlib.py:1434(is_dir)
        6    0.000    0.000    0.000    0.000 artist.py:1097(set_label)
        8    0.000    0.000    0.001    0.000 colorbar.py:129(get_window_extent)
       54    0.000    0.000    0.000    0.000 fromnumeric.py:2600(_ptp_dispatcher)
        4    0.000    0.000    0.000    0.000 collections.py:692(set_antialiased)
        4    0.000    0.000    0.000    0.000 traitlets.py:2099(__init__)
        3    0.000    0.000    0.001    0.000 _base.py:790(set_subplotspec)
       14    0.000    0.000    0.000    0.000 core.py:1644(make_mask_none)
        4    0.000    0.000    0.000    0.000 generic.py:5977(f)
       31    0.000    0.000    0.000    0.000 core.py:4100(<genexpr>)
        4    0.000    0.000    0.000    0.000 generic.py:5959(_protect_consolidate)
       96    0.000    0.000    0.000    0.000 util.py:199(no_escape_re_range_char)
        1    0.000    0.000    0.000    0.000 hatch.py:1(<module>)
        2    0.000    0.000    0.000    0.000 _pylab_helpers.py:100(get_active)
        1    0.000    0.000    0.000    0.000 texmanager.py:1(<module>)
        1    0.000    0.000    0.000    0.000 pylabtools.py:266(<listcomp>)
        8    0.000    0.000    0.000    0.000 __init__.py:152(align_method_SERIES)
        2    0.000    0.000    0.002    0.001 concat.py:527(_concatenate_join_units)
       15    0.000    0.000    0.000    0.000 text.py:434(<listcomp>)
       12    0.000    0.000    0.000    0.000 inspect.py:1565(_static_getmro)
        6    0.000    0.000    0.000    0.000 patches.py:730(get_path)
       30    0.000    0.000    0.000    0.000 _collections_abc.py:283(__subclasshook__)
        2    0.000    0.000    0.000    0.000 base.py:5407(_concat)
        1    0.000    0.000    0.000    0.000 patches.py:665(Rectangle)
       45    0.000    0.000    0.000    0.000 transforms.py:141(<dictcomp>)
        1    0.000    0.000    0.000    0.000 axis.py:778(_set_axes_scale)
        1    0.000    0.000    0.001    0.001 ImagePalette.py:19(<module>)
        6    0.000    0.000    0.000    0.000 core.py:5711(<lambda>)
        1    0.000    0.000    0.000    0.000 units.py:1(<module>)
       12    0.000    0.000    0.000    0.000 dataclasses.py:322(field)
        2    0.000    0.000    0.000    0.000 numeric.py:132(_ensure_array)
        4    0.000    0.000    0.002    0.000 object_array.py:133(_str_startswith)
       20    0.000    0.000    0.000    0.000 deprecation.py:171(__set_name__)
        3    0.000    0.000    0.000    0.000 _base.py:1766(set_box_aspect)
        1    0.000    0.000    0.000    0.000 gridspec.py:27(GridSpecBase)
        8    0.000    0.000    0.000    0.000 util.py:116(clear)
       12    0.000    0.000    0.000    0.000 fromnumeric.py:2523(cumsum)
       10    0.000    0.000    0.000    0.000 core.py:4147(_generateDefaultName)
        8    0.000    0.000    0.000    0.000 arraylike.py:78(__or__)
        1    0.000    0.000    0.001    0.001 colorbar.py:581(_add_solids)
       16    0.000    0.000    0.000    0.000 axis.py:761(get_scale)
        4    0.000    0.000    0.000    0.000 ast.py:54(literal_eval)
        8    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(zeros_like)
        8    0.000    0.000    0.000    0.000 _base.py:1082(get_position)
        1    0.000    0.000    0.000    0.000 ExifTags.py:304(GPS)
       10    0.000    0.000    0.000    0.000 core.py:671(getdata)
        4    0.000    0.000    0.000    0.000 colors.py:1644(_make_norm_from_scale)
        1    0.000    0.000    0.000    0.000 cm.py:374(ScalarMappable)
        6    0.000    0.000    0.000    0.000 array.py:157(to_shapely)
        1    0.000    0.000    0.000    0.000 backend_inline.py:209(_enable_matplotlib_integration)
        1    0.000    0.000    0.000    0.000 transforms.py:1876(Affine2D)
        1    0.000    0.000    0.000    0.000 figure.py:2125(SubFigure)
       13    0.000    0.000    0.000    0.000 textwrap.py:465(indent)
        4    0.000    0.000    0.000    0.000 transformer.py:337(_transformer)
       12    0.000    0.000    0.000    0.000 dataclasses.py:244(__init__)
        1    0.000    0.000    0.000    0.000 widgets.py:2032(MultiCursor)
       18    0.000    0.000    0.000    0.000 ticker.py:1726(__call__)
       47    0.000    0.000    0.000    0.000 core.py:4087(<genexpr>)
        3    0.000    0.000    0.000    0.000 _base.py:1077(_update_transScale)
        7    0.000    0.000    0.000    0.000 core.py:5590(__add__)
       25    0.000    0.000    0.000    0.000 typing.py:836(<genexpr>)
        3    0.000    0.000    0.000    0.000 gridspec.py:33(__init__)
        1    0.000    0.000    0.000    0.000 table.py:35(Cell)
        1    0.000    0.000    0.000    0.000 polar.py:803(PolarAxes)
       47    0.000    0.000    0.000    0.000 fromnumeric.py:2328(_any_dispatcher)
       30    0.000    0.000    0.000    0.000 __init__.py:115(__hash__)
        2    0.000    0.000    0.001    0.001 array.py:1309(_concat_same_type)
       12    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(cumsum)
       11    0.000    0.000    0.000    0.000 core.py:1663(__call__)
        2    0.000    0.000    0.210    0.105 pyplot.py:1000(draw)
       20    0.000    0.000    0.000    0.000 inspect.py:2889(<genexpr>)
        1    0.000    0.000    0.000    0.000 layout_engine.py:1(<module>)
       12    0.000    0.000    0.000    0.000 legend_handler.py:62(__init__)
       51    0.000    0.000    0.000    0.000 stride_tricks.py:476(_broadcast_arrays_dispatcher)
        4    0.000    0.000    0.000    0.000 _base.py:235(set_prop_cycle)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2965(NavigationToolbar2)
       19    0.000    0.000    0.000    0.000 text.py:437(<listcomp>)
        2    0.000    0.000    0.000    0.000 _base.py:3502(set_xbound)
        4    0.000    0.000    0.000    0.000 blocks.py:1908(array_values)
       33    0.000    0.000    0.000    0.000 axis.py:727(get_remove_overlapping_locs)
        2    0.000    0.000    0.002    0.001 generic.py:3778(take)
        2    0.000    0.000    0.001    0.000 core.py:5684(srange)
        1    0.000    0.000    0.000    0.000 colorbar.py:646(_do_extends)
        1    0.000    0.000    0.000    0.000 collections.py:1926(__init__)
        5    0.000    0.000    0.000    0.000 traitlets.py:870(tag)
        2    0.000    0.000    0.002    0.001 frame.py:5010(_reindex_index)
       45    0.000    0.000    0.000    0.000 transforms.py:134(<dictcomp>)
        4    0.000    0.000    0.000    0.000 inspect.py:1593(_shadowed_dict)
       50    0.000    0.000    0.000    0.000 __init__.py:1623(<lambda>)
        4    0.000    0.000    0.000    0.000 inspect.py:2897(__hash__)
       16    0.000    0.000    0.000    0.000 getlimits.py:692(max)
        6    0.000    0.000    0.000    0.000 base.py:1023(view)
       24    0.000    0.000    0.000    0.000 patches.py:2242(<genexpr>)
        8    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(in1d)
       44    0.000    0.000    0.000    0.000 artist.py:671(get_sketch_params)
        1    0.000    0.000    0.000    0.000 _text_helpers.py:1(<module>)
        1    0.000    0.000    0.001    0.001 spines.py:1(<module>)
        7    0.000    0.000    0.000    0.000 colorbar.py:1298(_extend_lower)
        2    0.000    0.000    0.000    0.000 _base.py:2859(<listcomp>)
        1    0.000    0.000    0.000    0.000 __init__.py:8(<module>)
        2    0.000    0.000    0.000    0.000 backend_bases.py:1701(_fix_ipython_backend2gui)
        8    0.000    0.000    0.002    0.000 spines.py:208(register_axis)
       68    0.000    0.000    0.000    0.000 inspect.py:2869(return_annotation)
       54    0.000    0.000    0.000    0.000 fromnumeric.py:1888(_nonzero_dispatcher)
        1    0.000    0.000    0.000    0.000 decoder.py:284(__init__)
        3    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(take)
        1    0.000    0.000    0.000    0.000 testing.py:3(<module>)
        4    0.000    0.000    0.000    0.000 accessor.py:197(_validate)
       43    0.000    0.000    0.000    0.000 {method 'get_descent' of 'matplotlib.ft2font.FT2Font' objects}
        1    0.000    0.000    0.000    0.000 _deprecate.py:1(<module>)
       25    0.000    0.000    0.000    0.000 backend_agg.py:259(get_canvas_width_height)
       23    0.000    0.000    0.000    0.000 colorbar.py:1308(_long_axis)
       58    0.000    0.000    0.000    0.000 ticker.py:259(_set_locator)
        1    0.000    0.000    0.000    0.000 ticker.py:1049(LogFormatterExponent)
       10    0.000    0.000    0.000    0.000 axis.py:2198(_make_getset_interval)
        1    0.000    0.000    0.000    0.000 offsetbox.py:1217(AnnotationBbox)
        3    0.000    0.000    0.000    0.000 weakref.py:290(update)
        2    0.000    0.000    0.001    0.000 ops.py:966(_get_compressed_codes)
       16    0.000    0.000    0.000    0.000 _base.py:2992(<genexpr>)
        1    0.000    0.000    0.000    0.000 backend_agg.py:59(RendererAgg)
       35    0.000    0.000    0.000    0.000 function_base.py:1316(_diff_dispatcher)
       11    0.000    0.000    0.000    0.000 typing_extensions.py:92(_check_generic)
       12    0.000    0.000    0.000    0.000 spines.py:587(__len__)
        2    0.000    0.000    0.000    0.000 traitlets.py:3225(__init__)
        2    0.000    0.000    0.000    0.000 <string>:2(__init__)
        1    0.000    0.000    0.000    0.000 _docstring.py:1(<module>)
        1    0.000    0.000    0.000    0.000 backend_tools.py:73(ToolBase)
        1    0.000    0.000    0.000    0.000 api.py:23(FFI)
        1    0.000    0.000    0.000    0.000 gridspec.py:1(<module>)
       27    0.000    0.000    0.000    0.000 {method 'mro' of 'type' objects}
       36    0.000    0.000    0.000    0.000 deprecation.py:398(<genexpr>)
       35    0.000    0.000    0.000    0.000 core.py:4370(recurse)
        4    0.000    0.000    0.000    0.000 colorbar.py:154(__call__)
        1    0.000    0.000    0.000    0.000 core.py:4344(ParseElementEnhance)
        1    0.000    0.000    0.000    0.000 _mathtext.py:362(BakomaFonts)
        2    0.000    0.000    0.000    0.000 {method 'sort' of 'list' objects}
        1    0.000    0.000    0.000    0.000 __init__.py:887(GrouperView)
        6    0.000    0.000    0.000    0.000 managers.py:642(copy_func)
        3    0.000    0.000    0.000    0.000 pathlib.py:1138(home)
        4    0.000    0.000    0.000    0.000 ticker.py:2155(view_limits)
       28    0.000    0.000    0.000    0.000 core.py:673(<genexpr>)
        5    0.000    0.000    0.000    0.000 configurable.py:521(instance)
       15    0.000    0.000    0.000    0.000 enum.py:715(_generate_next_value_)
       20    0.000    0.000    0.000    0.000 _dtype.py:24(_kind_name)
       53    0.000    0.000    0.000    0.000 {method 'keys' of 'dict' objects}
        1    0.000    0.000    0.000    0.000 streamplot.py:1(<module>)
        8    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(intersect1d)
        1    0.000    0.000    0.000    0.000 config.py:1(<module>)
        3    0.000    0.000    0.000    0.000 figure.py:2711(axes)
        1    0.000    0.000    0.000    0.000 _cm_listed.py:2061(<dictcomp>)
        1    0.000    0.000    0.000    0.000 collections.py:1274(RegularPolyCollection)
        1    0.000    0.000    0.000    0.000 quiver.py:446(Quiver)
        3    0.000    0.000    0.000    0.000 _fontconfig_pattern.py:59(comma_separated)
        6    0.000    0.000    0.000    0.000 common.py:1097(is_datetimelike_v_numeric)
        8    0.000    0.000    0.000    0.000 managers.py:1846(is_consolidated)
        1    0.000    0.000    0.000    0.000 ImagePalette.py:25(ImagePalette)
       10    0.000    0.000    0.000    0.000 version.py:43(parse)
        6    0.000    0.000    0.000    0.000 cm.py:575(set_cmap)
        4    0.000    0.000    0.000    0.000 transforms.py:1696(__init__)
       26    0.000    0.000    0.000    0.000 dataclasses.py:391(<genexpr>)
        8    0.000    0.000    0.000    0.000 generic.py:570(_get_block_manager_axis)
       47    0.000    0.000    0.000    0.000 core.py:4088(<genexpr>)
        2    0.000    0.000    0.000    0.000 colors.py:839(_set_extremes)
        1    0.000    0.000    0.001    0.001 __init__.py:1439(inner)
        5    0.000    0.000    0.000    0.000 transforms.py:993(intervaly)
        2    0.000    0.000    0.000    0.000 _base.py:3751(set_ybound)
       38    0.000    0.000    0.000    0.000 function_base.py:18(_linspace_dispatcher)
        6    0.000    0.000    0.000    0.000 common.py:352(is_datetime64tz_dtype)
        2    0.000    0.000    0.000    0.000 base.py:6285(_should_compare)
        2    0.000    0.000    0.000    0.000 transforms.py:1376(contains_branch)
        1    0.000    0.000    0.000    0.000 collections.py:1147(PolyCollection)
        3    0.000    0.000    0.000    0.000 _base.py:3573(set_xlim)
        4    0.000    0.000    0.000    0.000 __init__.py:1675(getEffectiveLevel)
       15    0.000    0.000    0.000    0.000 spines.py:584(__iter__)
        3    0.000    0.000    0.000    0.000 core.py:3488(__init__)
        1    0.000    0.000    0.000    0.000 offsetbox.py:208(OffsetBox)
        8    0.000    0.000    0.002    0.000 spines.py:221(clear)
        1    0.000    0.000    0.000    0.000 polar.py:18(PolarTransform)
        1    0.000    0.000    0.000    0.000 ElementTree.py:125(Element)
        1    0.000    0.000    0.000    0.000 colorbar.py:830(_get_ticker_locator_formatter)
        2    0.000    0.000    0.000    0.000 textpath.py:26(__init__)
       10    0.000    0.000    0.000    0.000 collections.py:555(get_offsets)
       10    0.000    0.000    0.000    0.000 enum.py:434(__iter__)
        1    0.000    0.000    0.001    0.001 ElementTree.py:36(_get_py3_cls)
        8    0.000    0.000    0.000    0.000 blocks.py:1641(shape)
        1    0.000    0.000    0.002    0.002 _secondary_axes.py:1(<module>)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:878(sort)
        1    0.000    0.000    0.000    0.000 patches.py:1512(Ellipse)
        7    0.000    0.000    0.000    0.000 _legacy.py:15(deprecated)
        4    0.000    0.000    0.000    0.000 collections.py:736(set_facecolor)
        9    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:948(_sanity_check)
        3    0.000    0.000    0.000    0.000 traitlets.py:705(set)
        7    0.000    0.000    0.000    0.000 legend_handler.py:172(__init__)
        1    0.000    0.000    0.000    0.000 patches.py:1256(Arrow)
        2    0.000    0.000    0.000    0.000 typing.py:1847(<dictcomp>)
       25    0.000    0.000    0.000    0.000 {method 'get_bitmap_offset' of 'matplotlib.ft2font.FT2Font' objects}
        1    0.000    0.000    0.000    0.000 backend_bases.py:757(GraphicsContextBase)
       56    0.000    0.000    0.000    0.000 pathlib.py:530(_select_from)
        6    0.000    0.000    0.000    0.000 traitlets.py:734(_validate)
        1    0.000    0.000    0.000    0.000 function_base.py:4892(meshgrid)
        1    0.000    0.000    0.000    0.000 exceptions.py:19(ParseBaseException)
        3    0.000    0.000    0.000    0.000 core.py:644(get_masked_subclass)
        4    0.000    0.000    0.000    0.000 crs.py:153(_is_epsg_code)
       33    0.000    0.000    0.000    0.000 colors.py:1252(vmax)
        4    0.000    0.000    0.000    0.000 core.py:2961(re)
        1    0.000    0.000    0.000    0.000 core.py:5554(Suppress)
        1    0.000    0.000    0.000    0.000 widgets.py:992(CheckButtons)
        1    0.000    0.000    0.000    0.000 table.py:238(Table)
        7    0.000    0.000    0.000    0.000 figure.py:145(update)
       12    0.000    0.000    0.000    0.000 pathlib.py:461(readlink)
        2    0.000    0.000    0.000    0.000 events.py:42(register)
        1    0.000    0.000    0.000    0.000 {built-in method _locale.nl_langinfo}
        1    0.000    0.000    0.000    0.000 configurable.py:50(__init__)
        9    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(shape)
        1    0.000    0.000    0.000    0.000 actions.py:3(<module>)
        2    0.000    0.000    0.000    0.000 concat.py:633(<listcomp>)
        8    0.000    0.000    0.000    0.000 base.py:543(empty)
        8    0.000    0.000    0.000    0.000 core.py:3770(filled)
       25    0.000    0.000    0.000    0.000 results.py:14(__init__)
        2    0.000    0.000    0.000    0.000 concat.py:631(_get_new_axes)
        3    0.000    0.000    0.000    0.000 blocks.py:836(_slice)
        1    0.000    0.000    0.000    0.000 ticker.py:2251(LogLocator)
        1    0.000    0.000    0.000    0.000 patches.py:4027(FancyArrowPatch)
        1    0.000    0.000    0.000    0.000 abc.py:59(Traversable)
        8    0.000    0.000    0.000    0.000 series.py:846(__array__)
       42    0.000    0.000    0.000    0.000 version.py:452(_parse_letter_version)
       57    0.000    0.000    0.000    0.000 {method 'reverse' of 'list' objects}
        2    0.000    0.000    0.000    0.000 traitlets.py:954(__new__)
        6    0.000    0.000    0.000    0.000 maps.py:560(_relocate_hi)
        1    0.000    0.000    0.000    0.000 __init__.py:27(classproperty)
        6    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(array_equal)
        6    0.000    0.000    0.000    0.000 array.py:467(geom_type)
        1    0.000    0.000    0.001    0.001 font_manager.py:1530(_load_fontmanager)
        3    0.000    0.000    0.000    0.000 mathtext.py:196(__init__)
       16    0.000    0.000    0.000    0.000 arraysetops.py:125(_unpack_tuple)
        8    0.000    0.000    0.000    0.000 configurable.py:122(section_names)
       33    0.000    0.000    0.000    0.000 numeric.py:2274(_isclose_dispatcher)
        1    0.000    0.000    0.000    0.000 widgets.py:2529(SpanSelector)
       10    0.000    0.000    0.000    0.000 {method 'item' of 'numpy.generic' objects}
        4    0.000    0.000    0.000    0.000 transforms.py:2190(__init__)
        3    0.000    0.000    0.000    0.000 core.py:4739(__init__)
        4    0.000    0.000    0.000    0.000 managers.py:673(consolidate)
        1    0.000    0.000    0.000    0.000 helpers.py:14(delimited_list)
        2    0.000    0.000    0.000    0.000 config.py:433(__init__)
       23    0.000    0.000    0.000    0.000 markers.py:388(get_alt_path)
        2    0.000    0.000    0.000    0.000 pathlib.py:1318(mkdir)
        2    0.000    0.000    0.000    0.000 rcsetup.py:780(validate_hist_bins)
       22    0.000    0.000    0.000    0.000 {method 'rsplit' of 'str' objects}
        9    0.000    0.000    0.000    0.000 text.py:584(_update_clip_properties)
        1    0.000    0.000    0.000    0.000 widgets.py:1334(TextBox)
        1    0.000    0.000    0.000    0.000 offsetbox.py:908(AnchoredOffsetbox)
       29    0.000    0.000    0.000    0.000 spines.py:199(get_path)
        1    0.000    0.000    0.000    0.000 artist.py:1420(ArtistInspector)
        1    0.000    0.000    0.000    0.000 axis.py:2228(XAxis)
        6    0.000    0.000    0.000    0.000 _collections_abc.py:760(get)
       32    0.000    0.000    0.000    0.000 {method 'release' of '_thread.RLock' objects}
        1    0.000    0.000    0.000    0.000 rcsetup.py:1183(<listcomp>)
      7/5    0.000    0.000    0.000    0.000 transforms.py:2391(__eq__)
        1    0.000    0.000    0.000    0.000 core.py:3543(WordStart)
        1    0.000    0.000    0.017    0.017 pyplot.py:1355(subplots)
        2    0.000    0.000    0.000    0.000 base.py:3975(_get_indexer)
        1    0.000    0.000    0.000    0.000 common.py:422(<listcomp>)
        2    0.000    0.000    0.000    0.000 generic.py:518(_construct_axes_from_arguments)
       12    0.000    0.000    0.000    0.000 core.py:287(wrapper)
        1    0.000    0.000    0.000    0.000 _base.py:3670(set_ylabel)
        1    0.000    0.000    0.000    0.000 core.py:3405(GoToColumn)
        4    0.000    0.000    0.000    0.000 collections.py:496(set_hatch)
        2    0.000    0.000    0.000    0.000 crs.py:940(is_exact_same)
        1    0.000    0.000    0.000    0.000 backend_bases.py:172(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:572(matplotlib_fname)
        1    0.000    0.000    0.000    0.000 backend_agg.py:100(_update_methods)
        6    0.000    0.000    0.000    0.000 path.py:730(unit_rectangle)
        2    0.000    0.000    0.000    0.000 gridspec.py:480(__init__)
       17    0.000    0.000    0.000    0.000 _collections_abc.py:802(__init__)
       24    0.000    0.000    0.000    0.000 dviread.py:221(<listcomp>)
       32    0.000    0.000    0.000    0.000 transforms.py:1006(minpos)
       36    0.000    0.000    0.000    0.000 multiarray.py:617(min_scalar_type)
        4    0.000    0.000    0.000    0.000 collections.py:584(set_linestyle)
        2    0.000    0.000    0.000    0.000 grouper.py:649(group_index)
        2    0.000    0.000    0.000    0.000 frozen.py:70(__getitem__)
        9    0.000    0.000    0.000    0.000 pathlib.py:974(__truediv__)
       18    0.000    0.000    0.000    0.000 {method 'update' of 'set' objects}
        4    0.000    0.000    0.000    0.000 __init__.py:593(gen_candidates)
       33    0.000    0.000    0.000    0.000 colors.py:1241(vmin)
       11    0.000    0.000    0.000    0.000 _methods.py:61(_all)
        2    0.000    0.000    0.000    0.000 grouper.py:658(_codes_and_uniques)
        6    0.000    0.000    0.000    0.000 core.py:4879(__init__)
        1    0.000    0.000    0.000    0.000 collections.py:1483(EventCollection)
        1    0.000    0.000    0.000    0.000 axis.py:2487(YAxis)
        1    0.000    0.000    0.001    0.001 __init__.py:299(loads)
        2    0.000    0.000    0.001    0.000 ops.py:792(_get_splitter)
        2    0.000    0.000    0.001    0.001 array.py:1396(_get_common_crs)
       27    0.000    0.000    0.000    0.000 ticker.py:1758(tick_values)
        5    0.000    0.000    0.000    0.000 axis.py:2458(get_minpos)
        1    0.000    0.000    0.000    0.000 pylabtools.py:344(activate_matplotlib)
        3    0.000    0.000    0.000    0.000 core.py:4223(__mul__)
        3    0.000    0.000    0.000    0.000 blocks.py:827(iget)
        3    0.000    0.000    0.000    0.000 __init__.py:218(<dictcomp>)
        1    0.000    0.000    0.000    0.000 colors.py:96(ColorSequenceRegistry)
      8/4    0.000    0.000    0.000    0.000 transforms.py:2404(<lambda>)
        1    0.000    0.000    0.000    0.000 configurable.py:202(_config_changed)
        5    0.000    0.000    0.000    0.000 warnings.py:165(simplefilter)
        7    0.000    0.000    0.000    0.000 core.py:3399(__init__)
       36    0.000    0.000    0.000    0.000 core.py:4099(<genexpr>)
        8    0.000    0.000    0.000    0.000 base.py:356(size)
        6    0.000    0.000    0.000    0.000 __init__.py:825(__init__)
        1    0.000    0.000    0.000    0.000 sre_compile.py:416(_bytes_to_codes)
        2    0.000    0.000    0.005    0.002 axis.py:2233(__init__)
       38    0.000    0.000    0.000    0.000 typing_extensions.py:143(<listcomp>)
        2    0.000    0.000    0.000    0.000 base.py:4020(_check_indexing_method)
        2    0.000    0.000    0.000    0.000 concat.py:648(_get_concat_axis)
       31    0.000    0.000    0.000    0.000 core.py:4098(<genexpr>)
       18    0.000    0.000    0.000    0.000 {method 'get_width_height' of 'matplotlib.ft2font.FT2Font' objects}
        2    0.000    0.000    0.002    0.001 ops.py:1334(sorted_data)
       25    0.000    0.000    0.000    0.000 text.py:808(get_color)
        2    0.000    0.000    0.000    0.000 algorithms.py:269(_get_hashtable_algo)
        6    0.000    0.000    0.000    0.000 array.py:1337(__array__)
        1    0.000    0.000    0.000    0.000 patches.py:4366(ConnectionPatch)
        1    0.000    0.000    0.000    0.000 _tripcolor.py:1(<module>)
        1    0.000    0.000    0.000    0.000 spines.py:14(Spine)
        4    0.000    0.000    0.000    0.000 generic.py:11166(any)
       40    0.000    0.000    0.000    0.000 {built-in method _operator.index}
       14    0.000    0.000    0.000    0.000 inspect.py:2640(__init__)
        2    0.000    0.000    0.000    0.000 concat.py:605(_get_empty_dtype)
        1    0.000    0.000    0.000    0.000 axis.py:2610(set_offset_position)
        2    0.000    0.000    0.000    0.000 dataclasses.py:539(_repr_fn)
        1    0.000    0.000    0.000    0.000 __init__.py:566(get_data_path)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:1088(_fdat)
        1    0.000    0.000    0.000    0.000 geo.py:15(GeoAxes)
        3    0.000    0.000    0.000    0.000 traitlets.py:1860(trait_defaults)
        4    0.000    0.000    0.000    0.000 nanops.py:496(nanany)
       24    0.000    0.000    0.000    0.000 arraysetops.py:630(<genexpr>)
        1    0.000    0.000    0.000    0.000 patches.py:2634(ConnectionStyle)
        1    0.000    0.000    0.000    0.000 widgets.py:3075(ToolHandles)
       36    0.000    0.000    0.000    0.000 {method 'pop' of 'set' objects}
        3    0.000    0.000    0.000    0.000 figure.py:1611(sca)
        7    0.000    0.000    0.000    0.000 colorbar.py:1303(_extend_upper)
        8    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(isin)
       13    0.000    0.000    0.000    0.000 {method 'encode' of 'str' objects}
        1    0.000    0.000    0.000    0.000 textwrap.py:414(dedent)
       18    0.000    0.000    0.000    0.000 ticker.py:1729(tick_values)
       12    0.000    0.000    0.000    0.000 dataclasses.py:470(_init_param)
        1    0.000    0.000    0.000    0.000 {built-in method pandas._libs.lib.is_datetime_array}
        7    0.000    0.000    0.000    0.000 transforms.py:1710(frozen)
        1    0.000    0.000    0.000    0.000 text.py:1657(Annotation)
        1    0.000    0.000    0.000    0.000 widgets.py:2169(_SelectorWidget)
        1    0.000    0.000    0.000    0.000 abc.py:13(ResourceReader)
       27    0.000    0.000    0.000    0.000 axis.py:154(<dictcomp>)
        1    0.000    0.000    0.000    0.000 formatters.py:396(lookup_by_type)
        5    0.000    0.000    0.000    0.000 core.py:5721(token_map)
        2    0.000    0.000    0.000    0.000 colorbar.py:1223(_uniform_y)
        9    0.000    0.000    0.000    0.000 re.py:270(escape)
        6    0.000    0.000    0.000    0.000 base.py:5116(_get_engine_target)
        4    0.000    0.000    0.000    0.000 crs.py:60(__init__)
       10    0.000    0.000    0.000    0.000 _docstring.py:33(__init__)
        1    0.000    0.000    0.000    0.000 shape_base.py:383(stack)
        2    0.000    0.000    0.000    0.000 api.py:122(_get_combined_index)
        1    0.000    0.000    0.000    0.000 _util.py:1(<module>)
       27    0.000    0.000    0.000    0.000 results.py:238(__contains__)
        1    0.000    0.000    0.000    0.000 proj3d.py:1(<module>)
        1    0.000    0.000    0.000    0.000 backend_tools.py:29(Cursors)
        9    0.000    0.000    0.000    0.000 core.py:3532(parseImpl)
        1    0.000    0.000    0.000    0.000 core.py:3045(QuotedString)
        1    0.000    0.000    0.000    0.000 axis.py:32(<listcomp>)
        2    0.000    0.000    0.000    0.000 algorithms.py:117(_ensure_data)
       12    0.000    0.000    0.000    0.000 concat.py:110(<genexpr>)
        4    0.000    0.000    0.000    0.000 __init__.py:828(__contains__)
        1    0.000    0.000    0.000    0.000 PaletteFile.py:16(<module>)
        1    0.000    0.000    0.000    0.000 patches.py:1894(Arc)
        2    0.000    0.000    0.000    0.000 linecache.py:147(lazycache)
        6    0.000    0.000    0.000    0.000 __init__.py:282(_logged_cached)
       25    0.000    0.000    0.000    0.000 artist.py:840(get_alpha)
        1    0.000    0.000    0.000    0.000 patches.py:1070(Polygon)
        1    0.000    0.000    0.000    0.000 ImageChops.py:18(<module>)
       12    0.000    0.000    0.000    0.000 dataclasses.py:597(_is_classvar)
        6    0.000    0.000    0.000    0.000 inspect.py:1233(formatannotation)
        2    0.000    0.000    0.208    0.104 transformer.py:96(__call__)
        1    0.000    0.000    0.000    0.000 core.py:3357(__init__)
        1    0.000    0.000    0.000    0.000 contour.py:628(ContourSet)
        1    0.000    0.000    0.000    0.000 GimpPaletteFile.py:17(<module>)
        9    0.000    0.000    0.000    0.000 artist.py:761(set_clip_box)
        8    0.000    0.000    0.000    0.000 axis.py:1237(_set_artist_props)
        4    0.000    0.000    0.000    0.000 legend_handler.py:215(__init__)
        2    0.000    0.000    0.000    0.000 concat.py:638(_get_comb_axis)
        1    0.000    0.000    0.000    0.000 ticker.py:812(LogFormatter)
        1    0.000    0.000    0.000    0.000 widgets.py:332(Slider)
        2    0.000    0.000    0.000    0.000 figure.py:1663(_process_projection_requirements)
        4    0.000    0.000    0.000    0.000 crs.py:145(_prepare_from_authority)
       39    0.000    0.000    0.000    0.000 core.py:1873(recurse)
       22    0.000    0.000    0.000    0.000 core.py:3627(recurse)
        5    0.000    0.000    0.000    0.000 axis.py:2717(get_minpos)
        2    0.000    0.000    0.001    0.000 linecache.py:36(getlines)
        8    0.000    0.000    0.000    0.000 _collections_abc.py:381(__subclasshook__)
        2    0.000    0.000    0.002    0.001 frame.py:4993(_reindex_axes)
        1    0.000    0.000    0.000    0.000 widgets.py:3229(RectangleSelector)
        3    0.000    0.000    0.000    0.000 figure.py:3218(<lambda>)
        6    0.000    0.000    0.000    0.000 _base.py:3486(get_xbound)
       10    0.000    0.000    0.000    0.000 managers.py:1042(<genexpr>)
       20    0.000    0.000    0.000    0.000 typing.py:565(__eq__)
        7    0.000    0.000    0.000    0.000 rrule.py:70(__init__)
        1    0.000    0.000    0.000    0.000 pathlib.py:876(with_name)
        4    0.000    0.000    0.000    0.000 generic.py:5973(_consolidate_inplace)
        2    0.000    0.000    0.000    0.000 ops.py:742(__init__)
        1    0.000    0.000    0.000    0.000 cycler.py:104(Cycler)
        3    0.000    0.000    0.000    0.000 _base.py:3805(set_ylim)
        6    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(unravel_index)
       16    0.000    0.000    0.000    0.000 backend_bases.py:933(set_dashes)
        6    0.000    0.000    0.000    0.000 cm.py:84(__iter__)
        2    0.000    0.000    0.000    0.000 dataclasses.py:863(<listcomp>)
        2    0.000    0.000    0.000    0.000 common.py:463(is_interval_dtype)
        1    0.000    0.000    0.000    0.000 patches.py:1312(FancyArrow)
        1    0.000    0.000    0.000    0.000 patches.py:1665(Annulus)
        1    0.000    0.000    0.000    0.000 unicode.py:118(pyparsing_unicode)
        1    0.000    0.000    0.000    0.000 image.py:857(AxesImage)
        1    0.000    0.000    0.000    0.000 stackplot.py:1(<module>)
        4    0.000    0.000    0.000    0.000 inspect.py:2892(<dictcomp>)
       12    0.000    0.000    0.000    0.000 _collections_abc.py:805(__len__)
       11    0.000    0.000    0.000    0.000 traitlets.py:501(subclass_init)
        2    0.000    0.000    0.000    0.000 generic.py:5320(_needs_reindex_multi)
        3    0.000    0.000    0.000    0.000 cm.py:660(changed)
        2    0.000    0.000    0.000    0.000 tokenize.py:325(find_cookie)
        1    0.000    0.000    0.000    0.000 widgets.py:1595(RadioButtons)
        6    0.000    0.000    0.001    0.000 base.py:175(geom_type)
        8    0.000    0.000    0.000    0.000 common.py:1487(is_ea_or_datetimelike_dtype)
        1    0.000    0.000    0.000    0.000 ExifTags.py:359(LightSource)
        4    0.000    0.000    0.005    0.001 collections.py:1414(set_segments)
        5    0.000    0.000    0.000    0.000 cm.py:622(set_norm)
        1    0.000    0.000    0.000    0.000 widgets.py:604(RangeSlider)
        4    0.000    0.000    0.000    0.000 common.py:790(is_unsigned_integer_dtype)
        4    0.000    0.000    0.000    0.000 generic.py:11598(any)
        4    0.000    0.000    0.000    0.000 _base.py:2446(_unit_change_handler)
        4    0.000    0.000    0.000    0.000 inspect.py:1577(_check_class)
        1    0.000    0.000    0.000    0.000 ticker.py:154(_DummyAxis)
        1    0.000    0.000    0.000    0.000 util.py:12(__config_flags)
       22    0.000    0.000    0.000    0.000 core.py:3361(<genexpr>)
       23    0.000    0.000    0.000    0.000 markers.py:407(get_snap_threshold)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3624(export)
        2    0.000    0.000    0.000    0.000 _base.py:1816(set_anchor)
        6    0.000    0.000    0.000    0.000 generic.py:558(_get_axis_name)
       15    0.000    0.000    0.000    0.000 results.py:247(__iter__)
        1    0.000    0.000    0.000    0.000 colors.py:1207(Normalize)
        4    0.000    0.000    0.000    0.000 rcsetup.py:221(validate_fonttype)
        4    0.000    0.000    0.002    0.001 accessor.py:121(wrapper)
        2    0.000    0.000    0.000    0.000 concat.py:708(_concat_indexes)
       19    0.000    0.000    0.000    0.000 geoseries.py:612(_constructor)
        1    0.000    0.000    0.000    0.000 _version.py:3(<module>)
        1    0.000    0.000    0.000    0.000 widgets.py:3840(PolygonSelector)
        1    0.000    0.000    0.000    0.000 pathlib.py:1209(resolve)
        9    0.000    0.000    0.000    0.000 common.py:537(is_string_or_object_np_dtype)
        2    0.000    0.000    0.000    0.000 figure.py:273(get_children)
        2    0.000    0.000    0.000    0.000 base.py:6205(_maybe_promote)
        8    0.000    0.000    0.000    0.000 blocks.py:2266(ensure_block_shape)
       15    0.000    0.000    0.000    0.000 __init__.py:106(__init__)
        4    0.000    0.000    0.000    0.000 common.py:1204(is_numeric_dtype)
        2    0.000    0.000    0.000    0.000 model.py:264(__init__)
        1    0.000    0.000    0.001    0.001 __init__.py:274(load)
        2    0.000    0.000    0.000    0.000 rcsetup.py:421(validate_whiskers)
        1    0.000    0.000    0.000    0.000 colors.py:647(Colormap)
        1    0.000    0.000    0.000    0.000 util.py:103(__init__)
        1    0.000    0.000    0.000    0.000 colorbar.py:124(__init__)
        4    0.000    0.000    0.000    0.000 generic.py:5277(<genexpr>)
        2    0.000    0.000    0.000    0.000 transforms.py:2162(__eq__)
        1    0.000    0.000    0.000    0.000 patches.py:1168(Wedge)
        3    0.000    0.000    0.000    0.000 gridspec.py:430(<dictcomp>)
        9    0.000    0.000    0.000    0.000 fromnumeric.py:1991(shape)
        4    0.000    0.000    0.000    0.000 base.py:2801(_na_value)
        2    0.000    0.000    0.000    0.000 {pandas._libs.lib.dtypes_all_equal}
        1    0.000    0.000    0.000    0.000 quiver.py:867(Barbs)
        6    0.000    0.000    0.000    0.000 common.py:1500(is_complex_dtype)
        8    0.000    0.000    0.000    0.000 axis.py:543(__init__)
        2    0.000    0.000    0.000    0.000 config.py:441(__enter__)
        1    0.000    0.000    0.000    0.000 testing.py:15(pyparsing_test)
        1    0.000    0.000    0.000    0.000 core.py:47(<dictcomp>)
        1    0.000    0.000    0.000    0.000 typing.py:1006(__init_subclass__)
        4    0.000    0.000    0.000    0.000 managers.py:1864(_consolidate_inplace)
        1    0.000    0.000    0.000    0.000 patches.py:884(RegularPolygon)
       10    0.000    0.000    0.000    0.000 axis.py:1180(<listcomp>)
        1    0.000    0.000    0.000    0.000 _tight_layout.py:1(<module>)
       11    0.000    0.000    0.000    0.000 _base.py:2567(<listcomp>)
       23    0.000    0.000    0.000    0.000 lines.py:597(get_markevery)
        2    0.000    0.000    0.000    0.000 ops.py:1362(get_splitter)
        1    0.000    0.000    0.000    0.000 unicode.py:31(unicode_set)
        3    0.000    0.000    0.000    0.000 weakref.py:496(popitem)
        1    0.000    0.000    0.000    0.000 ticker.py:377(ScalarFormatter)
        3    0.000    0.000    0.000    0.000 core.py:681(add_parse_action)
       24    0.000    0.000    0.000    0.000 cm.py:589(norm)
        2    0.000    0.000    0.000    0.000 backend_bases.py:1261(_process)
        1    0.000    0.000    0.000    0.000 cm.py:539(set_clim)
        1    0.000    0.000    0.000    0.000 rcsetup.py:97(<listcomp>)
       29    0.000    0.000    0.000    0.000 scale.py:96(__init__)
        4    0.000    0.000    0.000    0.000 core.py:2973(re_match)
        2    0.000    0.000    0.000    0.000 weakref.py:368(__init__)
        1    0.000    0.000    0.000    0.000 transforms.py:2109(IdentityTransform)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:357(PngStream)
       44    0.000    0.000    0.000    0.000 {method 'upper' of 'str' objects}
        3    0.000    0.000    0.000    0.000 traitlets.py:1504(_notify_trait)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1778(C14NWriterTarget)
       10    0.000    0.000    0.000    0.000 core.py:5456(postParse)
        2    0.000    0.000    0.000    0.000 backend_agg.py:286(clear)
        1    0.000    0.000    0.000    0.000 patches.py:3780(FancyBboxPatch)
       24    0.000    0.000    0.000    0.000 dviread.py:188(_dispatch)
        4    0.000    0.000    0.000    0.000 inspect.py:1607(getattr_static)
        5    0.000    0.000    0.000    0.000 transforms.py:1568(get_matrix)
        1    0.000    0.000    0.000    0.000 _pylab_helpers.py:1(<module>)
        2    0.000    0.000    0.000    0.000 cast.py:1589(find_common_type)
        1    0.000    0.000    0.000    0.000 image.py:230(_ImageBase)
        1    0.000    0.000    0.000    0.000 figure.py:947(clear)
       16    0.000    0.000    0.000    0.000 gridspec.py:75(get_geometry)
        1    0.000    0.000    0.000    0.000 art3d.py:812(Poly3DCollection)
        7    0.000    0.000    0.000    0.000 pathlib.py:1227(stat)
        2    0.000    0.000    0.000    0.000 backcall.py:49(adapt)
        4    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(sort)
       10    0.000    0.000    0.000    0.000 core.py:3500(mask)
        1    0.000    0.000    0.000    0.000 Image.py:3577(_apply_env_variables)
        1    0.000    0.000    0.013    0.013 figure.py:774(subplots)
        1    0.000    0.000    0.000    0.000 offsetbox.py:1145(OffsetImage)
       24    0.000    0.000    0.000    0.000 axis.py:1738(set_units)
        8    0.000    0.000    0.000    0.000 core.py:4773(stopOn)
        1    0.000    0.000    0.000    0.000 colorbar.py:1354(_normalize_location_orientation)
        1    0.000    0.000    0.001    0.001 font_manager.py:964(json_load)
        2    0.000    0.000    0.000    0.000 crs.py:125(_prepare_from_string)
        2    0.000    0.000    0.000    0.000 __init__.py:2039(__init__)
        1    0.000    0.000    0.000    0.000 core.py:322(condition_as_parse_action)
        1    0.000    0.000    0.000    0.000 core.py:5117(Forward)
        1    0.000    0.000    0.000    0.000 model.py:102(PrimitiveType)
       10    0.000    0.000    0.000    0.000 formatters.py:263(_mod_name_key)
        3    0.000    0.000    0.000    0.000 managers.py:645(<listcomp>)
        2    0.000    0.000    0.000    0.000 grouper.py:931(_convert_grouper)
        4    0.000    0.000    0.000    0.000 core.py:5451(__init__)
       10    0.000    0.000    0.000    0.000 managers.py:2324(<lambda>)
       31    0.000    0.000    0.000    0.000 {method 'end' of 're.Match' objects}
        4    0.000    0.000    0.000    0.000 dataclasses.py:353(<listcomp>)
        1    0.000    0.000    0.000    0.000 collections.py:1686(EllipseCollection)
        2    0.000    0.000    0.000    0.000 shape_base.py:139(atleast_3d)
        1    0.000    0.000    0.000    0.000 __init__.py:602(Stack)
        1    0.000    0.000    0.000    0.000 core.py:2354(Keyword)
       25    0.000    0.000    0.000    0.000 backend_bases.py:665(flipy)
        1    0.000    0.000    0.000    0.000 image.py:1204(PcolorImage)
        2    0.000    0.000    0.000    0.000 gridspec.py:697(subgridspec)
        1    0.000    0.000    0.000    0.000 quiver.py:235(QuiverKey)
        1    0.000    0.000    0.000    0.000 _secondary_axes.py:11(SecondaryAxis)
        1    0.000    0.000    0.000    0.000 configurable.py:156(_load_config)
        7    0.000    0.000    0.000    0.000 core.py:3077(<listcomp>)
        2    0.000    0.000    0.002    0.001 _decorators.py:345(wrapper)
        2    0.000    0.000    0.000    0.000 api.py:78(get_objs_combined_axis)
       12    0.000    0.000    0.000    0.000 axis.py:824(_get_autoscale_on)
        4    0.000    0.000    0.000    0.000 rrule.py:80(_invalidates_cache)
        1    0.000    0.000    0.000    0.000 backend_inline.py:30(new_figure_manager_given_figure)
        3    0.000    0.000    0.000    0.000 transforms.py:795(null)
        1    0.000    0.000    0.000    0.000 {method 'findall' of 're.Pattern' objects}
        1    0.000    0.000    0.000    0.000 six.py:96(__get__)
        6    0.000    0.000    0.000    0.000 core.py:3510(mask)
       23    0.000    0.000    0.000    0.000 markers.py:369(get_path)
        1    0.000    0.000    0.000    0.000 textpath.py:20(TextToPath)
        6    0.000    0.000    0.000    0.000 _base.py:3735(get_ybound)
        1    0.000    0.000    0.000    0.000 offsetbox.py:709(TextArea)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:232(LinearTriInterpolator)
        3    0.000    0.000    0.000    0.000 _collections_abc.py:925(clear)
        3    0.000    0.000    0.000    0.000 functools.py:958(__init__)
        1    0.000    0.000    0.000    0.000 offsetbox.py:528(PaddedBox)
       14    0.000    0.000    0.000    0.000 typing.py:573(__hash__)
        3    0.000    0.000    0.000    0.000 threading.py:82(RLock)
        7    0.000    0.000    0.000    0.000 {method 'decode' of 'bytes' objects}
        4    0.000    0.000    0.000    0.000 dataclasses.py:344(_tuple_str)
        4    0.000    0.000    0.000    0.000 base.py:1820(_get_names)
        2    0.000    0.000    0.000    0.000 __init__.py:98(get_projection_class)
        4    0.000    0.000    0.000    0.000 transforms.py:2398(_iter_break_from_left_to_right)
        1    0.000    0.000    0.000    0.000 core.py:112(__diag__)
       24    0.000    0.000    0.000    0.000 patches.py:2238(<genexpr>)
        6    0.000    0.000    0.000    0.000 core.py:3429(__setmask__)
       11    0.000    0.000    0.000    0.000 typing.py:337(__repr__)
        2    0.000    0.000    0.000    0.000 _validators.py:141(validate_kwargs)
        1    0.000    0.000    0.000    0.000 font_manager.py:525(FontProperties)
        1    0.000    0.000    0.000    0.000 figure.py:1617(gca)
        1    0.000    0.000    0.000    0.000 transforms.py:1148(LockableBbox)
        1    0.000    0.000    0.000    0.000 core.py:3321(White)
        1    0.000    0.000    0.000    0.000 colorbar.py:1167(_reset_locator_formatter_scale)
        1    0.000    0.000    0.000    0.000 _afm.py:358(AFM)
        1    0.000    0.000    0.000    0.000 image.py:1357(FigureImage)
        1    0.000    0.000    0.000    0.000 figure.py:1487(add_gridspec)
        1    0.000    0.000    0.000    0.000 _trirefine.py:1(<module>)
       12    0.000    0.000    0.000    0.000 blocks.py:823(shape)
        4    0.000    0.000    0.000    0.000 axis.py:1890(set_pickradius)
        9    0.000    0.000    0.000    0.000 __init__.py:96(<lambda>)
        6    0.000    0.000    0.000    0.000 figure.py:217(<genexpr>)
        1    0.000    0.000    0.000    0.000 linalg.py:136(_commonType)
        1    0.000    0.000    0.000    0.000 core.py:3262(__init__)
        1    0.000    0.000    0.000    0.000 gridspec.py:530(SubplotSpec)
        1    0.000    0.000    0.000    0.000 core.py:3421(shape)
        2    0.000    0.000    0.000    0.000 dtypes.py:1247(is_dtype)
       23    0.000    0.000    0.000    0.000 artist.py:604(get_url)
        6    0.000    0.000    0.000    0.000 transforms.py:2426(transform_path_non_affine)
        4    0.000    0.000    0.000    0.000 managers.py:2073(array_values)
        6    0.000    0.000    0.000    0.000 dataclasses.py:753(_set_new_attribute)
        1    0.000    0.000    0.000    0.000 core.py:2613(Word)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1232(_recalculate)
        1    0.000    0.000    0.000    0.000 pathlib.py:486(_make_selector)
        2    0.000    0.000    0.000    0.000 dataclasses.py:507(<dictcomp>)
        1    0.000    0.000    0.000    0.000 font_manager.py:976(FontManager)
        1    0.000    0.000    0.000    0.000 gridspec.py:329(__init__)
        3    0.000    0.000    0.000    0.000 traitlets.py:1848(_get_trait_default_generator)
        2    0.000    0.000    0.000    0.000 dataclasses.py:358(_recursive_repr)
        4    0.000    0.000    0.000    0.000 dtypes.py:1333(__init__)
        1    0.000    0.000    0.001    0.001 array.py:485(boundary)
        1    0.000    0.000    0.000    0.000 container.py:1(<module>)
        4    0.000    0.000    0.000    0.000 common.py:736(is_signed_integer_dtype)
        6    0.000    0.000    0.000    0.000 _collections_abc.py:362(__subclasshook__)
        2    0.000    0.000    0.000    0.000 scale.py:699(get_scale_names)
        1    0.000    0.000    0.000    0.000 widgets.py:2964(ToolLineHandles)
        4    0.000    0.000    0.000    0.000 gridspec.py:550(__init__)
        2    0.000    0.000    0.000    0.000 traitlets.py:972(__init__)
        1    0.000    0.000    0.000    0.000 traitlets.py:1287(setup_instance)
        1    0.000    0.000    0.000    0.000 backend_managers.py:32(ToolManager)
        2    0.000    0.000    0.000    0.000 _base.py:1189(_gen_axes_patch)
        1    0.000    0.000    0.000    0.000 rrule.py:1418(_rrulestr)
        2    0.000    0.000    0.000    0.000 typing.py:1385(_get_defaults)
        9    0.000    0.000    0.000    0.000 results.py:326(get)
       39    0.000    0.000    0.000    0.000 {function Config.__contains__ at 0x104eb4d30}
       17    0.000    0.000    0.000    0.000 {built-in method sys._getframe}
       23    0.000    0.000    0.000    0.000 lines.py:893(get_drawstyle)
        2    0.000    0.000    0.000    0.000 pathlib.py:516(select_from)
        2    0.000    0.000    0.000    0.000 transforms.py:2639(__init__)
        1    0.000    0.000    0.000    0.000 collections.py:1951(set_array)
       23    0.000    0.000    0.000    0.000 markers.py:324(get_marker)
        1    0.000    0.000    0.000    0.000 Image.py:3613(Exif)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:710(PngImageFile)
        5    0.000    0.000    0.000    0.000 colors.py:1245(vmin)
        7    0.000    0.000    0.000    0.000 unicode.py:9(__init__)
        1    0.000    0.000    0.000    0.000 core.py:5044(__init__)
        2    0.000    0.000    0.209    0.105 artist.py:93(draw_wrapper)
        1    0.000    0.000    0.000    0.000 core.py:276(reload_library)
        4    0.000    0.000    0.000    0.000 _base.py:222(__init__)
       29    0.000    0.000    0.000    0.000 {method 'groupdict' of 're.Match' objects}
       50    0.000    0.000    0.000    0.000 {built-in method builtins.globals}
        2    0.000    0.000    0.000    0.000 ticker.py:1716(__init__)
        1    0.000    0.000    0.000    0.000 patches.py:2674(_Base)
        1    0.000    0.000    0.000    0.000 pathlib.py:324(compile_pattern)
        1    0.000    0.000    0.000    0.000 core.py:2472(CaselessLiteral)
        1    0.000    0.000    0.000    0.000 patches.py:1486(CirclePolygon)
        1    0.000    0.000    0.000    0.000 legend_handler.py:431(HandlerRegularPolyCollection)
        9    0.000    0.000    0.000    0.000 {method 'translate' of 'str' objects}
        1    0.000    0.000    0.000    0.000 traitlets.py:1315(setup_instance)
       12    0.000    0.000    0.000    0.000 collections.py:210(get_transforms)
        1    0.000    0.000    0.000    0.000 _enums.py:115(<listcomp>)
        3    0.000    0.000    0.000    0.000 configurable.py:495(_walk_mro)
        3    0.000    0.000    0.000    0.000 pathlib.py:384(gethomedir)
        1    0.000    0.000    0.000    0.000 _pylab_helpers.py:9(Gcf)
        1    0.000    0.000    0.000    0.000 image.py:1420(BboxImage)
        1    0.000    0.000    0.000    0.000 genericpath.py:27(isfile)
        2    0.000    0.000    0.000    0.000 _validators.py:49(_check_for_default_values)
        4    0.000    0.000    0.000    0.000 numpy_.py:125(__array__)
        1    0.000    0.000    0.000    0.000 core.py:134(Diagnostics)
        1    0.000    0.000    0.000    0.000 cm.py:72(__init__)
        1    0.000    0.000    0.000    0.000 _triplot.py:1(<module>)
        4    0.000    0.000    0.000    0.000 loader.py:240(__init__)
        3    0.000    0.000    0.000    0.000 transforms.py:385(extents)
        1    0.000    0.000    0.000    0.000 pathlib.py:327(resolve)
       12    0.000    0.000    0.000    0.000 dataclasses.py:605(_is_initvar)
        2    0.000    0.000    0.000    0.000 config.py:447(__exit__)
        6    0.000    0.000    0.000    0.000 rcsetup.py:266(validate_color_or_inherit)
        1    0.000    0.000    0.003    0.003 pyplot.py:381(new_figure_manager)
        1    0.000    0.000    0.000    0.000 dates.py:205(__getattr__)
        3    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(can_cast)
        2    0.000    0.000    0.000    0.000 array.py:1400(<listcomp>)
        6    0.000    0.000    0.000    0.000 traitlets.py:488(class_init)
        4    0.000    0.000    0.000    0.000 series.py:743(array)
        2    0.000    0.000    0.000    0.000 ops.py:1297(__init__)
        1    0.000    0.000    0.000    0.000 Image.py:3407(register_open)
        2    0.000    0.000    0.013    0.007 _base.py:1388(clear)
        1    0.000    0.000    0.000    0.000 __init__.py:1359(_fixupChildren)
        1    0.000    0.000    0.000    0.000 ticker.py:1325(EngFormatter)
        8    0.000    0.000    0.000    0.000 results.py:198(<listcomp>)
        1    0.000    0.000    0.000    0.000 collections.py:1768(PatchCollection)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1084(TimerBase)
        2    0.000    0.000    0.001    0.000 axis.py:2492(__init__)
       12    0.000    0.000    0.000    0.000 dataclasses.py:404(_field_assign)
        1    0.000    0.000    0.000    0.000 colorbar.py:820(update_ticks)
       10    0.000    0.000    0.000    0.000 rcsetup.py:374(validate_fontweight)
        4    0.000    0.000    0.000    0.000 __init__.py:53(__get__)
        2    0.000    0.000    0.000    0.000 cm.py:649(autoscale_None)
        5    0.000    0.000    0.000    0.000 os.py:758(decode)
        9    0.000    0.000    0.000    0.000 pathlib.py:102(join_parsed_parts)
        1    0.000    0.000    0.000    0.000 function_base.py:5032(<listcomp>)
        1    0.000    0.000    0.000    0.000 core.py:3757(And)
        4    0.000    0.000    0.000    0.000 util.py:223(<listcomp>)
        1    0.000    0.000    0.000    0.000 _enums.py:27(JoinStyle)
        1    0.000    0.000    0.000    0.000 _pylab_helpers.py:105(_set_new_active_manager)
        2    0.000    0.000    0.000    0.000 dataclasses.py:532(<listcomp>)
        4    0.000    0.000    0.000    0.000 missing.py:910(clean_reindex_fill_method)
        1    0.000    0.000    0.000    0.000 managers.py:2372(<listcomp>)
        1    0.000    0.000    0.000    0.000 ticker.py:2903(AutoMinorLocator)
        1    0.000    0.000    0.000    0.000 colorbar.py:1380(_get_ticklocation_from_orientation)
        1    0.000    0.000    0.000    0.000 lock.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _trifinder.py:1(<module>)
        5    0.000    0.000    0.000    0.000 os.py:816(fsdecode)
        1    0.000    0.000    0.000    0.000 posixpath.py:388(realpath)
        1    0.000    0.000    0.001    0.001 decoder.py:332(decode)
        3    0.000    0.000    0.000    0.000 fromnumeric.py:93(take)
       14    0.000    0.000    0.000    0.000 scale.py:78(limit_range_for_scale)
        2    0.000    0.000    0.000    0.000 core.py:3297(_generateDefaultName)
        2    0.000    0.000    0.000    0.000 colors.py:1382(autoscale_None)
        8    0.000    0.000    0.000    0.000 transforms.py:1790(transform_path)
       18    0.000    0.000    0.000    0.000 cycler.py:170(change_key)
       15    0.000    0.000    0.000    0.000 traitlets.py:1237(__get__)
        2    0.000    0.000    0.000    0.000 traitlets.py:3392(class_init)
        3    0.000    0.000    0.000    0.000 genericpath.py:16(exists)
        5    0.000    0.000    0.000    0.000 version.py:74(__lt__)
        1    0.000    0.000    0.000    0.000 __init__.py:629(RcParams)
        7    0.000    0.000    0.000    0.000 __init__.py:894(__init__)
        1    0.000    0.000    0.000    0.000 ImageSequence.py:19(Iterator)
        1    0.000    0.000    0.000    0.000 core.py:693(add_condition)
        1    0.000    0.000    0.000    0.000 mathtext.py:185(MathTextParser)
        1    0.000    0.000    0.000    0.000 offsetbox.py:1101(AnchoredText)
        1    0.000    0.000    0.000    0.000 legend_handler.py:525(HandlerErrorbar)
        1    0.000    0.000    0.000    0.000 art3d.py:610(Path3DCollection)
        1    0.000    0.000    0.000    0.000 axis3d.py:588(XAxis)
        5    0.000    0.000    0.000    0.000 gridspec.py:232(_normalize)
        6    0.000    0.000    0.000    0.000 core.py:3640(shrink_mask)
        6    0.000    0.000    0.000    0.000 common.py:576(is_excluded_dtype)
        2    0.000    0.000    0.000    0.000 crs.py:1073(name)
        2    0.000    0.000    0.000    0.000 rcsetup.py:406(_validate_mathtext_fallback)
        5    0.000    0.000    0.000    0.000 transforms.py:250(__array__)
        1    0.000    0.000    0.000    0.000 _bootlocale.py:33(getpreferredencoding)
        1    0.000    0.000    0.000    0.000 numeric.py:2150(identity)
        1    0.000    0.000    0.000    0.000 generic.py:11178(all)
       10    0.000    0.000    0.000    0.000 managers.py:2054(index)
        2    0.000    0.000    0.000    0.000 ops.py:811(group_keys_seq)
        2    0.000    0.000    0.001    0.001 crs.py:379(from_epsg)
        1    0.000    0.000    0.000    0.000 transforms.py:1271(Transform)
        2    0.000    0.000    0.000    0.000 spines.py:541(from_dict)
        1    0.000    0.000    0.000    0.000 __init__.py:316(ExecutableNotFoundError)
        1    0.000    0.000    0.000    0.000 collections.py:1892(QuadMesh)
        1    0.000    0.000    0.000    0.000 figure.py:73(_AxesStack)
        1    0.000    0.000    0.000    0.000 _base.py:559(<dictcomp>)
        5    0.000    0.000    0.000    0.000 colors.py:1390(scaled)
        1    0.000    0.000    0.000    0.000 core.py:4757(_MultipleMatch)
        4    0.000    0.000    0.000    0.000 figure.py:218(<lambda>)
        1    0.000    0.000    0.000    0.000 rrule.py:1307(rruleset)
        1    0.000    0.000    0.000    0.000 axis.py:2642(set_ticks_position)
        3    0.000    0.000    0.000    0.000 backend_bases.py:2415(mpl_connect)
        1    0.000    0.000    0.000    0.000 Image.py:158(Transpose)
        4    0.000    0.000    0.000    0.000 contextlib.py:688(__init__)
        2    0.000    0.000    0.000    0.000 dataclasses.py:543(<listcomp>)
        6    0.000    0.000    0.000    0.000 rcsetup.py:249(validate_backend)
        1    0.000    0.000    0.000    0.000 transforms.py:1680(TransformWrapper)
        1    0.000    0.000    0.000    0.000 unicode.py:70(alphas)
        1    0.000    0.000    0.000    0.000 __init__.py:791(Grouper)
        1    0.000    0.000    0.000    0.000 rcsetup.py:256(_validate_toolbar)
        1    0.000    0.000    0.000    0.000 _layoutgrid.py:31(LayoutGrid)
        2    0.000    0.000    0.000    0.000 backend_bases.py:1288(__init__)
       36    0.000    0.000    0.000    0.000 {built-in method _sre.unicode_iscased}
        4    0.000    0.000    0.000    0.000 collections.py:473(set_urls)
        3    0.000    0.000    0.000    0.000 generic.py:2060(<genexpr>)
        1    0.000    0.000    0.000    0.000 art3d.py:76(Text3D)
        2    0.000    0.000    0.000    0.000 traitlets.py:1439(hold_trait_notifications)
        3    0.000    0.000    0.000    0.000 core.py:4067(_delegate_binop)
       12    0.000    0.000    0.000    0.000 _validators.py:313(<genexpr>)
        2    0.000    0.000    0.000    0.000 grouper.py:615(codes)
        1    0.000    0.000    0.000    0.000 colors.py:949(LinearSegmentedColormap)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1515(XMLParser)
        1    0.000    0.000    0.000    0.000 _tight_bbox.py:1(<module>)
        1    0.000    0.000    0.000    0.000 axis.py:31(<listcomp>)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:134(__getattr__)
        8    0.000    0.000    0.000    0.000 rrule.py:77(<genexpr>)
        1    0.000    0.000    0.000    0.000 pathlib.py:552(__init__)
        6    0.000    0.000    0.000    0.000 core.py:6642(is_masked)
        1    0.000    0.000    0.000    0.000 transforms.py:2337(CompositeGenericTransform)
        1    0.000    0.000    0.000    0.000 colorbar.py:1000(_set_scale)
        1    0.000    0.000    0.000    0.000 _tritools.py:1(<module>)
        2    0.000    0.000    0.001    0.000 linecache.py:26(getline)
        1    0.000    0.000    0.000    0.000 colors.py:2205(LightSource)
        6    0.000    0.000    0.000    0.000 transforms.py:1752(<lambda>)
        1    0.000    0.000    0.000    0.000 core.py:450(DebugActions)
        2    0.000    0.000    0.000    0.000 pyplot.py:295(backend_mod)
        1    0.000    0.000    0.000    0.000 pyplot.py:914(get_fignums)
        1    0.000    0.000    0.000    0.000 _pylab_helpers.py:118(set_active)
        3    0.000    0.000    0.000    0.000 figure.py:94(bubble)
        1    0.000    0.000    0.000    0.000 container.py:5(Container)
        7    0.000    0.000    0.000    0.000 transforms.py:1017(minposx)
        8    0.000    0.000    0.000    0.000 _base.py:2892(<genexpr>)
        2    0.000    0.000    0.001    0.000 ops.py:944(group_info)
        4    0.000    0.000    0.000    0.000 core.py:3304(parseImpl)
        4    0.000    0.000    0.000    0.000 __init__.py:1224(__init__)
        3    0.000    0.000    0.000    0.000 traitlets.py:743(_cross_validate)
        6    0.000    0.000    0.000    0.000 _vectorized.py:158(to_shapely)
        3    0.000    0.000    0.000    0.000 __init__.py:254(method)
        1    0.000    0.000    0.000    0.000 colors.py:1486(CenteredNorm)
        1    0.000    0.000    0.000    0.000 transforms.py:2724(TransformedPath)
        1    0.000    0.000    0.012    0.012 collections.py:1777(__init__)
        5    0.000    0.000    0.000    0.000 backend_bases.py:1697(<lambda>)
        1    0.000    0.000    0.000    0.000 abc.py:150(TraversableResources)
        2    0.000    0.000    0.000    0.000 weakref.py:69(__call__)
        8    0.000    0.000    0.000    0.000 traitlets.py:232(is_trait)
        2    0.000    0.000    0.000    0.000 _validators.py:128(_check_for_invalid_keys)
        1    0.000    0.000    0.000    0.000 axis.py:2540(set_label_position)
        1    0.000    0.000    0.000    0.000 rcsetup.py:286(_validate_color_or_linecolor)
        1    0.000    0.000    0.000    0.000 core.py:89(__compat__)
        1    0.000    0.000    0.000    0.000 ImageMode.py:16(<module>)
        1    0.000    0.000    0.000    0.000 widgets.py:1939(Cursor)
        1    0.000    0.000    0.000    0.000 traitlets.py:2791(__init__)
        2    0.000    0.000    0.000    0.000 groupby.py:981(__getattr__)
        4    0.000    0.000    0.000    0.000 crs.py:149(_prepare_from_epsg)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1393(TreeBuilder)
        1    0.000    0.000    0.000    0.000 bezier.py:181(BezierSegment)
        1    0.000    0.000    0.000    0.000 core.py:2220(_PendingSkip)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2751(FigureManagerBase)
        3    0.000    0.000    0.000    0.000 traitlets.py:2171(make_dynamic_default)
        5    0.000    0.000    0.000    0.000 transforms.py:273(x1)
        3    0.000    0.000    0.000    0.000 core.py:1613(__invert__)
        1    0.000    0.000    0.000    0.000 backend_inline.py:21(new_figure_manager)
       16    0.000    0.000    0.000    0.000 arraysetops.py:133(_unique_dispatcher)
        2    0.000    0.000    0.000    0.000 colorbar.py:140(draw)
        3    0.000    0.000    0.000    0.000 legend_handler.py:434(__init__)
        1    0.000    0.000    0.000    0.000 traitlets.py:2966(__init__)
        2    0.000    0.000    0.001    0.000 dataclasses.py:1012(wrap)
        1    0.000    0.000    0.000    0.000 shape_base.py:223(vstack)
        8    0.000    0.000    0.000    0.000 getlimits.py:679(min)
        1    0.000    0.000    0.000    0.000 ElementTree.py:525(ElementTree)
        3    0.000    0.000    0.000    0.000 core.py:1683(suppress)
        2    0.000    0.000    0.000    0.000 traitlets.py:1628(observe)
        1    0.000    0.000    0.000    0.000 nanops.py:542(nanall)
        4    0.000    0.000    0.000    0.000 base.py:2421(is_boolean)
        2    0.000    0.000    0.000    0.000 transformer.py:297(__init__)
        1    0.000    0.000    0.000    0.000 _docstring.py:76(__init__)
        1    0.000    0.000    0.000    0.000 ticker.py:1957(MaxNLocator)
        1    0.000    0.000    0.000    0.000 transforms.py:84(TransformNode)
       12    0.000    0.000    0.000    0.000 collections.py:753(get_facecolor)
        1    0.000    0.000    0.000    0.000 backend_managers.py:1(<module>)
        3    0.000    0.000    0.000    0.000 axis.py:1353(<listcomp>)
        2    0.000    0.000    0.000    0.000 config.py:442(<listcomp>)
        3    0.000    0.000    0.000    0.000 core.py:4753(_generateDefaultName)
        8    0.000    0.000    0.000    0.000 collections.py:204(get_paths)
       11    0.000    0.000    0.000    0.000 abc.py:7(abstractmethod)
        2    0.000    0.000    0.000    0.000 {built-in method _abc._abc_register}
        4    0.000    0.000    0.000    0.000 core.py:4895(_generateDefaultName)
        8    0.000    0.000    0.000    0.000 _base.py:1608(get_aspect)
        4    0.000    0.000    0.000    0.000 _base.py:1739(<genexpr>)
        1    0.000    0.000    0.000    0.000 traitlets.py:1272(__new__)
        1    0.000    0.000    0.000    0.000 core.py:4657(reshape)
        6    0.000    0.000    0.000    0.000 rcsetup.py:555(_validate_greaterequal0_lessthan1)
        5    0.000    0.000    0.000    0.000 colors.py:1256(vmax)
        1    0.000    0.000    0.000    0.000 core.py:3911(Or)
        1    0.000    0.000    0.000    0.000 widgets.py:3764(LassoSelector)
        1    0.000    0.000    0.000    0.000 _base.py:860(_request_autoscale_view)
        8    0.000    0.000    0.000    0.000 _base.py:1803(get_anchor)
        2    0.000    0.000    0.000    0.000 offsetbox.py:45(_compat_get_offset)
        2    0.000    0.000    0.000    0.000 axis.py:2037(set_ticks)
        6    0.000    0.000    0.000    0.000 gridspec.py:191(<listcomp>)
        6    0.000    0.000    0.000    0.000 functools.py:840(_is_valid_dispatch_type)
       12    0.000    0.000    0.000    0.000 fromnumeric.py:1341(_searchsorted_dispatcher)
        6    0.000    0.000    0.000    0.000 base.py:6193(_index_as_unique)
        1    0.000    0.000    0.000    0.000 generic.py:11618(all)
        1    0.000    0.000    0.000    0.000 core.py:4866(ZeroOrMore)
        3    0.000    0.000    0.000    0.000 pyplot.py:185(_get_required_interactive_framework)
        1    0.000    0.000    0.000    0.000 colorbar.py:135(set_xy)
        2    0.000    0.000    0.000    0.000 grouper.py:857(is_in_obj)
        1    0.000    0.000    0.000    0.000 core.py:4983(SkipTo)
        1    0.000    0.000    0.000    0.000 importstring.py:8(import_item)
        1    0.000    0.000    0.000    0.000 _enums.py:119(CapStyle)
        3    0.000    0.000    0.000    0.000 traitlets.py:723(__set__)
        6    0.000    0.000    0.000    0.000 traitlets.py:2146(validate)
        1    0.000    0.000    0.001    0.001 _vectorized.py:594(boundary)
        2    0.000    0.000    0.000    0.000 artist.py:31(draw_wrapper)
        4    0.000    0.000    0.000    0.000 numeric.py:381(_engine_type)
        1    0.000    0.000    0.000    0.000 scale.py:751(<listcomp>)
        1    0.000    0.000    0.000    0.000 __init__.py:99(version_info)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3543(_Backend)
        1    0.000    0.000    0.000    0.000 font_manager.py:1483(_cached_realpath)
        1    0.000    0.000    0.000    0.000 core.py:227(update_user_library)
        1    0.000    0.000    0.000    0.000 offsetbox.py:597(DrawingArea)
        1    0.000    0.000    0.000    0.000 _triangulation.py:6(Triangulation)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:1156(_DOF_estimator_min_E)
        2    0.000    0.000    0.000    0.000 _collections_abc.py:775(keys)
        1    0.000    0.000    0.000    0.000 _mathtext.py:669(StixFonts)
        1    0.000    0.000    0.000    0.000 core.py:4437(IndentedBlock)
        2    0.000    0.000    0.000    0.000 ops.py:1316(_sort_idx)
        2    0.000    0.000    0.000    0.000 core.py:2278(__init__)
        6    0.000    0.000    0.000    0.000 gridspec.py:199(<listcomp>)
       15    0.000    0.000    0.000    0.000 version.py:518(<lambda>)
        2    0.000    0.000    0.000    0.000 {method 'is_exact_same' of 'pyproj._crs.Base' objects}
        1    0.000    0.000    0.000    0.000 deprecation.py:223(deprecate_privatize_attribute)
        1    0.000    0.000    0.000    0.000 __init__.py:106(__version__)
       10    0.000    0.000    0.000    0.000 results.py:434(<lambda>)
        1    0.000    0.000    0.000    0.000 colorbar.py:964(set_label)
        1    0.000    0.000    0.000    0.000 widgets.py:4199(Lasso)
        1    0.000    0.000    0.000    0.000 __init__.py:67(register)
        3    0.000    0.000    0.000    0.000 gridspec.py:123(set_height_ratios)
        8    0.000    0.000    0.000    0.000 core.py:5716(<genexpr>)
       16    0.000    0.000    0.000    0.000 traceback.py:282(__len__)
        2    0.000    0.000    0.000    0.000 colorbar.py:1374(_get_orientation_from_location)
        8    0.000    0.000    0.000    0.000 _base.py:1173(get_axes_locator)
        3    0.000    0.000    0.000    0.000 __init__.py:1251(get_backend)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2952(_Mode)
        1    0.000    0.000    0.000    0.000 mathtext.py:151(MathtextBackendPath)
        2    0.000    0.000    0.000    0.000 figure.py:100(add)
        6    0.000    0.000    0.000    0.000 axis.py:828(_set_autoscale_on)
        3    0.000    0.000    0.000    0.000 transforms.py:958(x0)
        8    0.000    0.000    0.000    0.000 <string>:1(<lambda>)
        3    0.000    0.000    0.003    0.001 pyplot.py:198(_get_backend_mod)
        2    0.000    0.000    0.000    0.000 typing.py:1926(_namedtuple_mro_entries)
        7    0.000    0.000    0.000    0.000 transforms.py:1028(minposy)
       10    0.000    0.000    0.000    0.000 artist.py:733(get_figure)
        3    0.000    0.000    0.000    0.000 backend_bases.py:2844(notify_axes_change)
        3    0.000    0.000    0.000    0.000 traitlets.py:1515(notify_change)
        2    0.000    0.000    0.000    0.000 dataclasses.py:575(_cmp_fn)
        2    0.000    0.000    0.000    0.000 dataclasses.py:924(<listcomp>)
        4    0.000    0.000    0.000    0.000 formatters.py:552(_in_deferred_types)
        1    0.000    0.000    0.000    0.000 ExifTags.py:343(Interop)
        1    0.000    0.000    0.000    0.000 ExifTags.py:351(IFD)
        1    0.000    0.000    0.000    0.000 collections.py:1829(TriMesh)
        2    0.000    0.000    0.000    0.000 tokenize.py:319(read_or_stop)
        1    0.000    0.000    0.000    0.000 core.py:4591(PrecededBy)
        1    0.000    0.000    0.000    0.000 core.py:4907(Opt)
        1    0.000    0.000    0.000    0.000 error.py:2(<module>)
        2    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(atleast_3d)
       10    0.000    0.000    0.000    0.000 {method '__array__' of 'numpy.ndarray' objects}
        2    0.000    0.000    0.000    0.000 core.py:3727(_setResultsName)
        3    0.000    0.000    0.000    0.000 gridspec.py:101(set_width_ratios)
        1    0.000    0.000    0.000    0.000 ast.py:65(_raise_malformed_node)
        7    0.000    0.000    0.000    0.000 dataclasses.py:281(__set_name__)
        2    0.000    0.000    0.000    0.000 base.py:6303(_is_comparable_dtype)
        2    0.000    0.000    0.000    0.000 grouper.py:569(name)
        1    0.000    0.000    0.000    0.000 Image.py:178(Resampling)
        2    0.000    0.000    0.000    0.000 colorbar.py:603(_update_dividers)
        1    0.000    0.000    0.000    0.000 collections.py:1350(LineCollection)
        7    0.000    0.000    0.000    0.000 backend_bases.py:924(set_clip_rectangle)
        1    0.000    0.000    0.000    0.000 _base.py:211(_process_plot_var_args)
        1    0.000    0.000    0.000    0.000 axis.py:531(Ticker)
        1    0.000    0.000    0.000    0.000 axis3d.py:596(YAxis)
        6    0.000    0.000    0.000    0.000 axis.py:2163(<genexpr>)
       29    0.000    0.000    0.000    0.000 {built-in method _sre.unicode_tolower}
        6    0.000    0.000    0.000    0.000 base.py:2783(_is_multi)
        2    0.000    0.000    0.000    0.000 traitlets.py:3360(validate)
        4    0.000    0.000    0.000    0.000 collections.py:421(set_pickradius)
        1    0.000    0.000    0.000    0.000 Image.py:452(_E)
        1    0.000    0.000    0.000    0.000 core.py:124(<listcomp>)
        6    0.000    0.000    0.000    0.000 core.py:3380(<genexpr>)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1370(MouseButton)
        1    0.000    0.000    0.000    0.000 patches.py:1852(Circle)
        1    0.000    0.000    0.000    0.000 image.py:1044(NonUniformImage)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:286(CubicTriInterpolator)
        1    0.000    0.000    0.000    0.000 axis3d.py:604(ZAxis)
        1    0.000    0.000    0.000    0.000 layout_engine.py:27(LayoutEngine)
        2    0.000    0.000    0.000    0.000 types.py:79(resolve_bases)
        3    0.000    0.000    0.000    0.000 traitlets.py:2167(_resolve_classes)
        7    0.000    0.000    0.000    0.000 _common.py:9(__init__)
        1    0.000    0.000    0.000    0.000 core.py:4603(ravel)
        4    0.000    0.000    0.000    0.000 config.py:849(inner)
       10    0.000    0.000    0.000    0.000 colors.py:1263(clip)
        1    0.000    0.000    0.000    0.000 _cm.py:66(cubehelix)
        1    0.000    0.000    0.000    0.000 testing.py:124(TestParseResultsAsserts)
        1    0.000    0.000    0.000    0.000 _common.py:21(package_to_anchor)
       10    0.000    0.000    0.000    0.000 axis.py:1652(<dictcomp>)
        4    0.000    0.000    0.000    0.000 inspect.py:1586(_is_type)
        2    0.000    0.000    0.000    0.000 {method 'any' of 'numpy.generic' objects}
        2    0.000    0.000    0.000    0.000 core.py:433(_check_fill_value)
        4    0.000    0.000    0.000    0.000 backend_bases.py:1744(_idle_draw_cntx)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1723(_MathStyle)
        9    0.000    0.000    0.000    0.000 axis.py:2178(get_label_position)
        9    0.000    0.000    0.000    0.000 traitlets.py:263(__init__)
       10    0.000    0.000    0.000    0.000 multiarray.py:84(empty_like)
        1    0.000    0.000    0.000    0.000 core.py:1623(__getitem__)
        1    0.000    0.000    0.000    0.000 helpers.py:703(OpAssoc)
        1    0.000    0.000    0.000    0.000 _enums.py:17(_AutoStringNameEnum)
        1    0.000    0.000    0.000    0.000 _enums.py:181(<listcomp>)
        1    0.000    0.000    0.000    0.000 backend_tools.py:719(ToolZoom)
        2    0.000    0.000    0.000    0.000 model.py:12(qualify)
        1    0.000    0.000    0.000    0.000 _axes.py:5713(<listcomp>)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1228(_get_parent_path)
       14    0.000    0.000    0.000    0.000 version.py:491(_parse_local_version)
        2    0.000    0.000    0.000    0.000 algorithms.py:235(_ensure_arraylike)
        3    0.000    0.000    0.000    0.000 core.py:687(<listcomp>)
        5    0.000    0.000    0.000    0.000 core.py:2269(_generateDefaultName)
        1    0.000    0.000    0.000    0.000 traitlets.py:2863(validate)
        1    0.000    0.000    0.000    0.000 fromnumeric.py:1038(argsort)
        1    0.000    0.000    0.000    0.000 stride_tricks.py:546(<listcomp>)
        1    0.000    0.000    0.000    0.000 ticker.py:200(Formatter)
        1    0.000    0.000    0.000    0.000 transforms.py:1080(TransformedBbox)
        9    0.000    0.000    0.000    0.000 core.py:1465(<genexpr>)
        5    0.000    0.000    0.000    0.000 cm.py:87(__len__)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3581(draw_if_interactive)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1652(ParserState)
        2    0.000    0.000    0.001    0.000 _base.py:1206(_gen_axes_spines)
        2    0.000    0.000    0.000    0.000 ops.py:899(levels)
        1    0.000    0.000    0.000    0.000 transforms.py:2177(BlendedGenericTransform)
        1    0.000    0.000    0.000    0.000 cm.py:53(ColormapRegistry)
        1    0.000    0.000    0.000    0.000 dviread.py:65(Text)
        2    0.000    0.000    0.000    0.000 spines.py:538(__init__)
        1    0.000    0.000    0.000    0.000 axis.py:1771(set_label_text)
        1    0.000    0.000    0.000    0.000 legend_handler.py:505(HandlerPathCollection)
        2    0.000    0.000    0.000    0.000 _base.py:3403(set_axis_on)
        4    0.000    0.000    0.000    0.000 typing.py:1503(_strip_annotations)
        2    0.000    0.000    0.000    0.000 base.py:830(_rename)
        3    0.000    0.000    0.000    0.000 figure.py:86(as_list)
        9    0.000    0.000    0.000    0.000 traitlets.py:266(__call__)
        1    0.000    0.000    0.000    0.000 loader.py:259(merge)
        1    0.000    0.000    0.000    0.000 formatters.py:430(for_type)
        1    0.000    0.000    0.000    0.000 __init__.py:205(<lambda>)
        1    0.000    0.000    0.000    0.000 scale.py:498(AsinhScale)
        1    0.000    0.000    0.000    0.000 ImageFile.py:587(PyCodecState)
        2    0.000    0.000    0.000    0.000 transforms.py:1705(__eq__)
        1    0.000    0.000    0.000    0.000 patches.py:613(Shadow)
        3    0.000    0.000    0.000    0.000 patches.py:768(rotation_point)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:162(ChunkStream)
        1    0.000    0.000    0.000    0.000 offsetbox.py:1474(DraggableBase)
        2    0.000    0.000    0.000    0.000 common.py:213(count_not_none)
        1    0.000    0.000    0.000    0.000 patches.py:962(StepPatch)
       12    0.000    0.000    0.000    0.000 fromnumeric.py:2519(_cumsum_dispatcher)
        1    0.000    0.000    0.000    0.000 six.py:164(_resolve)
        1    0.000    0.000    0.000    0.000 core.py:5373(Combine)
        2    0.000    0.000    0.000    0.000 backend_bases.py:1256(__init__)
        2    0.000    0.000    0.000    0.000 gridspec.py:560(_from_subplot_args)
        1    0.000    0.000    0.000    0.000 posixpath.py:373(abspath)
        2    0.000    0.000    0.000    0.000 typing.py:1500(<dictcomp>)
        4    0.000    0.000    0.000    0.000 __init__.py:1276(disable)
        1    0.000    0.000    0.000    0.000 traitlets.py:3034(__init__)
        4    0.000    0.000    0.000    0.000 grouper.py:806(<genexpr>)
        1    0.000    0.000    0.000    0.000 _vectorized.py:489(is_empty)
        2    0.000    0.000    0.000    0.000 rcsetup.py:530(validate_bbox)
        1    0.000    0.000    0.000    0.000 colors.py:1395(TwoSlopeNorm)
        1    0.000    0.000    0.000    0.000 deprecation.py:308(_deprecated_parameter_class)
        2    0.000    0.000    0.000    0.000 __init__.py:44(__init__)
        1    0.000    0.000    0.000    0.000 ticker.py:1129(LogitFormatter)
        1    0.000    0.000    0.000    0.000 transforms.py:1758(AffineBase)
        1    0.000    0.000    0.000    0.000 core.py:3241(CharsNotIn)
        1    0.000    0.000    0.000    0.000 core.py:4066(MatchFirst)
        1    0.000    0.000    0.000    0.000 collections.py:803(set_alpha)
        1    0.000    0.000    0.000    0.000 backend_tools.py:168(ToolToggleBase)
        1    0.000    0.000    0.000    0.000 backend_tools.py:840(ToolPan)
        1    0.000    0.000    0.000    0.000 model.py:344(StructOrUnion)
        1    0.000    0.000    0.000    0.000 ImageFile.py:85(ImageFile)
        1    0.000    0.000    0.000    0.000 rrule.py:94(rrulebase)
        2    0.000    0.000    0.000    0.000 legend_handler.py:320(__init__)
        2    0.000    0.000    0.000    0.000 abc.py:110(register)
        2    0.000    0.000    0.001    0.000 dataclasses.py:998(dataclass)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(ravel_multi_index)
        3    0.000    0.000    0.000    0.000 transforms.py:968(x1)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:99(Disposal)
        1    0.000    0.000    0.000    0.000 _triangulation.py:1(<module>)
        2    0.000    0.000    0.000    0.000 pathlib.py:46(_ignore_error)
       17    0.000    0.000    0.000    0.000 inspect.py:2556(annotation)
        9    0.000    0.000    0.000    0.000 managers.py:330(<dictcomp>)
        2    0.000    0.000    0.000    0.000 traceback.py:243(__init__)
        1    0.000    0.000    0.000    0.000 pathlib.py:1419(exists)
        2    0.000    0.000    0.000    0.000 dataclasses.py:940(<listcomp>)
        2    0.000    0.000    0.000    0.000 base.py:2388(has_duplicates)
        2    0.000    0.000    0.000    0.000 generic.py:547(<dictcomp>)
        2    0.000    0.000    0.000    0.000 concat.py:582(_dtype_to_na_value)
        1    0.000    0.000    0.000    0.000 legend_handler.py:637(__init__)
        1    0.000    0.000    0.000    0.000 art3d.py:503(Patch3DCollection)
        2    0.000    0.000    0.000    0.000 version.py:92(__ge__)
        1    0.000    0.000    0.000    0.000 deprecation.py:20(MatplotlibDeprecationWarning)
        1    0.000    0.000    0.000    0.000 colors.py:530(ColorConverter)
        1    0.000    0.000    0.000    0.000 ticker.py:1476(PercentFormatter)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1731(new_manager)
        1    0.000    0.000    0.000    0.000 widgets.py:66(Widget)
        1    0.000    0.000    0.000    0.000 figure.py:3111(clear)
        1    0.000    0.000    0.000    0.000 pathlib.py:643(__getitem__)
        2    0.000    0.000    0.000    0.000 Image.py:3457(register_extension)
        2    0.000    0.000    0.000    0.000 traitlets.py:1566(_add_notifiers)
        1    0.000    0.000    0.000    0.000 core.py:2571(wrapped_method)
        3    0.000    0.000    0.000    0.000 traceback.py:292(walk_stack)
        3    0.000    0.000    0.000    0.000 traitlets.py:237(parse_notifier_name)
        2    0.000    0.000    0.000    0.000 stride_tricks.py:25(_maybe_view_as_subclass)
        4    0.000    0.000    0.000    0.000 base.py:161(_freeze)
        2    0.000    0.000    0.000    0.000 ops.py:1311(slabels)
        2    0.000    0.000    0.000    0.000 __init__.py:2159(_backend_module_name)
        1    0.000    0.000    0.000    0.000 Image.py:197(Dither)
        1    0.000    0.000    0.000    0.000 scale.py:410(SymmetricalLogScale)
        6    0.000    0.000    0.000    0.000 transforms.py:1751(<lambda>)
        1    0.000    0.000    0.000    0.000 legend_handler.py:516(HandlerCircleCollection)
        1    0.000    0.000    0.000    0.000 {method 'tolist' of 'memoryview' objects}
        4    0.000    0.000    0.000    0.000 configurable.py:565(initialized)
        2    0.000    0.000    0.000    0.000 base.py:4437(_wrap_reindex_result)
        1    0.000    0.000    0.000    0.000 core.py:4177(Each)
        1    0.000    0.000    0.000    0.000 collections.py:928(_CollectionWithSizes)
        1    0.000    0.000    0.000    0.000 model.py:25(BaseTypeByIdentity)
        1    0.000    0.000    0.000    0.000 geo.py:409(LambertAxes)
        1    0.000    0.000    0.000    0.000 artist.py:1025(_set_alpha_for_array)
        3    0.000    0.000    0.000    0.000 traitlets.py:616(default)
        4    0.000    0.000    0.000    0.000 typing.py:285(_eval_type)
        8    0.000    0.000    0.000    0.000 numeric.py:73(_zeros_like_dispatcher)
        4    0.000    0.000    0.000    0.000 common.py:178(not_none)
        1    0.000    0.000    0.000    0.000 function_base.py:5045(<listcomp>)
        4    0.000    0.000    0.000    0.000 base.py:1194(_maybe_disallow_fill)
        2    0.000    0.000    0.000    0.000 concat.py:670(_is_uniform_reindex)
        1    0.000    0.000    0.000    0.000 colors.py:133(__init__)
        1    0.000    0.000    0.000    0.000 Image.py:169(Transform)
        1    0.000    0.000    0.000    0.000 ticker.py:1770(LinearLocator)
        1    0.000    0.000    0.000    0.000 core.py:125(<listcomp>)
        1    0.000    0.000    0.000    0.000 core.py:2863(Char)
        1    0.000    0.000    0.001    0.001 helpers.py:648(make_html_tags)
        1    0.000    0.000    0.000    0.000 category.py:26(StrCategoryConverter)
        1    0.000    0.000    0.000    0.000 art3d.py:183(Line3D)
        1    0.000    0.000    0.000    0.000 ticker.py:2735(LogitLocator)
        1    0.000    0.000    0.000    0.000 dviread.py:831(PsfontsMap)
        4    0.000    0.000    0.000    0.000 grouper.py:804(<genexpr>)
        2    0.000    0.000    0.000    0.000 groupby.py:745(_selected_obj)
        1    0.000    0.000    0.000    0.000 ElementTree.py:477(QName)
       12    0.000    0.000    0.000    0.000 transforms.py:1362(depth)
        2    0.000    0.000    0.000    0.000 core.py:3528(__init__)
        2    0.000    0.000    0.000    0.000 colorbar.py:1273(_get_extension_lengths)
        1    0.000    0.000    0.000    0.000 patches.py:934(PathPatch)
        1    0.000    0.000    0.000    0.000 textpath.py:304(TextPath)
        1    0.000    0.000    0.000    0.000 ImageFile.py:358(Parser)
        8    0.000    0.000    0.000    0.000 gridspec.py:616(get_gridspec)
        1    0.000    0.000    0.000    0.000 _tritools.py:11(TriAnalyzer)
        1    0.000    0.000    0.000    0.000 geo.py:294(HammerAxes)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(meshgrid)
        1    0.000    0.000    0.000    0.000 unicode.py:75(nums)
        1    0.000    0.000    0.000    0.000 core.py:2499(CaselessKeyword)
        1    0.000    0.000    0.000    0.000 core.py:4501(AtStringStart)
        4    0.000    0.000    0.000    0.000 backend_bases.py:1752(is_saving)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3388(ToolContainerBase)
        1    0.000    0.000    0.000    0.000 text.py:1457(_AnnotationBase)
        1    0.000    0.000    0.000    0.000 patches.py:2177(_Style)
        1    0.000    0.000    0.000    0.000 legend_handler.py:528(__init__)
        6    0.000    0.000    0.000    0.000 backend_agg.py:289(option_image_nocomposite)
        1    0.000    0.000    0.000    0.000 genericpath.py:39(isdir)
        1    0.000    0.000    0.000    0.000 traitlets.py:3011(validate_elements)
        1    0.000    0.000    0.000    0.000 pathlib.py:996(parents)
        8    0.000    0.000    0.000    0.000 arraysetops.py:519(_in1d_dispatcher)
        2    0.000    0.000    0.000    0.000 algorithms.py:855(resolve_na_sentinel)
        8    0.000    0.000    0.000    0.000 ops.py:762(groupings)
        1    0.000    0.000    0.001    0.001 base.py:424(boundary)
        3    0.000    0.000    0.000    0.000 __init__.py:1718(sanitize_sequence)
        1    0.000    0.000    0.000    0.000 core.py:106(<listcomp>)
        2    0.000    0.000    0.000    0.000 core.py:3379(_generateDefaultName)
        1    0.000    0.000    0.000    0.000 collections.py:1666(CircleCollection)
        1    0.000    0.000    0.000    0.000 lines.py:1530(VertexSelector)
        1    0.000    0.000    0.000    0.000 backend_tools.py:906(ToolHelpBase)
        1    0.000    0.000    0.000    0.000 _mathtext.py:467(UnicodeFonts)
        4    0.000    0.000    0.000    0.000 {built-in method pyproj._compat.cstrencode}
        1    0.000    0.000    0.000    0.000 __init__.py:2038(_OrderedSet)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3576(new_figure_manager_given_figure)
        1    0.000    0.000    0.000    0.000 backend_tools.py:467(ToolViewsPositions)
        1    0.000    0.000    0.000    0.000 spines.py:515(Spines)
        1    0.000    0.000    0.000    0.000 model.py:297(__init__)
        1    0.000    0.000    0.000    0.000 units.py:108(ConversionInterface)
        1    0.000    0.000    0.000    0.000 polar.py:187(InvertedPolarTransform)
        1    0.000    0.000    0.003    0.003 pyplot.py:359(_warn_if_gui_out_of_main_thread)
       10    0.000    0.000    0.000    0.000 artist.py:1375(get_mouseover)
        3    0.000    0.000    0.000    0.000 traitlets.py:2162(instance_init)
        2    0.000    0.000    0.000    0.000 base.py:5551(identical)
        1    0.000    0.000    0.000    0.000 {method 'title' of 'str' objects}
        6    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISDIR}
        1    0.000    0.000    0.000    0.000 traitlets.py:1129(compatible_observer)
        1    0.000    0.000    0.000    0.000 traitlets.py:1248(instance_init)
        9    0.000    0.000    0.000    0.000 shape_base.py:19(_atleast_1d_dispatcher)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(inv)
        2    0.000    0.000    0.000    0.000 numeric.py:192(_ensure_dtype)
        1    0.000    0.000    0.000    0.000 __init__.py:203(__getattr__)
        1    0.000    0.000    0.000    0.000 scale.py:259(LogScale)
        1    0.000    0.000    0.000    0.000 transforms.py:2450(CompositeAffine2D)
        1    0.000    0.000    0.000    0.000 unicode.py:231(Japanese)
        1    0.000    0.000    0.000    0.000 core.py:4714(NotAny)
        1    0.000    0.000    0.000    0.000 figure.py:2118(_set_artist_props)
        1    0.000    0.000    0.000    0.000 offsetbox.py:826(AuxTransformBox)
        1    0.000    0.000    0.000    0.000 rrule.py:1112(_iterinfo)
        1    0.000    0.000    0.000    0.000 streamplot.py:254(DomainMap)
        1    0.000    0.000    0.000    0.000 geo.py:339(MollweideAxes)
        1    0.000    0.000    0.000    0.000 polar.py:139(PolarAffine)
        1    0.000    0.000    0.000    0.000 polar.py:497(_ThetaShift)
        9    0.000    0.000    0.000    0.000 fromnumeric.py:1987(_shape_dispatcher)
        8    0.000    0.000    0.000    0.000 arraysetops.py:368(_intersect1d_dispatcher)
        1    0.000    0.000    0.000    0.000 generic.py:2002(empty)
        6    0.000    0.000    0.000    0.000 axis.py:2169(<genexpr>)
       15    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISLNK}
        1    0.000    0.000    0.000    0.000 geo.py:248(AitoffAxes)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1245(__iter__)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(vstack)
        2    0.000    0.000    0.000    0.000 concat.py:625(_get_result_dim)
        2    0.000    0.000    0.000    0.000 core.py:528(set_results_name)
        1    0.000    0.000    0.000    0.000 core.py:2524(CloseMatch)
        1    0.000    0.000    0.000    0.000 model.py:160(__init__)
        1    0.000    0.000    0.000    0.000 gridspec.py:319(GridSpec)
        6    0.000    0.000    0.000    0.000 gridspec.py:608(num2)
        1    0.000    0.000    0.000    0.000 geo.py:225(_GeoTransform)
        1    0.000    0.000    0.000    0.000 polar.py:747(_WedgeBbox)
        1    0.000    0.000    0.000    0.000 configurable.py:90(notice_config_override)
        1    0.000    0.000    0.000    0.000 decorators.py:45(wrapper)
        2    0.000    0.000    0.000    0.000 dataclasses.py:300(__init__)
        1    0.000    0.000    0.000    0.000 shape_base.py:470(<listcomp>)
        3    0.000    0.000    0.000    0.000 core.py:658(<listcomp>)
        1    0.000    0.000    0.000    0.000 colors.py:82(<dictcomp>)
        1    0.000    0.000    0.011    0.011 collections.py:1823(set_paths)
        1    0.000    0.000    0.000    0.000 _mathtext.py:267(TruetypeFonts)
        1    0.000    0.000    0.000    0.000 axis.py:409(XTick)
        1    0.000    0.000    0.000    0.000 dates.py:1120(DateLocator)
        1    0.000    0.000    0.000    0.000 polar.py:401(ThetaAxis)
        1    0.000    0.000    0.000    0.000 layout_engine.py:191(ConstrainedLayoutEngine)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(stack)
        4    0.000    0.000    0.000    0.000 config.py:627(_get_registered_option)
        2    0.000    0.000    0.000    0.000 rcsetup.py:544(validate_sketch)
        1    0.000    0.000    0.000    0.000 Image.py:210(Quantize)
        2    0.000    0.000    0.000    0.000 colors.py:1273(_changed)
        1    0.000    0.000    0.000    0.000 {method 'cast' of 'memoryview' objects}
        2    0.000    0.000    0.000    0.000 __init__.py:1230(append)
        1    0.000    0.000    0.000    0.000 pathlib.py:630(__init__)
        2    0.000    0.000    0.000    0.000 dataclasses.py:943(<listcomp>)
        1    0.000    0.000    0.000    0.000 linalg.py:112(_makearray)
        6    0.000    0.000    0.000    0.000 base.py:728(_constructor)
        1    0.000    0.000    0.000    0.000 __init__.py:101(_StrongRef)
        2    0.000    0.000    0.000    0.000 rcsetup.py:387(validate_fontstretch)
        1    0.000    0.000    0.000    0.000 common.py:56(ExternalReferenceForbidden)
        1    0.000    0.000    0.000    0.000 ElementTree.py:79(DefusedXMLParser)
        1    0.000    0.000    0.000    0.000 core.py:2299(Literal)
        1    0.000    0.000    0.000    0.000 collections.py:975(PathCollection)
        1    0.000    0.000    0.000    0.000 _pylab_helpers.py:33(get_fig_manager)
        1    0.000    0.000    0.000    0.000 widgets.py:153(Button)
        2    0.000    0.000    0.000    0.000 axis.py:2018(<listcomp>)
        1    0.000    0.000    0.000    0.000 _trirefine.py:47(UniformTriRefiner)
        1    0.000    0.000    0.000    0.000 polar.py:698(RadialAxis)
        1    0.000    0.000    0.000    0.000 traitlets.py:1986(_resolve_string)
        2    0.000    0.000    0.000    0.000 common.py:624(is_builtin_func)
        1    0.000    0.000    0.000    0.000 array.py:447(is_empty)
        1    0.000    0.000    0.000    0.000 __init__.py:1262(interactive)
        1    0.000    0.000    0.000    0.000 pyplot.py:388(draw_if_interactive)
        3    0.000    0.000    0.000    0.000 collections.py:725(_get_default_facecolor)
       10    0.000    0.000    0.000    0.000 artist.py:430(is_transform_set)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1229(Vlist)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:120(Blend)
        1    0.000    0.000    0.000    0.000 dates.py:1826(DateConverter)
        2    0.000    0.000    0.000    0.000 rcsetup.py:432(validate_ps_distiller)
        2    0.000    0.000    0.000    0.000 {method 'isnumeric' of 'str' objects}
        4    0.000    0.000    0.000    0.000 grouper.py:805(<genexpr>)
        1    0.000    0.000    0.000    0.000 core.py:126(<listcomp>)
        6    0.000    0.000    0.000    0.000 _base.py:799(get_window_extent)
        3    0.000    0.000    0.000    0.000 functools.py:964(__set_name__)
        1    0.000    0.000    0.000    0.000 traitlets.py:1329(__init__)
        3    0.000    0.000    0.000    0.000 traitlets.py:1800(has_trait)
        6    0.000    0.000    0.000    0.000 numeric.py:2403(_array_equal_dispatcher)
        8    0.000    0.000    0.000    0.000 arraysetops.py:761(_isin_dispatcher)
        4    0.000    0.000    0.000    0.000 missing.py:107(clean_fill_method)
        2    0.000    0.000    0.000    0.000 base.py:4301(_validate_can_reindex)
        1    0.000    0.000    0.000    0.000 colors.py:1800(SymLogNorm)
        1    0.000    0.000    0.000    0.000 TiffTags.py:23(TagInfo)
        1    0.000    0.000    0.000    0.000 ImageFile.py:670(PyDecoder)
        1    0.000    0.000    0.000    0.000 transforms.py:1808(Affine2DBase)
        1    0.000    0.000    0.000    0.000 core.py:5430(Group)
        1    0.000    0.000    0.000    0.000 colorbar.py:150(__init__)
        2    0.000    0.000    0.000    0.000 collections.py:1456(_get_default_edgecolor)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2850(create_with_canvas)
        1    0.000    0.000    0.000    0.000 mathtext.py:93(MathtextBackendAgg)
        1    0.000    0.000    0.000    0.000 _mathtext.py:150(Fonts)
        1    0.000    0.000    0.000    0.000 _compat.py:31(TraversableResourcesLoader)
        1    0.000    0.000    0.000    0.000 axis.py:470(YTick)
        3    0.000    0.000    0.000    0.000 axis.py:1334(<genexpr>)
        1    0.000    0.000    0.000    0.000 dates.py:1196(RRuleLocator)
        1    0.000    0.000    0.000    0.000 layout_engine.py:127(TightLayoutEngine)
        1    0.000    0.000    0.000    0.000 Image.py:3468(register_extensions)
        1    0.000    0.000    0.000    0.000 backend_tools.py:255(ToolSetCursor)
        1    0.000    0.000    0.000    0.000 _base.py:1406(ArtistList)
        1    0.000    0.000    0.000    0.000 art3d.py:381(Patch3D)
        2    0.000    0.000    0.000    0.000 {built-in method atexit.register}
        2    0.000    0.000    0.000    0.000 traitlets.py:3367(validate_elements)
        6    0.000    0.000    0.000    0.000 multiarray.py:1029(unravel_index)
        1    0.000    0.000    0.000    0.000 transforms.py:2530(BboxTransform)
        1    0.000    0.000    0.000    0.000 core.py:3569(WordEnd)
        1    0.000    0.000    0.000    0.000 core.py:4522(AtLineStart)
        1    0.000    0.000    0.000    0.000 patches.py:3180(_Curve)
        1    0.000    0.000    0.000    0.000 dviread.py:1034(_LuatexKpsewhich)
        1    0.000    0.000    0.000    0.000 _mathtext.py:979(Char)
        1    0.000    0.000    0.000    0.000 figure.py:82(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:61(ProjectionRegistry)
        2    0.000    0.000    0.000    0.000 _base.py:3969(set_navigate)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:1215(_Sparse_Matrix_coo)
        5    0.000    0.000    0.000    0.000 artist.py:1093(get_label)
        5    0.000    0.000    0.000    0.000 {method 'intersection' of 'set' objects}
        4    0.000    0.000    0.000    0.000 loader.py:244(_ensure_subconfig)
        1    0.000    0.000    0.000    0.000 core.py:4555(FollowedBy)
        2    0.000    0.000    0.000    0.000 typing.py:1846(<listcomp>)
        1    0.000    0.000    0.000    0.000 traitlets.py:1256(instance_init)
        1    0.000    0.000    0.000    0.000 decorators.py:28(flag_calls)
        1    0.000    0.000    0.000    0.000 shape_base.py:462(<setcomp>)
        2    0.000    0.000    0.000    0.000 algorithms.py:905(_re_wrap_factorize)
        2    0.000    0.000    0.000    0.000 base.py:6576(_maybe_cast_listlike_indexer)
        2    0.000    0.000    0.000    0.000 base.py:7456(unpack_nested_dtype)
        1    0.000    0.000    0.000    0.000 colors.py:1112(ListedColormap)
        1    0.000    0.000    0.000    0.000 common.py:25(DTDForbidden)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1116(_ListDataStream)
        1    0.000    0.000    0.000    0.000 ImageFile.py:719(PyEncoder)
        1    0.000    0.000    0.000    0.000 transforms.py:2159(_BlendedMixin)
        1    0.000    0.000    0.000    0.000 core.py:3436(LineStart)
        1    0.000    0.000    0.000    0.000 core.py:5509(__init__)
        1    0.000    0.000    0.000    0.000 results.py:11(_ParseResultsWithOffset)
        1    0.000    0.000    0.000    0.000 testing.py:20(reset_pyparsing_context)
        1    0.000    0.000    0.000    0.000 cm.py:405(_scale_norm)
        1    0.000    0.000    0.000    0.000 collections.py:1340(StarPolygonCollection)
        1    0.000    0.000    0.000    0.000 text.py:1374(OffsetFrom)
        1    0.000    0.000    0.000    0.000 patches.py:3109(_Base)
        1    0.000    0.000    0.000    0.000 _base.py:852(<dictcomp>)
        1    0.000    0.000    0.000    0.000 legend_handler.py:728(__init__)
        1    0.000    0.000    0.000    0.000 streamplot.py:317(Grid)
        1    0.000    0.000    0.000    0.000 {method 'startswith' of 'bytes' objects}
        1    0.000    0.000    0.000    0.000 pathlib.py:507(__init__)
        6    0.000    0.000    0.000    0.000 common.py:217(<genexpr>)
        2    0.000    0.000    0.000    0.000 base.py:7336(ensure_has_len)
        1    0.000    0.000    0.000    0.000 colors.py:60(_ColorMapping)
        1    0.000    0.000    0.000    0.000 Image.py:205(Palette)
        1    0.000    0.000    0.000    0.000 contour.py:1369(QuadContourSet)
        1    0.000    0.000    0.000    0.000 backend_tools.py:370(ToolQuit)
        1    0.000    0.000    0.000    0.000 widgets.py:28(LockDraw)
        4    0.000    0.000    0.000    0.000 gridspec.py:612(num2)
        2    0.000    0.000    0.000    0.000 bunch.py:13(__getattr__)
        1    0.000    0.000    0.000    0.000 shape_base.py:373(_stack_dispatcher)
        6    0.000    0.000    0.000    0.000 __init__.py:826(<dictcomp>)
        1    0.000    0.000    0.000    0.000 transforms.py:2632(BboxTransformFrom)
        1    0.000    0.000    0.000    0.000 artist.py:912(set_clip_on)
        1    0.000    0.000    0.000    0.000 {built-in method posix.register_at_fork}
        1    0.000    0.000    0.000    0.000 traitlets.py:1658(unobserve)
        2    0.000    0.000    0.000    0.000 dataclasses.py:949(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:1231(<lambda>)
        4    0.000    0.000    0.000    0.000 base.py:241(disallow_kwargs)
        2    0.000    0.000    0.000    0.000 base.py:574(_ensure_array)
        2    0.000    0.000    0.000    0.000 ops.py:901(<listcomp>)
        1    0.000    0.000    0.000    0.000 plotting.py:221(<dictcomp>)
        1    0.000    0.000    0.000    0.000 <string>:1(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:536(get_configdir)
        3    0.000    0.000    0.000    0.000 __init__.py:109(__call__)
        1    0.000    0.000    0.000    0.000 scale.py:123(FuncTransform)
        1    0.000    0.000    0.000    0.000 core.py:5363(TokenConverter)
        1    0.000    0.000    0.000    0.000 colorbar.py:123(_ColorbarSpine)
        2    0.000    0.000    0.000    0.000 collections.py:560(_get_default_linewidth)
        1    0.000    0.000    0.000    0.000 model.py:489(EnumType)
        1    0.000    0.000    0.000    0.000 model.py:293(ArrayType)
        1    0.000    0.000    0.000    0.000 figure.py:105(current)
        1    0.000    0.000    0.000    0.000 figure.py:2587(set_layout_engine)
        2    0.000    0.000    0.000    0.000 figure.py:2890(set_canvas)
        2    0.000    0.000    0.000    0.000 _base.py:652(<dictcomp>)
        1    0.000    0.000    0.000    0.000 category.py:138(StrCategoryFormatter)
        1    0.000    0.000    0.000    0.000 dates.py:999(rrulewrapper)
        1    0.000    0.000    0.000    0.000 legend_handler.py:362(HandlerStepPatch)
        1    0.000    0.000    0.000    0.000 mlab.py:843(GaussianKDE)
        1    0.000    0.000    0.000    0.000 polar.py:257(_AxisWrapper)
        1    0.000    0.000    0.000    0.000 polar.py:448(RadialLocator)
        1    0.000    0.000    0.000    0.000 linecache.py:52(checkcache)
        1    0.000    0.000    0.000    0.000 transforms.py:2573(BboxTransformTo)
        1    0.000    0.000    0.000    0.000 figure.py:3214(add_axobserver)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:177(argsort)
        4    0.000    0.000    0.000    0.000 concat.py:673(<genexpr>)
        1    0.000    0.000    0.000    0.000 __init__.py:748(_get_backend_or_none)
        1    0.000    0.000    0.000    0.000 colors.py:1838(AsinhNorm)
        2    0.000    0.000    0.000    0.000 transforms.py:2134(transform_non_affine)
        1    0.000    0.000    0.000    0.000 util.py:125(LRUMemo)
        4    0.000    0.000    0.000    0.000 artist.py:1113(get_zorder)
        1    0.000    0.000    0.000    0.000 lines.py:1466(_AxLine)
        1    0.000    0.000    0.000    0.000 dviread.py:573(DviFont)
        2    0.000    0.000    0.000    0.000 _base.py:3985(set_navigate_mode)
        1    0.000    0.000    0.000    0.000 legend_handler.py:46(HandlerBase)
        1    0.000    0.000    0.000    0.000 _trifinder.py:24(TrapezoidMapTriFinder)
        1    0.000    0.000    0.000    0.000 typing.py:1349(runtime_checkable)
        1    0.000    0.000    0.000    0.000 traitlets.py:1690(_register_validator)
        1    0.000    0.000    0.000    0.000 traitlets.py:2889(class_init)
        2    0.000    0.000    0.000    0.000 traitlets.py:3402(subclass_init)
        1    0.000    0.000    0.000    0.000 _docstring.py:6(Substitution)
        1    0.000    0.000    0.000    0.000 ImageSequence.py:19(<module>)
        1    0.000    0.000    0.000    0.000 ticker.py:1586(Locator)
        4    0.000    0.000    0.000    0.000 results.py:241(__len__)
        1    0.000    0.000    0.000    0.000 dviread.py:664(Vf)
        2    0.000    0.000    0.000    0.000 widgets.py:38(__init__)
        1    0.000    0.000    0.000    0.000 dates.py:1272(AutoDateLocator)
        1    0.000    0.000    0.000    0.000 dates.py:1711(MicrosecondLocator)
        1    0.000    0.000    0.000    0.000 rrule.py:305(rrule)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:985(_DOF_estimator)
        1    0.000    0.000    0.000    0.000 art3d.py:341(Line3DCollection)
        1    0.000    0.000    0.000    0.000 {method 'seek' of '_io.BufferedReader' objects}
        1    0.000    0.000    0.000    0.000 shape_base.py:218(_vhstack_dispatcher)
        1    0.000    0.000    0.000    0.000 _docstring.py:64(_ArtistPropertiesSubstitution)
        1    0.000    0.000    0.000    0.000 scale.py:29(ScaleBase)
        1    0.000    0.000    0.000    0.000 scale.py:201(LogTransform)
        1    0.000    0.000    0.000    0.000 core.py:192(_should_enable_warnings)
        2    0.000    0.000    0.000    0.000 colorbar.py:1314(_short_axis)
        1    0.000    0.000    0.000    0.000 artist.py:88(_finalize_rasterization)
        1    0.000    0.000    0.000    0.000 backend_tools.py:652(ZoomPanBase)
        1    0.000    0.000    0.000    0.000 _mathtext.py:815(FontConstantsBase)
        1    0.000    0.000    0.000    0.000 widgets.py:3722(EllipseSelector)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:273(PngInfo)
        2    0.000    0.000    0.000    0.000 __init__.py:73(get_projection_class)
        1    0.000    0.000    0.000    0.000 dates.py:627(DateFormatter)
        4    0.000    0.000    0.000    0.000 contextlib.py:694(__exit__)
        1    0.000    0.000    0.000    0.000 linalg.py:107(get_linalg_error_extobj)
        1    0.000    0.000    0.000    0.000 __init__.py:555(get_cachedir)
        1    0.000    0.000    0.000    0.000 __init__.py:581(maxdict)
        1    0.000    0.000    0.000    0.000 colors.py:1870(PowerNorm)
        1    0.000    0.000    0.000    0.000 ticker.py:272(FixedFormatter)
        1    0.000    0.000    0.000    0.000 scale.py:582(LogitTransform)
        1    0.000    0.000    0.000    0.000 scale.py:625(LogitScale)
        1    0.000    0.000    0.000    0.000 core.py:3775(_ErrorStop)
        1    0.000    0.000    0.000    0.000 colorbar.py:146(_ColorbarAxesLocator)
        2    0.000    0.000    0.000    0.000 collections.py:1453(_get_default_antialiased)
        4    0.000    0.000    0.000    0.000 backend_bases.py:1646(<lambda>)
        1    0.000    0.000    0.000    0.000 _mathtext.py:922(Node)
        1    0.000    0.000    0.000    0.000 model.py:278(ConstPointerType)
        1    0.000    0.000    0.000    0.000 model.py:178(UnknownIntegerType)
        3    0.000    0.000    0.000    0.000 figure.py:2653(get_layout_engine)
        3    0.000    0.000    0.000    0.000 _base.py:2599(use_sticky_edges)
        4    0.000    0.000    0.000    0.000 contextlib.py:691(__enter__)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:874(_sort_dispatcher)
        1    0.000    0.000    0.000    0.000 Image.py:3434(register_save)
        3    0.000    0.000    0.000    0.000 {method 'popitem' of 'dict' objects}
        1    0.000    0.000    0.000    0.000 {method 'difference' of 'set' objects}
        1    0.000    0.000    0.000    0.000 traitlets.py:1579(_remove_notifiers)
        1    0.000    0.000    0.000    0.000 linalg.py:186(_assert_stacked_square)
        2    0.000    0.000    0.000    0.000 array.py:1399(<listcomp>)
        2    0.000    0.000    0.000    0.000 __init__.py:313(blocked)
        2    0.000    0.000    0.000    0.000 rcsetup.py:341(validate_aspect)
        1    0.000    0.000    0.000    0.000 _util.py:14(DeferredError)
        1    0.000    0.000    0.000    0.000 Image.py:3423(register_mime)
        1    0.000    0.000    0.000    0.000 common.py:88(_generate_etree_functions)
        1    0.000    0.000    0.000    0.000 colors.py:1921(BoundaryNorm)
        1    0.000    0.000    0.000    0.000 rcsetup.py:51(ValidateInStrings)
        2    0.000    0.000    0.000    0.000 rcsetup.py:163(validate_dpi)
        1    0.000    0.000    0.000    0.000 scale.py:465(AsinhTransform)
        1    0.000    0.000    0.000    0.000 scale.py:242(InvertedLogTransform)
        1    0.000    0.000    0.000    0.000 scale.py:308(FuncScaleLog)
        1    0.000    0.000    0.000    0.000 GimpPaletteFile.py:22(GimpPaletteFile)
        1    0.000    0.000    0.000    0.000 transforms.py:2694(AffineDeltaTransform)
        1    0.000    0.000    0.000    0.000 core.py:3506(StringStart)
        1    0.000    0.000    0.000    0.000 core.py:5467(Dict)
        1    0.000    0.000    0.000    0.000 collections.py:1345(AsteriskPolygonCollection)
        1    0.000    0.000    0.000    0.000 artist.py:943(set_rasterized)
        1    0.000    0.000    0.000    0.000 artist.py:1382(set_mouseover)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1317(LocationEvent)
        1    0.000    0.000    0.000    0.000 backend_tools.py:314(ToolCursorPosition)
        1    0.000    0.000    0.000    0.000 mathtext.py:37(MathtextBackend)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1404(Kern)
        1    0.000    0.000    0.000    0.000 widgets.py:254(SliderBase)
        1    0.000    0.000    0.000    0.000 spines.py:576(__setitem__)
        1    0.000    0.000    0.000    0.000 _base.py:874(<dictcomp>)
        1    0.000    0.000    0.000    0.000 offsetbox.py:1586(DraggableOffsetBox)
        1    0.000    0.000    0.000    0.000 dates.py:658(ConciseDateFormatter)
        1    0.000    0.000    0.000    0.000 dates.py:1914(_SwitchableDateConverter)
        1    0.000    0.000    0.000    0.000 _tricontour.py:8(TriContourSet)
        1    0.000    0.000    0.000    0.000 polar.py:309(ThetaTick)
        6    0.000    0.000    0.000    0.000 stride_tricks.py:345(<genexpr>)
        1    0.000    0.000    0.000    0.000 transforms.py:2668(ScaledTranslation)
        2    0.000    0.000    0.000    0.000 collections.py:821(get_linewidth)
        1    0.000    0.000    0.000    0.000 functools.py:852(<lambda>)
        1    0.000    0.000    0.000    0.000 scale.py:607(LogisticTransform)
        1    0.000    0.000    0.000    0.000 ticker.py:1705(FixedLocator)
        2    0.000    0.000    0.000    0.000 collections.py:705(_get_default_antialiased)
        1    0.000    0.000    0.000    0.000 model.py:88(__init__)
        1    0.000    0.000    0.000    0.000 ImageFile.py:328(StubImageFile)
        1    0.000    0.000    0.000    0.000 figure.py:1291(<dictcomp>)
        1    0.000    0.000    0.000    0.000 rrule.py:1315(_genitem)
        1    0.000    0.000    0.000    0.000 legend_handler.py:167(HandlerNpoints)
        4    0.000    0.000    0.000    0.000 {method 'discard' of 'set' objects}
        1    0.000    0.000    0.000    0.000 six.py:85(_import_module)
        2    0.000    0.000    0.000    0.000 __init__.py:1269(is_interactive)
        2    0.000    0.000    0.000    0.000 __init__.py:112(__eq__)
        1    0.000    0.000    0.000    0.000 __init__.py:339(silent_list)
        1    0.000    0.000    0.000    0.000 scale.py:378(InvertedSymmetricalLogTransform)
        1    0.000    0.000    0.000    0.000 scale.py:346(SymmetricalLogTransform)
        1    0.000    0.000    0.000    0.000 ImageFile.py:598(PyCodec)
        1    0.000    0.000    0.000    0.000 PaletteFile.py:19(PaletteFile)
        1    0.000    0.000    0.000    0.000 ticker.py:1910(_Edge_integer)
        1    0.000    0.000    0.000    0.000 transforms.py:963(y0)
        1    0.000    0.000    0.000    0.000 unicode.py:155(Greek)
        1    0.000    0.000    0.000    0.000 actions.py:7(OnlyOnce)
        1    0.000    0.000    0.000    0.000 core.py:3523(StringEnd)
        6    0.000    0.000    0.000    0.000 _enums.py:20(_generate_next_value_)
        1    0.000    0.000    0.000    0.000 colorbar.py:991(set_alpha)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1378(MouseEvent)
        1    0.000    0.000    0.000    0.000 backend_tools.py:405(ToolMinorGrid)
        1    0.000    0.000    0.000    0.000 backend_tools.py:430(AxisScaleBase)
        1    0.000    0.000    0.000    0.000 _mathtext.py:91(Output)
        1    0.000    0.000    0.000    0.000 _mathtext.py:635(DejaVuSerifFonts)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1073(List)
        1    0.000    0.000    0.000    0.000 spines.py:480(SpinesProxy)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:251(iTXt)
        1    0.000    0.000    0.000    0.000 model.py:72(BaseType)
        1    0.000    0.000    0.000    0.000 model.py:327(StructOrUnionOrEnum)
        1    0.000    0.000    0.000    0.000 model.py:239(FunctionPtrType)
        1    0.000    0.000    0.000    0.000 core.py:246(update_nested_dict)
        2    0.000    0.000    0.000    0.000 axis.py:580(__init__)
        1    0.000    0.000    0.000    0.000 gridspec.py:475(GridSpecFromSubplotSpec)
        1    0.000    0.000    0.000    0.000 legend.py:53(DraggableLegend)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:15(TriInterpolator)
        1    0.000    0.000    0.000    0.000 geo.py:412(LambertTransform)
        1    0.000    0.000    0.000    0.000 polar.py:280(ThetaLocator)
        1    0.000    0.000    0.000    0.000 polar.py:547(RadialTick)
        1    0.000    0.000    0.000    0.000 art3d.py:431(PathPatch3D)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1218(_find_parent_path_names)
        1    0.000    0.000    0.000    0.000 ast.py:71(_convert_signed_num)
        2    0.000    0.000    0.000    0.000 linalg.py:117(isComplexType)
        2    0.000    0.000    0.000    0.000 concat.py:701(_maybe_check_integrity)
        1    0.000    0.000    0.000    0.000 base.py:295(is_empty)
        1    0.000    0.000    0.000    0.000 ImageMode.py:22(ModeDescriptor)
        1    0.000    0.000    0.000    0.000 scale.py:483(InvertedAsinhTransform)
        1    0.000    0.000    0.000    0.000 ticker.py:1676(IndexLocator)
        1    0.000    0.000    0.000    0.000 ticker.py:2465(SymmetricalLogLocator)
        1    0.000    0.000    0.000    0.000 core.py:2261(Token)
        1    0.000    0.000    0.000    0.000 core.py:4862(_generateDefaultName)
        2    0.000    0.000    0.000    0.000 results.py:418(__getattr__)
        1    0.000    0.000    0.000    0.000 collections.py:1450(_get_default_linewidth)
        1    0.000    0.000    0.000    0.000 backend_tools.py:342(RubberbandBase)
        1    0.000    0.000    0.000    0.000 backend_tools.py:420(ToolFullScreen)
        1    0.000    0.000    0.000    0.000 backend_tools.py:447(ToolYScale)
        1    0.000    0.000    0.000    0.000 backend_tools.py:644(SaveFigureBase)
        1    0.000    0.000    0.000    0.000 _mathtext.py:945(Box)
        1    0.000    0.000    0.000    0.000 widgets.py:1867(SubplotTool)
        1    0.000    0.000    0.000    0.000 model.py:224(RawFunctionType)
        1    0.000    0.000    0.000    0.000 streamplot.py:375(StreamMask)
        1    0.000    0.000    0.000    0.000 layout_engine.py:103(PlaceHolderLayoutEngine)
        1    0.000    0.000    0.000    0.000 common.py:18(DefusedXmlException)
        1    0.000    0.000    0.000    0.000 scale.py:89(LinearScale)
        1    0.000    0.000    0.000    0.000 scale.py:159(FuncScale)
        1    0.000    0.000    0.000    0.000 GimpGradientFile.py:66(GradientFile)
        1    0.000    0.000    0.000    0.000 ticker.py:2623(AsinhLocator)
        1    0.000    0.000    0.000    0.000 unicode.py:149(LatinB)
        1    0.000    0.000    0.000    0.000 core.py:3483(LineEnd)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1239(Event)
        1    0.000    0.000    0.000    0.000 backend_tools.py:610(ToolHome)
        1    0.000    0.000    0.000    0.000 backend_tools.py:944(ToolCopyToClipboardBase)
        1    0.000    0.000    0.000    0.000 widgets.py:110(AxesWidget)
        1    0.000    0.000    0.000    0.000 model.py:192(UnknownFloatType)
        1    0.000    0.000    0.000    0.000 category.py:118(StrCategoryLocator)
        1    0.000    0.000    0.000    0.000 category.py:168(UnitData)
        1    0.000    0.000    0.000    0.000 container.py:43(BarContainer)
        1    0.000    0.000    0.000    0.000 backend_agg.py:552(_BackendAgg)
        1    0.000    0.000    0.000    0.000 ast.py:67(_convert_num)
        5    0.000    0.000    0.000    0.000 shape_base.py:77(_atleast_2d_dispatcher)
        1    0.000    0.000    0.000    0.000 linalg.py:130(_realType)
        2    0.000    0.000    0.000    0.000 typing.py:1196(<genexpr>)
        1    0.000    0.000    0.000    0.000 pathlib.py:637(__len__)
        3    0.000    0.000    0.000    0.000 fromnumeric.py:89(_take_dispatcher)
        1    0.000    0.000    0.000    0.000 linalg.py:180(_assert_stacked_2d)
        1    0.000    0.000    0.000    0.000 _core.py:806(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:893(_GrouperMethodForwarder)
        1    0.000    0.000    0.000    0.000 __init__.py:1285(<dictcomp>)
        1    0.000    0.000    0.000    0.000 common.py:39(EntitiesForbidden)
        1    0.000    0.000    0.000    0.000 ticker.py:306(FuncFormatter)
        1    0.000    0.000    0.000    0.000 ticker.py:189(TickHelper)
        1    0.000    0.000    0.000    0.000 ticker.py:1853(MultipleLocator)
        1    0.000    0.000    0.000    0.000 transforms.py:2270(BlendedAffine2D)
        1    0.000    0.000    0.000    0.000 transforms.py:2795(TransformedPatchPath)
        1    0.000    0.000    0.000    0.000 exceptions.py:256(RecursiveGrammarException)
        1    0.000    0.000    0.000    0.000 unicode.py:130(BasicMultilingualPlane)
        1    0.000    0.000    0.000    0.000 unicode.py:235(Kanji)
        1    0.000    0.000    0.000    0.000 unicode.py:242(Hiragana)
        1    0.000    0.000    0.000    0.000 core.py:2284(NoMatch)
        1    0.000    0.000    0.000    0.000 core.py:2344(_SingleCharLiteral)
        1    0.000    0.000    0.000    0.000 core.py:3511(__init__)
        1    0.000    0.000    0.000    0.000 core.py:4443(_Indent)
        1    0.000    0.000    0.000    0.000 core.py:4578(__init__)
        1    0.000    0.000    0.000    0.000 core.py:4672(Located)
        1    0.000    0.000    0.000    0.000 collections.py:1247(BrokenBarHCollection)
        1    0.000    0.000    0.000    0.000 artist.py:643(set_snap)
        1    0.000    0.000    0.000    0.000 hatch.py:148(SmallFilledCircles)
        1    0.000    0.000    0.000    0.000 hatch.py:157(Stars)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3639(Show)
        1    0.000    0.000    0.000    0.000 backend_tools.py:380(ToolQuitAll)
        1    0.000    0.000    0.000    0.000 backend_tools.py:390(ToolGrid)
        1    0.000    0.000    0.000    0.000 backend_tools.py:628(ToolForward)
        1    0.000    0.000    0.000    0.000 patches.py:3568(Simple)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1050(Accent)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1359(Glue)
        1    0.000    0.000    0.000    0.000 figure.py:110(SubplotParams)
        1    0.000    0.000    0.000    0.000 _base.py:35(_axis_method_wrapper)
        1    0.000    0.000    0.000    0.000 dates.py:879(AutoDateFormatter)
        1    0.000    0.000    0.000    0.000 rrule.py:66(weekday)
        1    0.000    0.000    0.000    0.000 legend_handler.py:315(HandlerPatch)
        1    0.000    0.000    0.000    0.000 legend_handler.py:632(HandlerStem)
        1    0.000    0.000    0.000    0.000 geo.py:18(ThetaFormatter)
        2    0.000    0.000    0.000    0.000 types.py:132(_calculate_meta)
        4    0.000    0.000    0.000    0.000 {method 'remove' of 'set' objects}
        1    0.000    0.000    0.000    0.000 util.py:164(UnboundedMemo)
        1    0.000    0.000    0.000    0.000 cm.py:520(get_array)
        1    0.000    0.000    0.000    0.000 collections.py:1462(set_color)
        1    0.000    0.000    0.000    0.000 hatch.py:14(HorizontalHatch)
        1    0.000    0.000    0.000    0.000 contour.py:34(ClabelText)
        1    0.000    0.000    0.000    0.000 backend_tools.py:598(ViewsPositionsBase)
        1    0.000    0.000    0.000    0.000 backend_tools.py:619(ToolBack)
        1    0.000    0.000    0.000    0.000 patches.py:2557(Sawtooth)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1308(Rule)
        1    0.000    0.000    0.000    0.000 error.py:2(FFIError)
        2    0.000    0.000    0.000    0.000 _base.py:786(get_subplotspec)
        1    0.000    0.000    0.000    0.000 offsetbox.py:1611(DraggableAnnotation)
        1    0.000    0.000    0.000    0.000 axis.py:804(<listcomp>)
        1    0.000    0.000    0.000    0.000 axis.py:1587(get_major_formatter)
        1    0.000    0.000    0.000    0.000 legend_handler.py:723(HandlerTuple)
        1    0.000    0.000    0.000    0.000 geo.py:342(MollweideTransform)
        1    0.000    0.000    0.000    0.000 geo.py:451(InvertedLambertTransform)
        2    0.000    0.000    0.000    0.000 {method 'values' of 'collections.OrderedDict' objects}
        1    0.000    0.000    0.000    0.000 pathlib.py:1001(is_absolute)
        1    0.000    0.000    0.000    0.000 shape_base.py:458(<listcomp>)
        1    0.000    0.000    0.000    0.000 rcsetup.py:714(_DunderChecker)
        1    0.000    0.000    0.000    0.000 colors.py:2049(NoNorm)
        1    0.000    0.000    0.000    0.000 util.py:81(_UnboundedCache)
        1    0.000    0.000    0.000    0.000 unicode.py:136(Latin1)
        1    0.000    0.000    0.000    0.000 core.py:2273(Empty)
        1    0.000    0.000    0.000    0.000 core.py:4449(_IndentGreater)
        1    0.000    0.000    0.000    0.000 hatch.py:124(Circles)
        1    0.000    0.000    0.000    0.000 backend_tools.py:457(ToolXScale)
        1    0.000    0.000    0.000    0.000 font_manager.py:904(_JSONEncoder)
        1    0.000    0.000    0.000    0.000 patches.py:2299(Square)
        1    0.000    0.000    0.000    0.000 patches.py:3446(BracketA)
        1    0.000    0.000    0.000    0.000 patches.py:3647(Fancy)
        1    0.000    0.000    0.000    0.000 _mathtext.py:652(DejaVuSansFonts)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1116(Hlist)
        1    0.000    0.000    0.000    0.000 model.py:85(VoidType)
        1    0.000    0.000    0.000    0.000 error.py:5(CDefError)
        1    0.000    0.000    0.000    0.000 __init__.py:77(get_projection_names)
        1    0.000    0.000    0.000    0.000 offsetbox.py:421(PackerBase)
        1    0.000    0.000    0.000    0.000 offsetbox.py:500(HPacker)
        1    0.000    0.000    0.000    0.000 legend_handler.py:209(HandlerNpointsYoffsets)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:1071(_DOF_estimator_geom)
        1    0.000    0.000    0.000    0.000 geo.py:251(AitoffTransform)
        2    0.000    0.000    0.000    0.000 {built-in method sys.audit}
        2    0.000    0.000    0.000    0.000 {method '__exit__' of 'numpy.nditer' objects}
        2    0.000    0.000    0.000    0.000 numeric.py:181(_validate_dtype)
        1    0.000    0.000    0.000    0.000 __init__.py:76(UnidentifiedImageError)
        1    0.000    0.000    0.000    0.000 ticker.py:1113(LogFormatterSciNotation)
        4    0.000    0.000    0.000    0.000 transforms.py:2154(inverted)
        1    0.000    0.000    0.000    0.000 unicode.py:293(Thai)
        1    0.000    0.000    0.000    0.000 core.py:4835(OneOrMore)
        1    0.000    0.000    0.000    0.000 artist.py:111(_Unset)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1266(DrawEvent)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1313(CloseEvent)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2746(NonGuiException)
        1    0.000    0.000    0.000    0.000 patches.py:2739(Arc3)
        1    0.000    0.000    0.000    0.000 patches.py:2777(Angle3)
        1    0.000    0.000    0.000    0.000 patches.py:3465(BracketB)
        1    0.000    0.000    0.000    0.000 patches.py:3546(CurveBracket)
        1    0.000    0.000    0.000    0.000 _mathtext.py:851(ComputerModernFontConstants)
        1    0.000    0.000    0.000    0.000 _mathtext.py:862(STIXFontConstants)
        1    0.000    0.000    0.000    0.000 _mathtext.py:965(Vbox)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1470(AutoWidthChar)
        1    0.000    0.000    0.000    0.000 backend_managers.py:13(ToolTriggerEvent)
        1    0.000    0.000    0.000    0.000 model.py:261(PointerType)
        1    0.000    0.000    0.000    0.000 units.py:135(DecimalConverter)
        1    0.000    0.000    0.000    0.000 dates.py:1505(YearLocator)
        1    0.000    0.000    0.000    0.000 legend_handler.py:399(HandlerLineCollection)
        1    0.000    0.000    0.000    0.000 geo.py:315(InvertedHammerTransform)
        2    0.000    0.000    0.000    0.000 base.py:4441(_maybe_preserve_names)
        1    0.000    0.000    0.000    0.000 Image.py:3445(register_save_all)
        1    0.000    0.000    0.000    0.000 ticker.py:357(StrMethodFormatter)
        1    0.000    0.000    0.000    0.000 GimpGradientFile.py:101(GimpGradientFile)
        1    0.000    0.000    0.000    0.000 transforms.py:973(y1)
        1    0.000    0.000    0.000    0.000 unicode.py:8(_lazyclassproperty)
        1    0.000    0.000    0.000    0.000 unicode.py:195(Cyrillic)
        1    0.000    0.000    0.000    0.000 hatch.py:132(SmallCircles)
        1    0.000    0.000    0.000    0.000 patches.py:3735(Wedge)
        1    0.000    0.000    0.000    0.000 PngImagePlugin.py:1077(_idat)
        1    0.000    0.000    0.000    0.000 __init__.py:64(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:8(_SubplotBaseMeta)
        1    0.000    0.000    0.000    0.000 _base.py:96(_TransformedBoundsLocator)
        1    0.000    0.000    0.000    0.000 dates.py:1887(ConciseDateConverter)
        1    0.000    0.000    0.000    0.000 geo.py:297(HammerTransform)
        4    0.000    0.000    0.000    0.000 core.py:5602(postParse)
        1    0.000    0.000    0.000    0.000 loader.py:331(__getitem__)
        3    0.000    0.000    0.000    0.000 multiarray.py:502(can_cast)
        2    0.000    0.000    0.000    0.000 typing.py:1878(<listcomp>)
        1    0.000    0.000    0.000    0.000 {method 'toordinal' of 'datetime.date' objects}
        1    0.000    0.000    0.000    0.000 pretty.py:321(_get_mro)
        1    0.000    0.000    0.000    0.000 core.py:783(is_string_or_list_of_strings)
        2    0.000    0.000    0.000    0.000 grouper.py:587(_ilevel)
        1    0.000    0.000    0.000    0.000 __init__.py:3(<module>)
        1    0.000    0.000    0.000    0.000 Image.py:2854(ImageTransformHandler)
        1    0.000    0.000    0.000    0.000 common.py:71(NotSupportedError)
        1    0.000    0.000    0.000    0.000 _docstring.py:50(_ArtistKwdocLoader)
        1    0.000    0.000    0.000    0.000 ticker.py:1065(LogFormatterMathtext)
        1    0.000    0.000    0.000    0.000 ticker.py:334(FormatStrFormatter)
        1    0.000    0.000    0.000    0.000 ticker.py:1750(NullLocator)
        1    0.000    0.000    0.000    0.000 ticker.py:2883(AutoLocator)
        1    0.000    0.000    0.000    0.000 transforms.py:283(y1)
        1    0.000    0.000    0.000    0.000 transforms.py:2612(BboxTransformToMaxOnly)
        1    0.000    0.000    0.000    0.000 bezier.py:25(NonIntersectingPathException)
        1    0.000    0.000    0.000    0.000 unicode.py:143(LatinA)
        1    0.000    0.000    0.000    0.000 unicode.py:208(Chinese)
        1    0.000    0.000    0.000    0.000 unicode.py:254(Katakana)
        1    0.000    0.000    0.000    0.000 unicode.py:268(Hangul)
        1    0.000    0.000    0.000    0.000 unicode.py:308(Hebrew)
        1    0.000    0.000    0.000    0.000 unicode.py:322(Devanagari)
        1    0.000    0.000    0.000    0.000 core.py:3398(PositionToken)
        1    0.000    0.000    0.000    0.000 core.py:4899(_NullToken)
        1    0.000    0.000    0.000    0.000 results.py:85(List)
        1    0.000    0.000    0.000    0.000 hatch.py:9(HatchPatternBase)
        1    0.000    0.000    0.000    0.000 hatch.py:31(VerticalHatch)
        1    0.000    0.000    0.000    0.000 hatch.py:87(Shapes)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1293(ResizeEvent)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1453(PickEvent)
        1    0.000    0.000    0.000    0.000 backend_bases.py:1502(KeyEvent)
        2    0.000    0.000    0.000    0.000 backend_bases.py:2057(draw)
        1    0.000    0.000    0.000    0.000 backend_bases.py:3647(ShowBase)
        1    0.000    0.000    0.000    0.000 patches.py:2322(Circle)
        1    0.000    0.000    0.000    0.000 patches.py:3407(Curve)
        1    0.000    0.000    0.000    0.000 patches.py:3506(BarAB)
        1    0.000    0.000    0.000    0.000 _mathtext.py:595(DejaVuFonts)
        1    0.000    0.000    0.000    0.000 _mathtext.py:871(STIXSansFontConstants)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1384(HCentered)
        1    0.000    0.000    0.000    0.000 backend_managers.py:4(ToolEvent)
        1    0.000    0.000    0.000    0.000 model.py:204(BaseFunctionType)
        1    0.000    0.000    0.000    0.000 offsetbox.py:468(VPacker)
        1    0.000    0.000    0.000    0.000 axis.py:572(_LazyTickList)
        1    0.000    0.000    0.000    0.000 axis.py:1583(get_minor_locator)
        1    0.000    0.000    0.000    0.000 dates.py:1582(WeekdayLocator)
        1    0.000    0.000    0.000    0.000 dates.py:1637(HourLocator)
        1    0.000    0.000    0.000    0.000 container.py:110(StemContainer)
        1    0.000    0.000    0.000    0.000 legend_handler.py:239(HandlerLine2DCompound)
        1    0.000    0.000    0.000    0.000 legend_handler.py:776(HandlerPolyCollection)
        1    0.000    0.000    0.000    0.000 _trifinder.py:7(TriFinder)
        1    0.000    0.000    0.000    0.000 geo.py:383(InvertedMollweideTransform)
        2    0.000    0.000    0.000    0.000 shape_base.py:135(_atleast_3d_dispatcher)
        4    0.000    0.000    0.000    0.000 artist.py:898(get_clip_path)
        1    0.000    0.000    0.000    0.000 traitlets.py:2894(subclass_init)
        1    0.000    0.000    0.000    0.000 managers.py:2381(<listcomp>)
        1    0.000    0.000    0.000    0.000 util.py:102(_FifoCache)
        1    0.000    0.000    0.000    0.000 exceptions.py:220(ParseException)
        1    0.000    0.000    0.000    0.000 core.py:2853(_WordRegex)
        1    0.000    0.000    0.000    0.000 hatch.py:48(NorthEastHatch)
        1    0.000    0.000    0.000    0.000 hatch.py:140(LargeCircles)
        1    0.000    0.000    0.000    0.000 patches.py:2343(Ellipse)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1394(VCentered)
        1    0.000    0.000    0.000    0.000 model.py:481(StructType)
        1    0.000    0.000    0.000    0.000 model.py:97(BasePrimitiveType)
        1    0.000    0.000    0.000    0.000 model.py:284(NamedPointerType)
        1    0.000    0.000    0.000    0.000 error.py:28(PkgConfigError)
        1    0.000    0.000    0.000    0.000 dates.py:1555(MonthLocator)
        1    0.000    0.000    0.000    0.000 container.py:78(ErrorbarContainer)
        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}
        1    0.000    0.000    0.000    0.000 {method '__array_prepare__' of 'numpy.ndarray' objects}
        1    0.000    0.000    0.000    0.000 rcsetup.py:796(_ignorecase)
        1    0.000    0.000    0.000    0.000 Image.py:2845(ImagePointHandler)
        1    0.000    0.000    0.000    0.000 Image.py:85(DecompressionBombWarning)
        1    0.000    0.000    0.000    0.000 ticker.py:264(NullFormatter)
        1    0.000    0.000    0.000    0.000 unicode.py:300(Arabic)
        1    0.000    0.000    0.000    0.000 hatch.py:67(SouthEastHatch)
        1    0.000    0.000    0.000    0.000 backend_tools.py:637(ConfigureSubplotsBase)
        1    0.000    0.000    0.000    0.000 font_manager.py:1463(<listcomp>)
        1    0.000    0.000    0.000    0.000 patches.py:2403(RArrow)
        1    0.000    0.000    0.000    0.000 patches.py:2450(Round)
        1    0.000    0.000    0.000    0.000 patches.py:2618(Roundtooth)
        1    0.000    0.000    0.000    0.000 patches.py:3484(BracketAB)
        1    0.000    0.000    0.000    0.000 patches.py:3524(BracketCurve)
        1    0.000    0.000    0.000    0.000 dviread.py:782(Tfm)
        1    0.000    0.000    0.000    0.000 _mathtext.py:776(StixSansFonts)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1337(Vrule)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1431(AutoHeightChar)
        1    0.000    0.000    0.000    0.000 backend_managers.py:20(ToolManagerMessageEvent)
        1    0.000    0.000    0.000    0.000 error.py:17(VerificationError)
        1    0.000    0.000    0.000    0.000 error.py:22(VerificationMissing)
        1    0.000    0.000    0.000    0.000 abc.py:55(TraversalError)
        1    0.000    0.000    0.000    0.000 _blocking_input.py:1(<module>)
        1    0.000    0.000    0.000    0.000 units.py:72(AxisInfo)
        1    0.000    0.000    0.000    0.000 dates.py:1609(DayLocator)
        1    0.000    0.000    0.000    0.000 dates.py:1687(SecondLocator)
        1    0.000    0.000    0.000    0.000 streamplot.py:244(StreamplotSet)
        1    0.000    0.000    0.000    0.000 _triinterpolate.py:1061(_DOF_estimator_user)
        1    0.000    0.000    0.000    0.000 _trirefine.py:12(TriRefiner)
        1    0.000    0.000    0.000    0.000 polar.py:239(ThetaFormatter)
        2    0.000    0.000    0.000    0.000 transforms.py:2150(get_affine)
        2    0.000    0.000    0.000    0.000 backend_bases.py:708(start_rasterizing)
        2    0.000    0.000    0.000    0.000 {function FrozenList.__getitem__ at 0x1159dcaf0}
        1    0.000    0.000    0.000    0.000 {method '__init_subclass__' of 'object' objects}
        2    0.000    0.000    0.000    0.000 traitlets.py:2336(subclass_init)
        1    0.000    0.000    0.000    0.000 pathlib.py:51(_is_wildcard_pattern)
        1    0.000    0.000    0.000    0.000 multiarray.py:968(ravel_multi_index)
        1    0.000    0.000    0.000    0.000 plotting.py:162(<dictcomp>)
        1    0.000    0.000    0.000    0.000 colors.py:1761(FuncNorm)
        1    0.000    0.000    0.000    0.000 _version.py:2(<module>)
        2    0.000    0.000    0.000    0.000 transforms.py:2116(frozen)
        1    0.000    0.000    0.000    0.000 exceptions.py:240(ParseFatalException)
        1    0.000    0.000    0.000    0.000 exceptions.py:247(ParseSyntaxException)
        1    0.000    0.000    0.000    0.000 patches.py:2687(SimpleEvent)
        1    0.000    0.000    0.000    0.000 patches.py:2817(Angle)
        1    0.000    0.000    0.000    0.000 patches.py:2881(Arc)
        1    0.000    0.000    0.000    0.000 patches.py:2977(Bar)
        1    0.000    0.000    0.000    0.000 patches.py:3421(CurveB)
        1    0.000    0.000    0.000    0.000 patches.py:3441(CurveFilledAB)
        1    0.000    0.000    0.000    0.000 _mathtext.py:972(Hbox)
        1    0.000    0.000    0.000    0.000 model.py:485(UnionType)
        1    0.000    0.000    0.000    0.000 __init__.py:14(SubplotBase)
        2    0.000    0.000    0.000    0.000 {method '__prepare__' of 'type' objects}
        1    0.000    0.000    0.000    0.000 {method '__exit__' of 'posix.ScandirIterator' objects}
        1    0.000    0.000    0.000    0.000 traitlets.py:2875(validate_elements)
        1    0.000    0.000    0.000    0.000 rcsetup.py:350(validate_fontsize_None)
        1    0.000    0.000    0.000    0.000 Image.py:89(DecompressionBombError)
        1    0.000    0.000    0.000    0.000 ElementTree.py:106(ParseError)
        1    0.000    0.000    0.000    0.000 unicode.py:290(CJK)
        1    0.000    0.000    0.000    0.000 results.py:8(<genexpr>)
        1    0.000    0.000    0.000    0.000 backend_bases.py:2941(set_window_title)
        1    0.000    0.000    0.000    0.000 patches.py:2371(LArrow)
        1    0.000    0.000    0.000    0.000 patches.py:2413(DArrow)
        1    0.000    0.000    0.000    0.000 _mathtext.py:1327(Hrule)
        1    0.000    0.000    0.000    0.000 core.py:260(_StyleLibrary)
        1    0.000    0.000    0.000    0.000 units.py:161(Registry)
        1    0.000    0.000    0.000    0.000 dates.py:1662(MinuteLocator)
        1    0.000    0.000    0.000    0.000 legend_handler.py:276(HandlerLine2D)
        1    0.000    0.000    0.000    0.000 geo.py:273(InvertedAitoffTransform)
        1    0.000    0.000    0.000    0.000 config.py:28(InlineBackendConfig)
        2    0.000    0.000    0.000    0.000 transforms.py:1799(transform_path_non_affine)
        2    0.000    0.000    0.000    0.000 backend_bases.py:715(stop_rasterizing)
        1    0.000    0.000    0.000    0.000 traitlets.py:2555(subclass_init)
        2    0.000    0.000    0.000    0.000 dataclasses.py:767(_hash_set_none)
        1    0.000    0.000    0.000    0.000 fromnumeric.py:1034(_argsort_dispatcher)
        1    0.000    0.000    0.000    0.000 linalg.py:465(_unary_dispatcher)
        1    0.000    0.000    0.000    0.000 exceptions.py:11(ExceptionWordUnicode)
        1    0.000    0.000    0.000    0.000 artist.py:1080(set_in_layout)
        1    0.000    0.000    0.000    0.000 <string>:1(__create_fn__)
        1    0.000    0.000    0.000    0.000 patches.py:3416(CurveA)
        1    0.000    0.000    0.000    0.000 patches.py:3426(CurveAB)
        1    0.000    0.000    0.000    0.000 patches.py:3431(CurveFilledA)
        1    0.000    0.000    0.000    0.000 patches.py:3436(CurveFilledB)
        1    0.000    0.000    0.000    0.000 mathtext.py:176(MathTextWarning)
        1    0.000    0.000    0.000    0.000 units.py:52(ConversionError)
        1    0.000    0.000    0.000    0.000 streamplot.py:429(InvalidIndexError)
        1    0.000    0.000    0.000    0.000 traitlets.py:512(instance_init)
        1    0.000    0.000    0.000    0.000 traitlets.py:2629(subclass_init)
        1    0.000    0.000    0.000    0.000 streamplot.py:505(OutOfBounds)
        1    0.000    0.000    0.000    0.000 {method 'move_to_end' of 'collections.OrderedDict' objects}
        1    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISREG}
        1    0.000    0.000    0.000    0.000 _mathtext.py:878(DejaVuSerifFontConstants)
        1    0.000    0.000    0.000    0.000 _mathtext.py:882(DejaVuSansFontConstants)
        1    0.000    0.000    0.000    0.000 streamplot.py:433(TerminateTrajectory)
        1    0.000    0.000    0.000    0.000 function_base.py:4887(_meshgrid_dispatcher)
[ ]: