0

I have some data from genetics researchers that needs to be analyzed. The issue is they gave me the data in an excel sheet that looks like a scientific journal. I need to pull certain cells (not a range of cells, but individual cells) from 89 different sheets within an excel file into a data frame in R. Any help would be appreciated.

  • 1
    [See here](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) on making an R question that folks can help with. That includes a sample of data, all necessary code, and a clear explanation of what you're trying to do and what hasn't worked. – camille Mar 18 '20 at 22:00

1 Answers1

0

save your file as .csv from excel

use read.csv2() using the parameters

row.names = c("M", "N", "O", "P", "Q"), 
col.names= c("X", "Y", "Z", "A","B"),
wisamb
  • 470
  • 3
  • 11
  • The OP said they need to pull cells from 89 different sheets. Saving as a CSV file would only include 1 sheet. This doesn't seem to answer the question (which is currently too broad to answer well anyway) – camille Mar 18 '20 at 22:02