Skip to contents

[Superseded] Read .xlsx (Excel) file.

Usage

read_excel(filename, sheet, dtype = "float32")

Arguments

filename

File name to read from.

sheet

Name of sheet in Excel file.

dtype

Numpy data type.

Details

Assumes that the first columns stores the row names and the first row the column names.

Superseded

This function is superseded. Please use anndataR for reading and working with AnnData objects in R. See vignette("migration_to_anndataR", package = "anndata") for migration guidance.

Examples

if (FALSE) { # \dontrun{
ad <- read_excel("spreadsheet.xls")
} # }