I have a table like this:
IQ Score Percentile
58.75 | 0 | 0
70 | 15 | 2
85 | 35 | 16
100 | 55 | 50
115 | 75 | 84
130 | 95 | 90
Im trying to find an equation that I can use to dynamically generate with PHP the 'Percentile' value when I know both the IQ and the Score.
This table came from an Excel spreadsheet, it might have been calculated with VLOOK or something like that.
Any ideas on how I could calculate those values?