mdentropy.metrics.DihedralMutualInformation¶
- 
class mdentropy.metrics.DihedralMutualInformation(types=None, rng=None, **kwargs)¶
- Mutual information calculations for dihedral angles - Methods - partial_transform(traj[, shuffle, verbose])- Transform a single mdtraj.Trajectory into an array of metric scores. - transform(trajs[, shuffle, verbose])- Invokes partial_transform over a list of mdtraj.Trajectory objects - 
__init__(types=None, rng=None, **kwargs)¶
 - Methods - __init__([types, rng])- partial_transform(traj[, shuffle, verbose])- Transform a single mdtraj.Trajectory into an array of metric scores. - transform(trajs[, shuffle, verbose])- Invokes partial_transform over a list of mdtraj.Trajectory objects - 
partial_transform(traj, shuffle=0, verbose=False)¶
- Transform a single mdtraj.Trajectory into an array of metric scores. - Parameters: - traj : mdtraj.Trajectory - Trajectory to transform - shuffle : int - Number of shuffle iterations (default: 0) - verbose : bool - Whether to display performance - Returns: - result : np.ndarray - Scoring matrix 
 - 
transform(trajs, shuffle=0, verbose=False)¶
- Invokes partial_transform over a list of mdtraj.Trajectory objects - Parameters: - trajs : list - List of trajectories to transform - shuffle : int - Number of shuffle iterations (default: 0) - verbose : bool - Whether to display performance - Returns: - result : array_like - List of scoring matrices 
 
-