.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_examples\visualization\plot_pyplot_treemap.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr__examples_visualization_plot_pyplot_treemap.py: Plotly - Treemap (sari) ----------------------- .. warning:: Please be patient, it might take some time to load. For more information, check https://plotly.com/python/treemaps/ .. GENERATED FROM PYTHON SOURCE LINES 10-86 .. rst-class:: sphx-glr-script-out .. code-block:: none Index(['specimen_code', 'microorganism_code', 'antimicrobial_code', 'highly resistant', 'intermediate', 'not done', 'resistant', 'sensitive', 'freq', 'sari', 'sari_medium', 'sari_soft', 'name', 'category', 'acronym_x', 'exists_in_registry_x', 'domain', 'phylum', 'class', 'order', 'family', 'genus', 'species', 'acronym_y', 'exists_in_registry_y', 'gram_stain', 'microorganism_name'], dtype='object') .. raw:: html


| .. code-block:: default :lineno-start: 10 # Plotly import plotly.express as px # Import own libraries from pyamr.core.sari import sari from pyamr.datasets.load import load_data_nhs # -------------------------------------------------------------------- # Main # -------------------------------------------------------------------- # Load data data, antimicrobials, microorganisms = load_data_nhs(nrows=1000) # Create DataFrame dataframe = data.groupby(['specimen_code', 'microorganism_code', 'antimicrobial_code', 'sensitivity']) \ .size().unstack().fillna(0) # Compute frequency dataframe['freq'] = dataframe.sum(axis=1) # Compute sari dataframe['sari'] = sari(dataframe, strategy='hard') dataframe['sari_medium'] = sari(dataframe, strategy='medium') dataframe['sari_soft'] = sari(dataframe, strategy='soft') # Reset index dataframe = dataframe.reset_index() # -------------------------------------------- # Add info for popup # -------------------------------------------- dataframe = dataframe.merge(antimicrobials, how='left', left_on='antimicrobial_code', right_on='antimicrobial_code') # Add antimicrobials information dataframe = dataframe.merge(microorganisms, how='left', left_on='microorganism_code', right_on='microorganism_code') # Format dataframe dataframe = dataframe.round(decimals=3) # Show columns print(dataframe.columns) # ------------------------------------------- # Plot # ------------------------------------------- # Show fig = px.treemap(dataframe, path=['specimen_code', 'microorganism_code', 'antimicrobial_code'], #hover_name=, hover_data=['microorganism_name', 'name', 'sari_medium', 'sari_soft'], values='freq', color='sari', color_continuous_scale='Reds', title='Treemap of pairs') # Save as html (to be used anyware in docs) fig.write_html("../../docs/source/_static/htmls/{0}.html" \ .format('plot_pyplot_treemap')) # Show (script) #fig.show() # Show (sphinx) fig .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 1.925 seconds) .. _sphx_glr_download__examples_visualization_plot_pyplot_treemap.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_pyplot_treemap.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_pyplot_treemap.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_