What is the difference between Regression and Logistic
Regression? Can u explain the Assumptions/Conditions?
Answer Posted / raj
Regression is used to model Interval target variables where
as logistic regression is used to model Categorical
varaibles.
Regression Assumptions: Input variables are linearly
related to target variable and that input variables and
residuals are normally distributed, and independent with a
mean of 0 and constant variance.
Logistic Regression: There are no distributional
requirements for inputs in Logistic regression
| Is This Answer Correct ? | 30 Yes | 1 No |
Post New Answer View All Answers
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
Of all your work, where have you been the most successful?
What is the function of Stop statement in a SAS Program?
how does sas handle missing values in a merge? : Sas programming
How to limit decimal places for the variable using proc means?
What is program data vector (pdv)?
explain what is data set in sas? : Sas-administrator
What does proc print, and proc contents are used for?
it will become easy if uuu provide website linkssss and list of consultanciessssss
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
What areas of SAS are you most interested in?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
What are the difference between ceil and floor functions in sas?
What commands are used in the case of including or excluding any specific variables in the data set?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.