how do I predict a continuous variables with logistic regression model [on hold]
$begingroup$
I am new to ML and I was trying my hands with data. Is it possible to predict the height of a test data using a logistic regression model?
logistic-regression
New contributor
$endgroup$
put on hold as too broad by Dan Carter, Stephen Rauch, Ethan, Mark.F, Dawny33♦ 37 mins ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
$begingroup$
I am new to ML and I was trying my hands with data. Is it possible to predict the height of a test data using a logistic regression model?
logistic-regression
New contributor
$endgroup$
put on hold as too broad by Dan Carter, Stephen Rauch, Ethan, Mark.F, Dawny33♦ 37 mins ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
$begingroup$
An oversimplified answer is no. Logistic regression is for classification. For predicting continuous-valued variables you should be looking for regression methods.
$endgroup$
– user12075
50 mins ago
add a comment |
$begingroup$
I am new to ML and I was trying my hands with data. Is it possible to predict the height of a test data using a logistic regression model?
logistic-regression
New contributor
$endgroup$
I am new to ML and I was trying my hands with data. Is it possible to predict the height of a test data using a logistic regression model?
logistic-regression
logistic-regression
New contributor
New contributor
New contributor
asked 8 hours ago
Bolu OluwaladeBolu Oluwalade
1
1
New contributor
New contributor
put on hold as too broad by Dan Carter, Stephen Rauch, Ethan, Mark.F, Dawny33♦ 37 mins ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as too broad by Dan Carter, Stephen Rauch, Ethan, Mark.F, Dawny33♦ 37 mins ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
$begingroup$
An oversimplified answer is no. Logistic regression is for classification. For predicting continuous-valued variables you should be looking for regression methods.
$endgroup$
– user12075
50 mins ago
add a comment |
$begingroup$
An oversimplified answer is no. Logistic regression is for classification. For predicting continuous-valued variables you should be looking for regression methods.
$endgroup$
– user12075
50 mins ago
$begingroup$
An oversimplified answer is no. Logistic regression is for classification. For predicting continuous-valued variables you should be looking for regression methods.
$endgroup$
– user12075
50 mins ago
$begingroup$
An oversimplified answer is no. Logistic regression is for classification. For predicting continuous-valued variables you should be looking for regression methods.
$endgroup$
– user12075
50 mins ago
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
You can do if you create new column based of the Height as categorical/binary: tall = 1 = height > 64; !tall = 0 height < 64
and this column is your response variable.
Also: how you can predict continuous variable when the output is a probability between (0,1)
???
Probability of occurring of an event
is when you use logistic regression
.
Note: For your problem here you predict with logistic regression the
Gender that is your “y” and for any response variable that is
continuous you use linear regression
$endgroup$
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
You can do if you create new column based of the Height as categorical/binary: tall = 1 = height > 64; !tall = 0 height < 64
and this column is your response variable.
Also: how you can predict continuous variable when the output is a probability between (0,1)
???
Probability of occurring of an event
is when you use logistic regression
.
Note: For your problem here you predict with logistic regression the
Gender that is your “y” and for any response variable that is
continuous you use linear regression
$endgroup$
add a comment |
$begingroup$
You can do if you create new column based of the Height as categorical/binary: tall = 1 = height > 64; !tall = 0 height < 64
and this column is your response variable.
Also: how you can predict continuous variable when the output is a probability between (0,1)
???
Probability of occurring of an event
is when you use logistic regression
.
Note: For your problem here you predict with logistic regression the
Gender that is your “y” and for any response variable that is
continuous you use linear regression
$endgroup$
add a comment |
$begingroup$
You can do if you create new column based of the Height as categorical/binary: tall = 1 = height > 64; !tall = 0 height < 64
and this column is your response variable.
Also: how you can predict continuous variable when the output is a probability between (0,1)
???
Probability of occurring of an event
is when you use logistic regression
.
Note: For your problem here you predict with logistic regression the
Gender that is your “y” and for any response variable that is
continuous you use linear regression
$endgroup$
You can do if you create new column based of the Height as categorical/binary: tall = 1 = height > 64; !tall = 0 height < 64
and this column is your response variable.
Also: how you can predict continuous variable when the output is a probability between (0,1)
???
Probability of occurring of an event
is when you use logistic regression
.
Note: For your problem here you predict with logistic regression the
Gender that is your “y” and for any response variable that is
continuous you use linear regression
answered 1 hour ago
n1tkn1tk
413210
413210
add a comment |
add a comment |
$begingroup$
An oversimplified answer is no. Logistic regression is for classification. For predicting continuous-valued variables you should be looking for regression methods.
$endgroup$
– user12075
50 mins ago