How to Perform Linear Interpolation in Python (With Example)
https://www.statology.org/linear-interpolation-python11.11.2021 · Example: Linear Interpolation in Python Suppose we have the following two lists of values in Python: x = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] y = [4, 7, 11, 16, 22, 29, 38, 49, 63, 80]