IMP logo
IMP Reference Guide  2.7.0
The Integrative Modeling Platform
statistics/write_a_metric.py

This simple example shows how to write an IMP.statistics.Metric in python.

1 ## \example statistics/write_a_metric.py
2 # This simple example shows how to write an IMP.statistics.Metric in python.
3 
4 import IMP.statistics
5 import math
6 import random
7 import sys
8 
9 IMP.setup_from_argv(sys.argv, "write a metric")
10 
11 
12 class MyMetric(IMP.statistics.Metric):
13 
14  """Define a metric on a list of floating point numbers based on their difference"""
15 
16  def __init__(self, nums):
17  """Store the list of numbers to measure distances between"""
18  IMP.statistics.Metric.__init__(self, "MyMetric%1%")
19  self._nums = nums
20 
21  def get_distance(self, i, j):
22  """Return the magnitude of the distance between the ith and jth number"""
23  return math.fabs(self._nums[i] - self._nums[j])
24 
25  def get_number_of_items(self):
26  return len(self._nums)
27 
28 
29 mm = MyMetric([random.uniform(0, 1) for i in range(0, 15)])
30 
32 print(cc.get_number_of_clusters())