Re: [R] Read excel specific column

2022-08-23 Thread Rui Barradas
Hello, The examples below use packages readxl and cellranger. # to read the 1st column of a xlsx file named filename: library(readxl) read_xlsx(filename, range = cellranger::cell_cols("A")) # to read 1st column of all files in filenames_vec # result is a list of data.frames each of them with

Re: [R] Read excel specific column

2022-08-23 Thread Andrew Simmons
I like package openxlsx, with the function openxlsx::read.xlsx() Another common package that people use readxl On Tue., Aug. 23, 2022, 7:51 p.m. Anas Jamshed, wrote: > I have .xlsx files with gene names in first column.How can read and load in > R? > > [[alternative HTML version

[R] Read excel specific column

2022-08-23 Thread Anas Jamshed
I have .xlsx files with gene names in first column.How can read and load in R? [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read