diff --git a/doc/source/examples/analysis/reduced_dimensions/README.rst b/doc/source/examples/analysis/reduced_dimensions/README.rst index 2e07091b7..4564ae890 100644 --- a/doc/source/examples/analysis/reduced_dimensions/README.rst +++ b/doc/source/examples/analysis/reduced_dimensions/README.rst @@ -13,12 +13,11 @@ low-dimensional representations of the conformational space explored over the trajectory. MDAnalysis implements two methods for dimensionality reduction. -**Principal component analysis** is a common linear dimensionality reduction technique that maps the coordinates in each frame of your trajectory to a linear combination of orthogonal vectors. The vectors are called *principal components*, and they are ordered such that the first principal component accounts for the most variance in the original data (i.e. the largest uncorrelated motion in your trajectory), and each successive component accounts for less and less variance. Trajectory coordinates can be transformed onto a lower-dimensional space (*essential subspace*) constructed from these principal components in order to compare conformations. Your trajectory can also be projected onto each principal component in order to visualise the motion described by that component. +#. **Principal component analysis** is a common linear dimensionality reduction technique that maps the coordinates in each frame of your trajectory to a linear combination of orthogonal vectors. The vectors are called *principal components*, and they are ordered such that the first principal component accounts for the most variance in the original data (i.e. the largest uncorrelated motion in your trajectory), and each successive component accounts for less and less variance. Trajectory coordinates can be transformed onto a lower-dimensional space (*essential subspace*) constructed from these principal components in order to compare conformations. Your trajectory can also be projected onto each principal component in order to visualise the motion described by that component. -**Diffusion maps** are a non-linear dimensionality reduction technique that embeds the coordinates of each frame onto a lower-dimensional space, such that the distance between each frame in the lower-dimensional space represents their "diffusion distance", or similarity. It integrates local information about the similarity of each point to its neighours, into a global geometry of the intrinsic manifold. This means that this technique is not suitable for trajectories where the transitions between conformational states is not well-sampled (e.g. replica exchange simulations), as the regions may become disconnected and a meaningful global geometry cannot be approximated. Unlike PCA, there is no explicit mapping between the components of the lower-dimensional space and the original atomic coordinates; no physical interpretation of the eigenvectors is immediately available. +#. **Diffusion maps** are a non-linear dimensionality reduction technique that embeds the coordinates of each frame onto a lower-dimensional space, such that the distance between each frame in the lower-dimensional space represents their "diffusion distance", or similarity. It integrates local information about the similarity of each point to its neighours, into a global geometry of the intrinsic manifold. This means that this technique is not suitable for trajectories where the transitions between conformational states is not well-sampled (e.g. replica exchange simulations), as the regions may become disconnected and a meaningful global geometry cannot be approximated. Unlike PCA, there is no explicit mapping between the components of the lower-dimensional space and the original atomic coordinates; no physical interpretation of the eigenvectors is immediately available. - -For computing similarity, see the tutorials in :ref:`trajectory-similarity`. +For computing similarity, see the tutorials in :ref:`trajectory-similarity-overview`. .. toctree:: :maxdepth: 1 diff --git a/doc/source/examples/analysis/trajectory_similarity/README.rst b/doc/source/examples/analysis/trajectory_similarity/README.rst index 5ad50c554..c6ded6605 100644 --- a/doc/source/examples/analysis/trajectory_similarity/README.rst +++ b/doc/source/examples/analysis/trajectory_similarity/README.rst @@ -1,5 +1,5 @@ .. -*- coding: utf-8 -*- -.. _trajectory-similarity: +.. _trajectory-similarity-overview: ====================== Trajectory similarity