I am a beginner in Python and Orange tool for data mining. I have been trying out a few examples which worked as expected. KMeans clustering also works fine. But when i tried the standard example of Hierarchical clustering given in the documentation
http://orange.biolab.si/docs/latest/reference/rst/Orange.clustering.hierarchical/
I got the following error
matrix = Orange.misc.SymMatrix(len(iris))
AttributeError: 'module' object has no attribute 'SymMatrix'
The code is
import Orange
iris = Orange.data.Table("iris")
matrix = Orange.misc.SymMatrix(len(iris))
clustering = Orange.clustering.hierarchical.HierarchicalClustering()
clustering.linkage = Orange.clustering.hierarchical.AVERAGE
root = clustering(matrix)
root.mapping.objects = iris
Can anyone please help me with this.. Any help is really appreciated !
Thanks in advance