Regresión lineal generalizada
Para aumentar la precisión y las opciones de funciones de enlace en conjuntos de datos de dimensiones bajas y medianas, ajuste un modelo de regresión lineal generalizada mediante fitglm
. En una regresión logística multinomial, ajuste un modelo mediante fitmnr
.
Para reducir el tiempo de proceso en conjuntos de datos de altas dimensiones, entrene un modelo de clasificación lineal binaria, por ejemplo, un modelo de regresión logística, mediante fitclinear
. También puede entrenar de forma eficiente un modelo multiclase de códigos de salida de corrección de errores (ECOC, por sus siglas en inglés) compuesto por modelos de regresión logística mediante fitcecoc
.
Para las clasificaciones no lineales con big data, entrene un modelo de clasificación binaria de kernel gaussiano con regresión logística mediante fitckernel
.
Bloques
ClassificationLinear Predict | Classify observations using linear classification model (desde R2023a) |
Funciones
Objetos
Temas
Regresión lineal generalizada
- Generalized Linear Models
Generalized linear models use linear methods to describe a potentially nonlinear relationship between predictor terms and a response variable. - Generalized Linear Model Workflow
Fit a generalized linear model and analyze the results. - Fitting Data with Generalized Linear Models
Fit and evaluate generalized linear models usingglmfit
andglmval
. - Train Binary GLM Logistic Regression Classifier Using Classification Learner App
Create and compare binary logistic regression classifiers, and export trained models to make predictions for new data. - Predict Class Labels Using ClassificationLinear Predict Block
This example shows how to use the ClassificationLinear Predict block for label prediction in Simulink®. (desde R2023a) - Wilkinson Notation
Wilkinson notation provides a way to describe regression and repeated measures models without specifying coefficient values.
Regresión logística multinomial
- Multinomial Models for Nominal Responses
A nominal response variable has a restricted set of possible values with no natural order between them. A nominal response model explains and predicts the probability that an observation is in each category of a categorical response variable. - Multinomial Models for Ordinal Responses
An ordinal response variable has a restricted set of possible values that fall into a natural order. An ordinal response model describes the relationship between the cumulative probabilities of the categories and predictor variables. - Multinomial Models for Hierarchical Responses
A hierarchical multinomial response variable (also known as a sequential or nested multinomial response) has a restricted set of possible values that fall into hierarchical categories. The hierarchical multinomial regression models are extensions of binary regression models based on conditional binary observations.