🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Linear regression cannot handle polynomial label

User: "zain"
New Altair Community Member
Updated by Jocelyn
I am new to rapid miner studio and trying to understand the telco customer churn process which is available in the community real-world use cases. But there seems to be an error in the process model I have attached the snapshot of error. Any idea how I can solve this, please?

Sort by:
1 - 1 of 11
    User: "rfuentealba"
    New Altair Community Member
    Accepted Answer
    Hi @zain, and a warm welcome to the community!

    Logistic Regression is, like many (but not all) machine learning models, a mathematical formula. A polynominal field is text, hence not suitable for calculations.

    How to solve it? Super easy: there is an operator named Nominal to Numerical. It does something weird with your data (not that weird, but you might want to see it for yourself by adding a breakpoint), transforming it into 0's and 1's, the kind of entry that suits your algorithm. Just put that before your Logistic Regression operator and let's see if it works.

    (Notice that linear and logistic regressions, while similar, are not the same. Your model is using logistic regression).

    All the best,

    Rodrigo.