plotting
Simple plot functions for dcTMD results.
plot_dcTMD_results(estimator, friction=None, x=None, figsize=(4, 4))
¶
Plot dcTMD results overview in two subplots.
Top subplot constains free energy, dissipative work and mean work. Bottom subplot contains friction vs. position.
Source code in src/dcTMD/utils/plotting.py
plot_dG_Wdiss(workestimator, ax, x=None)
¶
Plot free energy, dissipative work and mean work vs position.
Source code in src/dcTMD/utils/plotting.py
plot_Gamma(x, friction, ax, label=None)
¶
Plot friction factor vs position.
plot_dG(x, dG, ax, label=None)
¶
Plot free energy vs position.
plot_dG_werrors(workestimator, ax, labeldG=None)
¶
Plot free energy with errors against position.
Source code in src/dcTMD/utils/plotting.py
plot_worklines(workset, ax, x=None, color='#777', res=1)
¶
Line plots of work of the individual trajectories in the workset.
Source code in src/dcTMD/utils/plotting.py
plot_histo_normaldist(data, ax, color='blue', label=None)
¶
Plots a histogram of the data and a normal distribution fitted to the data.
Source code in src/dcTMD/utils/plotting.py
plot_worknormalitychecks(workset, index, x=None, colors=None, figsize=(6, 2))
¶
Plots the work values of trajectories individually.
Also adds histograms and normality plots for the indices given in index
.