BrowseDB(DECIPHER)
BrowseDB()所属R语言包:DECIPHER
View A Database Table In A Web Browser
在Web浏览器查看一个数据库表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Opens an html file in a web browser to show the contents of a table in a database.
在网页浏览器打开一个HTML文件显示在数据库表中的内容。
用法----------Usage----------
BrowseDB(dbFile,
htmlFile = paste(tempdir(), "/db.html", sep = ""),
tblName = "DNA",
identifier = "",
limit = -1,
orderBy = "row_names",
maxChars = 50,
...)
参数----------Arguments----------
参数:dbFile
A SQLite connection object or a character string specifying the path to the database file.
一个SQLite连接对象或一个字符串指定的数据库文件的路径。
参数:htmlFile
Character string giving the location where the html file should be written.
字符串的位置应写html文件。
参数:tblName
Character string specifying the table to view.
字符串指定表查看。
参数:identifier
Optional character string used to narrow the search results to those matching a specific identifier. If "" then all identifiers are selected.
可选的字符串匹配一个特定的标识符用来缩小搜索结果。 “”如果所有标识符选择。
参数:limit
Number of results to display. The default (-1) does not limit the number of results.
结果显示的数目。默认(-1)没有限制的结果数量。
参数:orderBy
Character string giving the column name for sorting the results. Defaults to the order of entries in the database. Optionally can be followed by " ASC" or " DESC" to specify ascending (the default) or descending order.
字符串排序结果的列名。默认数据库中条目的顺序。可选可以遵循" ASC"或" DESC"指定升序(默认)或者降序。
参数:maxChars
Maximum number of characters to display in each column.
显示每列的最大字符数。
参数:...
Additional expressions to add as part of a where clause in the query. Further arguments provided in ... will be added to the query separated by " and " as part of the where clause.
其他表达式添加在查询的WHERE子句的一部分。提供进一步的论据...将被添加到" and "分开查询的where子句的一部分。
值----------Value----------
Creates a table containing all the fields of the database table and opens it in the web browser for easy viewing.
创建一个表,其中包含数据库表的所有字段和方便浏览的网页浏览器中打开它。
Returns TRUE if the html file was written successfully.
返回TRUE如果HTML文件被成功写入。
注意----------Note----------
If viewing a table containing sequences, the sequences are purposefully not shown in the output.
如果查看一个表包含序列,该序列是故意不显示在输出中。
作者(S)----------Author(s)----------
Erik Wright <a href="mailto ECIPHER@cae.wisc.edu">DECIPHER@cae.wisc.edu</a>
参见----------See Also----------
BrowseSequences
BrowseSequences
举例----------Examples----------
db <- system.file("extdata", "Bacteria_175seqs.sqlite", package="DECIPHER")
BrowseDB(db)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|