Hello, I am just learning about assigning etc and am still trying to understanding the reason/approach. Something that has slightly confused me is code such as this:
example_df <- table_name %>%
select(col_name_a, col_name_b) %>%
unite(new_col_name c("col_name_c", "col_name_d"), sep = " ")
I am not a programmer although I am also not new to things such as VBA (where code is fairly structured in terms of variables, assignments, functions, etc) although the way R does things seems fairly unique; and while I suspect it is a more rational way of doing things (once you understand it) I am still a little confused about what is happening (in terms of how R/Rstudio chooses the bit to do first etc - is there a BIDMAS type of sequence)? PS I am not asking for an explanation of the unite or select functions (this is purely a question about how to think about coding in RStudio in terms of sequential functions etc)
Thank you in advance for your comments