gsource(Zelig)
gsource()所属R语言包:Zelig
Read Data As a Space-Delimited Table
作为一个空间分隔的表中读取数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The gsource function allows you to read a space delimited table as a data frame. Unlike scan, you may use gsource in a sourceed file, and unlike read.table, you may use gsource to include a small (or large) data set in a file that also contains other commands.
gsource功能使您可以读取一个空间分隔的表的数据框。不同scan,您可以使用gsource在source版文件,而不像read.table,你可以使用gsource,包括一个小(或大)的数据在一个文件中还包含其他命令。
用法----------Usage----------
gsource(var.names = NULL, variables)
参数----------Arguments----------
参数:var.names
An optional vector of character strings representing the column names. By default, var.names = NULL.
一个可选的向量代表列名的字符串。默认情况下,var.names = NULL。
参数:variables
A single character string representing the data.
一个字符串,表示数据。
值----------Value----------
The output from gsource is a data frame, which you may save to an object in your workspace.
gsource的输出是一个数据框,您可以保存您的工作区中的对象。
(作者)----------Author(s)----------
Olivia Lau <<a href="mailtolau@fas.harvard.edu">olau@fas.harvard.edu</a>>
参见----------See Also----------
read.table, scan
read.table,scan
实例----------Examples----------
## Not run: [#不运行:]
data <- gsource(variables = "
1 2 3 4 5
6 7 8 9 10
3 4 5 1 3
6 7 8 1 9 ")
data <- gsource(var.names = "Vote Age Party", variables = "
0 23 Democrat
0 27 Democrat
1 45 Republican
1 65 Democrat ")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|