Printing an Output of a Program in R
When working with R in an interactive mode, you don’t need to use any functions or methods to print the result of your expressions; it will print them automatically. Simply typing a variable or expression will print its value. data <- 42 data # [1] 42 However, you need functions to see the output if … Read more