I have an excel file with two sheets, A & B. I need to upload and use the data in Rstudio from sheet B ONLY. How can I do that?
I imported the file to the rstudio and I wrote this :
dat <- read_excel ("multi_anova.xlsx")
but when I try to use the data, such as (dat$id)
, it gives me all the excels's file id's, not only the B sheet.
How can I get the B sheet's ids ?