~ubuntu-branches/debian/stretch/r-cran-rnexml/stretch

« back to all changes in this revision

Viewing changes to man/get_characters_list.Rd

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2016-04-08 13:58:39 UTC
  • Revision ID: package-import@ubuntu.com-20160408135839-ilq08z8v8p414qpn
Tags: upstream-2.0.6
ImportĀ upstreamĀ versionĀ 2.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
% Generated by roxygen2: do not edit by hand
 
2
% Please edit documentation in R/deprecated.R
 
3
\name{get_characters_list}
 
4
\alias{get_characters_list}
 
5
\title{Extract the character matrix}
 
6
\usage{
 
7
get_characters_list(nexml, rownames_as_col = FALSE)
 
8
}
 
9
\arguments{
 
10
\item{nexml}{nexml object (e.g. from read.nexml)}
 
11
 
 
12
\item{rownames_as_col}{option to return character matrix rownames
 
13
(with taxon ids) as it's own column in the data.frame. Default is FALSE
 
14
for compatibility with geiger and similar packages.}
 
15
}
 
16
\value{
 
17
the list of taxa
 
18
}
 
19
\description{
 
20
Extract the character matrix
 
21
}
 
22
\examples{
 
23
comp_analysis <- system.file("examples", "comp_analysis.xml", package="RNeXML")
 
24
nex <- nexml_read(comp_analysis)
 
25
get_characters_list(nex)
 
26
}
 
27