Checks if a value is null.
(self, object)
| 120 | |
| 121 | |
| 122 | def is_nan(self, object): |
| 123 | """ |
| 124 | Checks if a value is null. |
| 125 | """ |
| 126 | return object != object |
| 127 | |
| 128 | def calculate_percentage_change(self, old, new): |
| 129 | return ((new - old) * 100) / old |
no outgoing calls
no test coverage detected