I am trying to remove duplicates
laa <-subset(la,select =c(PermID))
class(laa)
laa1<-laa[!duplicated(laa$userPermID), ]
class(laa1)
when i ran first two lines the class command is showing it as data.frame but after running the duplicate command it is converting into factor automatically. Is there any specific reason. Because iam not able to see it in dataframe
factorwhen it was still in the data.frame. Usestrinstead ofclassfor some more info