DealDate <- c("1/1/13", "1/2/13", "1/6/13", "1/1/13", "1/2/13", "1/6/13", "1/1/13", "1/2/13", "1/6/13")
DealValue<- c("100", "200","300", "400","100", "200","300", "400","100")
ClientNAME <- c( "a", "b", "c", "a","b", "c","b", "c","e")
data<- data.frame(DealDate, DealValue, ClientName)
What I have done is that I have created a dataframe for each column and then combined them together. I've tried to use "mutate" after "group_by"
Please help me...