I want to know if it's possible by giving a list of variable to execute the same operation for differents variables
For example, instead of this :
incidence<-base$incidence
ddn<-base$ddn
sexe<-base$sexe
cp<-base$cp
ville<-base$ville
adress<-base$adress
id<-base$id
test<-base$test
doing something like this :
listOfVar<-c(incidence,ddn,sexe,cp,ville,adress,id,test)
for each in list of var do : listOfVar<-base$listOfVar
I write it like this to illlustrate because I have no idea of how to do that. Thank you for your time