Description Usage Arguments Details Value Author(s) See Also
Given a text spread sheet f
and a pattern
to
be matched to its header (first line in the file), the function
returns the matching columns names or indices of the
corresponding data.frame
.
1 2 3 |
f |
A connection object or a |
pattern |
A |
... |
Additional parameters passed to |
n |
An |
The function starts by reading the first line of the file (or connection)
f
with readLines
, then splits it
according to the optional ...
arguments (it is important to
correctly specify strsplit
's split
character vector here)
and then matches pattern
to the individual column names using
grep
.
Similarly, getEcols
can be used to explore the column names and
decide for the appropriate pattern
value.
These functions are useful to check the parameters to be provided to
readMSnSet2
.
Depending on value
, the matching column names of
indices. In case of getEcols
, a character
of
column names.
Laurent Gatto
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.