Suppose I have a nested iris dataset based on the "Species" column, how can I apply purr::map on this nested data to:
- filter rows inside each "Species" based on (Sepal.Length>5) for example
- mutate a new column inside each "Species" which is the "sum" of Sepal.Length and Petal.Length
??
Thank you!!