What is the difference between Regression and Logistic
Regression? Can u explain the Assumptions/Conditions?

Answer Posted / vipin choudhary

Regression Modelling is also called linear modelling as the
input variables and residuals normally distributed.
the formula generally used here is
Y = m1x1+m2x2+m3x3+m4x4+c

Where as the logistic modelling is a non linear modelling
in which input variables and residuals randomly distributed.
The dependent variable has a value of either 1 or 0
the formula we use here is
Y= 1
--------------------
1 + e^-(m1x1+m2x2+m3x3+m4x4)

Is This Answer Correct ?    20 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does proc sql work?

609


Describe a time when you were really stuck on a problem and how you solved it?

2199


Differentiate between format and informat? : sas-grid-administration

575


If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?

698


What are the special input delimiters used in SAS?

650






What are the difference between sas functions and procedures?

634


how to change the execute of macro

1667


What does proc print, and proc contents are used for?

607


what is the use of sas management console? : Sas-di

608


Describe a time when you were really stuck on a problem and how you solved it?

2079


how do you pull data from equifax?tell me the process?

1371


what is change analysis in sas di ? : Sas-di

601


How do you debug and test your SAS programs?

1042


How to create a permanent sas data set?

669


Hello, I have PROC SQLs results group by 3 fields and I use SUM and COUNT functions in SQL. The problem is when I try to display my result with PROC TABULATE. I am getting very big numbers. I believe I make a mistake some where in Tabulate. Here is my Proc Tabulate. PROC TABULATE DATA=OUT04_05 FORMAT=12.; CLASS YR CENTRE VISA / PRELOADFMT EXCLUSIVE; VAR NEWUSER FRAUD TRANSFER AUTUSER REISSUE; TABLE CENTRE ALL, (YR ALL)*VISA, (NEWUSER*F=COMMA12. AUTUSER*F=COMMA12. FRAUD*F=COMMA12. TRANSFER*F=COMMA12. REISSUE*F=COMMA12.) / MISSTEXT={LABEL='0'} PRINTMISS RTS=20; FORMAT VISA VISAFMT.; KEYLABEL SUM = ' ' ALL = 'TOTAL'; LABEL YR = 'DATE YEAR' NEWUSER = 'TOTAL NEW ACCT' TRANSFER = 'TOTAL TRANSFER' FRAUD = 'TOTAL FRAUD TRANSFER' AUTUSER = 'TOTAL AUTH USERS' REISSUE = 'TOTAL REISSUE'; When I code it like : NEWUSER*N*F=COMMA12. AUTUSER*N*F=COMMA12. I get same amount numbers but to find a NEWUSER I use COUNT(*) and to find AUTUSER I use SUM(xxxx) function so both result shouldn’t be the same my problem is in this point. Could you tell me where the problem in code is. How can I display my result? TX.

1770