Question

I am working on a logistic regression model in python where I am using NBA data...

I am working on a logistic regression model in python where I am using NBA data to predict whether a player is a good rebounder or not based on various predictor variables. And my reg.coef is = array([[-1.50137324, -1.77554507, -1.73097902, 0.2568646 , 0.73556433,
0.00773832, -0.30204417, 0.26622955, 0.21256178]])

interpret the coefficients of your logistic regression model shown above

Homework Answers

Answer #1

Now there are two cases:

case_1: If you did normalization/reshape your data then it can be said that the feature 4(highest magnitude coefficient) is the most significant one and for binary classification and has a positive correlation with the rebounding property of the player.

case_2: If you didn't normalize/reshape your data then there are two possibilities:

sucase_1: If the data is very similar in magnitude, a larger positive or negative coefficient means a larger effect, all things being equal.

subcase_2: If the data isn't very similar in magnitude, then the magnitude of the coefficients is without context i.e. they are not meaningful at all. For instance, you could get different coefficients by changing the units of measure to be larger or smaller.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Using the following data, determine the equation of the regression model. How many independent variables are...
Using the following data, determine the equation of the regression model. How many independent variables are there? Comment on the meaning of these regression coefficients. Predictor Coefficient Constant 123 . 62 x1 - .175 x2 6 . 02 x3 . 00026 x4   . 0041    (Round your answers to 5 decimal places.) The regression equation is: y?=
In Python (using pandas and numpy) I am trying to clean CSV data so it adheres...
In Python (using pandas and numpy) I am trying to clean CSV data so it adheres to a strict coding system instead of free response. More specifically, how would I code a simple rule based system to handle the various spellings and word choices that represent the following statuses: Never married Divorced Married Widowed Separated
In Python (using pandas and numpy) I have a CSV list (example.csv) and I am looking...
In Python (using pandas and numpy) I have a CSV list (example.csv) and I am looking to find the average age of the males in my data set. How would I make a function ('avg_age_males') that finds and outputs the average age for just the males in the data set? (In the .csv males is represented by 'M' and females is represented by 'F')
I am currently working on a Breast Cancer Model research as my undergraduate research, I will...
I am currently working on a Breast Cancer Model research as my undergraduate research, I will need to prepare a solution of TPA( 12-O-tetradecanoylphorbol-13-acetate) dissolved in Acetone to promote the tumor growth after the intiation stage. I am planning to make about 10 mls of the TPA solution to inject the rats twice a week for few weeks. If each rat should be treated with 10 μg of TPA in 200 μl of acetone which equals 0.2 mls, what are...
I am using forecast package for time series analysis. I have a dataset with hourly data...
I am using forecast package for time series analysis. I have a dataset with hourly data from oct 3 2016 to oct 23 2016. I used the following code to convert my data into a time series object. Dataset is about citibike stations I’m only using 6 stations I’m not sure if Im supposed to use my time column or include my time column. This is what i have so far. data.ts <- ts(CitiBike[,2:7], freq = 504, start = 2016)...
Using the BP data set, produce regression models for BP with Independent Variables as follows: ?...
Using the BP data set, produce regression models for BP with Independent Variables as follows: ? Age Only ? Weight Only ? Weight and Age Comment on the quality of each of these models as a predictor of BP based on the Coefficient of Correlation (r2 ) Use your Weight and Age Model to retroactively predict BP for the data pairs given, compare them against the actual BP Data and calculate the MSE. Use the Weight Model to retroactively predict...
The data file Demographics was used in a simple linear regression model where Unemployment Rate is...
The data file Demographics was used in a simple linear regression model where Unemployment Rate is the response variable and Cost of Living is the explanatory variable. You may refer to the previous two questions for the regression model if you wish. The anova function in R was used to obtain the breakdown of the sums of squares for the regression model. This is shown below: > anova(myreg)Analysis of Variance Table Response: Unemployment Df Sum Sq Mean Sq F value...
A business statistics professor would like to develop a regression model to predict the final exam...
A business statistics professor would like to develop a regression model to predict the final exam scores for students based on their current GPAs, the number of hours they studied for the exam, the number of times they were absent during the semester, and their genders. The data for these variables are given in the accompanying table. Complete parts a through d below. Score   GPA   Hours   Absences   Gender 87   3.75   2.0   0   Female 77   3.20   4.5   3   Male 82   3.16  ...
Where are C, D, and E? General Cereals is using a regression model to estimate the...
Where are C, D, and E? General Cereals is using a regression model to estimate the demand for Tweetie Sweeties, a whistle-shaped, sugar-coated breakfast cereal for children. The following log-log demand function is estimated using data for each month during the last five years. Q = quantity purchased in 10 oz boxes, P = price per 10 oz box in dollars, A = Tweetie Sweeties advertising expenditures on daytime television in dollars, and N = the proportion of the population...
Hello, I have computed a regression model where the dependent variable is "earn" as in how...
Hello, I have computed a regression model where the dependent variable is "earn" as in how much money the student will earn after college. My independent variables include "public" as in was this college public(1) or private(0), "academic ability" (a score calculated as the average score from SAT/ACT data of admitted students), "Average Cost" of tuition and  "population" (of the city the college is in). What is the impact on earnings of higher population of the college area/city? SUMMARY OUTPUT Regression...