mirror of
https://github.com/Athemis/pyKinetics.git
synced 2025-04-06 06:56:04 +00:00
Throw an additional warning for really bad r squared values
This commit is contained in:
parent
9b19ac7b89
commit
7ce9e868f6
1 changed files with 4 additions and 1 deletions
|
@ -42,9 +42,12 @@ class Replicate():
|
||||||
self.owner.concentration_unit)
|
self.owner.concentration_unit)
|
||||||
|
|
||||||
self.logger.info('Linear fit for {} #{}:'.format(conc, self.num))
|
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!'
|
msg = ' r-squared: {} < 0.9; Check fit manually!'
|
||||||
self.logger.warning(msg.format(round(r_squared, 4)))
|
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:
|
else:
|
||||||
msg = ' r-squared: {}'
|
msg = ' r-squared: {}'
|
||||||
self.logger.info(msg.format(round(r_squared, 4)))
|
self.logger.info(msg.format(round(r_squared, 4)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue