member_casual = c("Subscriber",
"Subscriber", "Subscriber", "Subscriber", "Subscriber", "Subscriber",
"Subscriber", "Customer", "Customer", "Customer", "Customer",
the objective is for me to make change the name of the column and the variables in the rows. I was hoping to accomplish this by using the following function:
Final_data<-TY2019_rides %>%
mutate(member_casual= Membership
,"Subscriber"= member
, "Customer" = casual )
Thanks in advance for your replies