Source code for rfwtools.visualize.timeline

"""This module provides customized swarmplot visualizations."""

import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd

[docs]def swarm_timeline(data: pd.DataFrame, **kwargs) -> None: """Generate and display a swarmplot of fault/cavity label pairs over time. Extra kwargs passed to swarmplot. Note: kwargs especially useful for modifying marker size with s=<int>. Arguments: data: Expects a DataFrame with the format from ExampleSet """ plt.figure(figsize=(20, 9)) ax = sns.swarmplot(x=data.cavity_label, y=data['dtime'], hue=data.fault_label, **kwargs) ax.legend(loc='center left', bbox_to_anchor=(1, 0.5), ncol=1) plt.show()