1
0
Fork 0
mirror of https://github.com/Athemis/pyKinetics.git synced 2025-04-05 14:56:02 +00:00

Throw an additional warning for really bad r squared values

This commit is contained in:
Alexander Minges 2015-08-24 17:36:32 +02:00
parent 9b19ac7b89
commit 7ce9e868f6

View file

@ -42,9 +42,12 @@ class Replicate():
self.owner.concentration_unit)
self.logger.info('Linear fit for {} #{}:'.format(conc, self.num))
if r_squared < 0.9:
if r_squared < 0.9 and r_squared > 0.7:
msg = ' r-squared: {} < 0.9; Check fit manually!'
self.logger.warning(msg.format(round(r_squared, 4)))
elif r_squared < 0.7:
msg = ' r-squared: {} < 0.7; Linear fit probably failed!'
self.logger.warning(msg.format(round(r_squared, 4)))
else:
msg = ' r-squared: {}'
self.logger.info(msg.format(round(r_squared, 4)))