Skip to content
Snippets Groups Projects
Commit 4fbdd62c authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

comment tweak

parent 99e74eeb
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,14 @@ class PercentRankTransform(object): ...@@ -12,8 +12,14 @@ class PercentRankTransform(object):
def fit(self, values, bins): def fit(self, values, bins):
""" """
Fit the transform using the given values, which are used to Fit the transform using the given values (in our case ic50s).
establish percentiles.
Parameters
----------
values : ic50 values
bins : bins for the cumulative distribution function
Anything that can be passed to numpy.histogram's "bins" argument
can be used here.
""" """
assert self.cdf is None assert self.cdf is None
assert self.bin_edges is None assert self.bin_edges is None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment