TSquery(TSdbi)
TSquery()所属R语言包:TSdbi
Construct Time Series Data From a Database
构建时间序列数据库中的数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Construct a time series from a database
从数据库中构造一个时间序列
用法----------Usage----------
TSquery(select, dateField, table, where=NULL, frequency="monthly",
na.as=0, names=NULL, con=options()$connection)
参数----------Arguments----------
参数:select
character string used to construct query.
使用的字符串来构造查询。
参数:dateField
character string used to construct query.
使用的字符串来构造查询。
参数:table
character string used to construct query.
使用的字符串来构造查询。
参数:where
character string used to construct query.
使用的字符串来构造查询。
参数:frequency
character string used to specify frequency of the result (only "daily", "monthly" or "annual" are currently supported.
字符串用于指定频率的结果(仅“每日”,“每月”或“每年”,目前支持。
参数:na.as
value to be used to replace NAs in the returned series.
值被用来取代NA在返回的系列。
参数:names
optional vector of character strings to be used for the returned series. If not NULL it must have length equal to the number of series returned.
可选字符串向量被用于返回的系列。如果没有NULL它必须有长度等于返回的系列数。
参数:con
A database connection.
一个数据库连接。
Details
详细信息----------Details----------
This functions is unlike other functins in this package (and may eventually be moved to a separate package). It constructs a time series from a database (using a connection) and a query generated with the function arguments. An example query might be something like z<- TSquery(select="SUM(amount )", dateField="issue_date", table="term", where="term > 10", frequency="annual", con=con)
此功能是不像的其他functins在此包(并且最终可能会被转移到一个单独的包)。它构建了一个时间序列数据库(使用连接)和查询的功能参数。一个例子查询可能是类似 z<- TSquery(select="SUM(amount )", dateField="issue_date", table="term", where="term > 10", frequency="annual", con=con)
值----------Value----------
A time series or time series matrix.
时间序列或时间序列矩阵。
参见----------See Also----------
TSget,
TSget,
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|