data2plateformat: Renaming column and Row of Multiwell Data to Match Plate...

Description Usage Arguments Details Value Author(s) Examples

Description

Convert the data (example: readings from mutli well plate) to appropriate plate format by renaming column and rownames.

Usage

1
data2plateformat(data, platetype = 96)

Arguments

data

Matrix data to be formatted

platetype

Plate from which the data is coming. It can take 6, 12, 24, 96 and 384 values to represent the corresponding multi well plate.

Details

This function will label the columns and rows correctly to match the plate format, and discard the extras. For example, if the 'data' is coming from a a '96' well plate ('platetype'), the function will rename rows as A to H and columns as 1 to 12. Extra columns and rows of 'data' is discarded.

Value

A data frame with columns and rows matching (label and numbers) the mutli well plate format.

Author(s)

A.A Palakkan

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## loading data
data(rawdata24,rawdata96,rawdata384)

data2plateformat(rawdata24, platetype = 24)

## eg:2 spectrophotometer reading from 96 well plate
data2plateformat(rawdata96, platetype = 96)

## eg:3 spectrophotometer reading from 384 well plate
data2plateformat(rawdata384, platetype = 384)

bioassays documentation built on Oct. 23, 2020, 6:48 p.m.