vde_metadynamics icon indicating copy to clipboard operation
vde_metadynamics copied to clipboard

Errors

Open sbhakat opened this issue 6 years ago • 15 comments

Hi,

So I am trying to plot my distance on the top of a tICA model

I used the following code

# lets visualize the data, and the dominant tICA solution from matplotlib import pyplot as plt plt.scatter(raw_feat[0][:,0],raw_feat[0][:,1],c=tica_features[0],cmap='viridis')

I get an error like

`--------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () 1 # lets visualize the data, and the dominant tICA solution 2 from matplotlib import pyplot as plt ----> 3 plt.scatter(raw_feat[0][:,0],raw_feat[0][:,1],c=tica_features[0],cmap='viridis')

TypeError: 'ContactFeaturizer' object does not support indexing`

I also installed vde however it seems like I can't call it

from vde import VDE

It produces an error like

`--------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in () ----> 1 from vde import VDE

ModuleNotFoundError: No module named 'vde'`

sbhakat avatar Feb 28 '18 14:02 sbhakat