This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import seaborn | |
def light_response(light, EC50, hillslop=2.5): | |
'''Typical response function for EC50 tests''' | |
import numpy | |
# http://www.sigmaplot.co.uk/splot/products/sigmaplot/productuses/prod-uses43.php | |
# Response to concentration | |
dose_min = light.min() | |
dose_max = light.max() |
NewerOlder