I am learning R studio right now and I was just wondering how do I import an xlsx file with multiple sheets (8 sheets).
So far.. I have:
library(readxl)
(filename) <- read_excel("(file location).xlsx")
view(filename)
It prints out only the first sheet of the excel file, but I would appreciate it if it printed out all of them.
Also, is it better to use CSV files or xlsx?
thanks, guys.