How to rename the names of dataframe inside the list as their original names? like df1,df2 etc insted of numbers? I wish to have a purrr solution
I need to change the column names of all the dataframes uniformly to be c("m","n","o"). I mean to say, i need to change the names by passing a vector of column names. Again I like to know the purrr solution.
Is this what you want? If it solves the question, please consider marking the thread as closed. If needed, please refer to FAQ: How do I mark a solution?.
Absolutely.. Let me ask one more question in this regard. What if I want to change only 2nd and 4th column (Assuming 4 column data frame) with a named column vector and leave the first column name unchanged?