Skip to content
Advertisement

Python Dataframe find closest matching value with a tolerance

I have a data frame consisting of lists as elements. I want to find the closest matching values within a percentage of a given value. My code:

JavaScript

Present solution:

JavaScript

Expected solution:

JavaScript

Advertisement

Answer

Idea is get difference with val and then replace to missing values if not match tolerance, last get np.nanargmin which raise error if all missing values, so added next condition with np.any:

JavaScript

Pandas solution:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement