- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Understanding Logistic Regression in C#
The Logistic regression is a linear model used for binomial regression. It is used in medical science and to predict a customer’s tendency to purchase a product. It makes use of predictor variables for this purpose.
Logistic Regression allows easier analysis of results in the form of odds ratios and statistical hypothesis testing.
A generalized linear model has taken input for a non-linear link function. The linear model has the following form −
z = c1x1 + c2x2 + … cnxn + i = ct x + i
Here,
c is the coefficient vector, i is the intercept value x is the observation vector
Advertisements