[enter image description here][1]I am struggling to figure out if regression is the route I need to go in order to solve my current challenge with Python. Here is my scenario:
- I have a Pandas Dataframe that is 195 rows x 25 columns
- All data (except for index and headers) are integers
- I have one specific column (Column B) that I would like compared to all other columns
- Attempting to determine if there is a range of numbers in any of the columns that influences or impacts column B
- An example of the results I would like to calculate in Python is something similar to: Column B is above 3.5 when data in Column D is between 10.20 - 16.4
The examples I've been reading online with Regression in Python appear to produce charts and statistics that I don't need (or maybe I am interpreting incorrectly). I believe the proper wording to describe what I am asking, is to identify specific values or a range of values that are linear between two columns in a Pandas dataframe.
Can anyone help point me in the right direction?
Thank you all in advance!