This is with regard to the dataframe 'have' as created below, in this i derived a variable name with a label. so i get the have dataframe with variable name and a label. when i check the class of the variable in the have dataframe i also see the 'labelled' which i dont want to see i only want see the 'character', so please let me know is there a way i apply the label as well but when i use the class then i see only see 'character'
# creating a data frame have
have <- data.frame(name=c('person1','person2','person3','person4'))
# applying a label to the data frame
label(have$name) <- 'Name of person'
# checking the class of the variable within the dataframe
class(have$name)