Quantcast
Channel: Data Science, Analytics and Big Data discussions - Latest topics
Viewing all articles
Browse latest Browse all 4448

Introducing non-linear transformations of Independent variables into a Logistic Model to improve accuracy

$
0
0

@Pranov_Mishra wrote:

Hi I built a Logistic Model which has an accuracy of around 87% but a sensitivity of 37%.

I want to improve both the above statistics. Is there a way to introduce no-linear transformations of the independent variables in the equation itself.

My original Logistic Model is

glm(formula = RainTomorrow ~ Cloud3pm + Pressure3pm + Pressure9am + 
    Humidity3pm + Humidity9am + WindSpeed3pm + WindSpeed9am + 
    WindGustSpeed + Evaporation, family = "binomial", data = Train)

I want to introduce lets say squares of all variables or logs of all variables or for some of the IVs.
My attempt at the revised formula is as below

glm(formula = RainTomorrow ~ Cloud3pm + Pressure3pm + Pressure9am + 
    Humidity3pm + Humidity9am + WindSpeed3pm + WindSpeed9am + 
    WindGustSpeed + Evaporation + poly(Cloud3pm, 2) + poly(Pressure3pm, 
    2), family = "binomial", data = Train)

weather.csv (35.8 KB)

However the above formula is introducing NAs to added transformed variables. How to make this right?

Posts: 2

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 4448

Trending Articles