Description Usage Arguments Details Value Note Author(s) Examples
Simple wrapper function to easily import qPCR data from the clipboard (default) or tab-delimited text files.
In contrast to pcrimport
, this function has no enhanced formatting features, but is quick and
easy to use on data that has been pre-formatted, i.e. as in dataset reps
('Cycles' in the first column, all
remaining columns with sensible names.
1 2 | pcrimport2(file = "clipboard", sep = "\t", header = TRUE, quote = "",
dec = ".", colClasses = "numeric", ...)
|
file |
the name of the file which the data are to be read from (full path). |
sep |
the field separator character. |
header |
a logical value indicating whether the file contains the names of the variables as its first line. |
quote |
the set of quoting characters. |
dec |
the character used in the file to denote decimal points. |
colClasses |
character. A vector of classes to be assumed for the columns. |
... |
further arguments to be passed on to |
For a more detailed description of the arguments see read.table
.
A data frame containing a representation of the data in the file.
This function is the former pcrimport
from packages 1.3-3 downward.
See pcrimport
for an enhanced version offering formatting in the presence of reference dyes, columns/rows deletion,
transforming from wide to long format, and automatic batch analysis.
Andrej-Nikolai Spiess
1 2 3 4 5 6 7 8 9 10 | ## Paste some Excel data into the clipboard.
## Not run:
temp <- pcrimport2()
## End(Not run)
## From a tab-delimited text file.
## Not run:
temp <- pcrimport2("c:\temp\foo.txt")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.