cbind2,Primers,ANY-method | R Documentation |
S4 cbind function for Primers.
S4 rbind function for Primers.
Slices a Primers data frame.
Stores data in a column of a Primers data frame.
## S4 method for signature 'Primers,ANY'
cbind2(x, y, ...)
## S4 method for signature 'Primers,ANY'
rbind2(x, y, ...)
## S4 method for signature 'Primers,ANY'
x[i, j, ..., drop = TRUE]
## S4 replacement method for signature 'Primers'
x$name <- value
x |
The Primers data frame. |
y |
Another data frame. |
... |
Other arguments to the slice operator. |
i |
The row index. |
j |
The column index. |
drop |
Simplify data frame? |
name |
The name of the column. |
value |
The values of the column. |
Cbinded primer data frame.
Rbinded primer data frame.
Subset of primer data frame.
Primer data frame with replaced column.
data(Ippolito)
primer.df <- cbind2(primer.df, seq_len(nrow(primer.df)))
data(Ippolito)
primer.df <- primer.df[1:2,]
data(Ippolito)
primer.df$Forward[1] <- "ctagcgggaccg"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.