🎉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

Missing dates

User: "RyanRezel"
New Altair Community Member
Updated by Jocelyn
Hi,
I have a been given a dataset to predict employee termination rate, I have one attribute that is the date of termination and another that is Binominal and states if the employee has been terminated in the past or not if he/she has not then in the date of termination it is identified as a missing value. further, in the date of termination attribute the date is in two forms, for example, 11/02/15 and 12/05/2012 and therefore RM identifies it as polynomial and hence I cannot convert it into a date and I don't know how to treat these missing values.
I wanted to insert something like N/A in the missing values but that is I reckon not advisable.
 In such a case is it advisable to use one of these as my label?
what is my best course of action, I hope I can get a quick response, thank you community.


cheers
Ryan

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "MartinLiebig"
    Altair Employee
    Accepted Answer
    Hi,
    depends on how malformed they are. One thing would be to filter them out up front. Or to replace them with a missing using Generate attributes with
    if(matches(...),MISSING_NOMINAL, date)
    or so.
    Best,
    Martin