tidy_plate: Reads and transforms microwell plate to a tibble

View source: R/tidy_plate.R

tidy_plateR Documentation

Reads and transforms microwell plate to a tibble

Description

Reads and transforms microwell plate to a tibble

Usage

tidy_plate(file, well_id = "well", sheet = 1)

Arguments

file

A character string containing the path to a csv or excel file. The format is described below.

well_id

A character string that will be the name for the well id column.

sheet

A character or integer indicating the excel sheet to be read.

Value

A tibble.

Examples

file_path <- system.file("extdata", "example_12_well.xlsx",
  package = "tidyplate"
)

data_12 <- tidy_plate(file = file_path)

head(data_12)

tidyplate documentation built on Oct. 9, 2024, 1:07 a.m.