i am learning R alone. Here is a piece of code I found online, to name a variable (column):
df <- df %>% rename(employees = How.many.employees.does.your.company.or.organization.have.)
colnames(df)[2]
I don't understand this "%>%" thing. Can I avoid it ? What exactly does it do? The "df <- df" means that I am going to do an operation in df (indeed, rename a variable)
thanks!