I am trying to complete this pipe function and R is not returning any values in the Console, it just keeps repeating the code. Not sure what I am doing incorrectly? I have already installed the tidyverse package and library as well as the dplyr package and library.
Your script assigns the output from the pipe to a new data frame named filtered_toothgrowth. If you click on the Environment tab in the upper right pane, you will see it listed. If you also want the output to appear in the console, just put the code in parentheses:
Thank you! It was driving me mad and could not figure out what was going on. Just starting learning R and trying to figure out all the ropes, this is very good to know. So much appreciated!