找回密码
 注册
查看: 531|回复: 0

R语言 Rpad包 json()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 23:39:47 | 显示全部楼层 |阅读模式
json(Rpad)
json()所属R语言包:Rpad

                                        JSON (JavaScript Object Notation) generation
                                         JSON(JavaScript对象符号)代

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Write out a JSON structure of an R object.
写了一个JSON结构的R对象。


用法----------Usage----------


  json(x,...)



参数----------Arguments----------

参数:x
an object to convert to JSON.
转换为JSON对象。


参数:...
unused for now.
目前未使用。


Details

详细信息----------Details----------

JSON is Javascript Object Notation, a data-exchange format especially suited for passing to Javascript. Mapping from S to Javascript is as follows:
JSON是JavaScript对象表示法,尤其适合于传递到JavaScript的数据交换格式。映射从S到JavaScript的情况如下:

list (including data frames and other list objects) -> object character -> string array  -> array array with names -> object matrix -> 2-D array numeric -> number NULL -> null TRUE -> true FALSE -> false NA -> NaN
(包括数据框和其他列表对象) - >对象字符 - >字符串数组 - > array数组的名字 - >对象矩阵 - > 2-D阵列数字 - >数NULL  - >空TRUE - >真假 - >假NA  - >南

Other types are converted to character using as.character and output as character arrays or objects. Handling of NA's is problematic as Javascript doesn't have NA's. Strings are escaped. Currently, dimensioning in higher dimension arrays is lost. Object attributes are also ignored.
其他类型转换为字符使用as.character和输出的字符数组或对象。 JavaScript并没有NA NA的处理是有问题的。字符串逃过一劫。目前,在高维数组的尺寸都将丢失。对象属性也将被忽略。


值----------Value----------

A character string of class json. With automatic printing, the string is sent to the output (with cat).
一个类JSON字符串。具有自动打印,该字符串被发送到输出(用cat)。


(作者)----------Author(s)----------


Tom Short, EPRI, (<a href="mailto:tshort@epri.com">tshort@epri.com</a>)



参见----------See Also----------

See also http://www.json.org/
另请参阅http://www.json.org/


实例----------Examples----------


json( 1:10 )
## [1,2,3,4,5,6,7,8,9,10][#[1,2,3,4,5,6,7,8,9,10]]

json( c("apple", "line\nwith break") )
## ["apple","line\nwith break"][#[“苹果”,“行的\ n突破”]

json( c(a = 1, b = 5, c = 10) )
## {"a":1,"b":5,"c":10} [#{“A”:1,“B”,“C”:10}]

json( data.frame(a = 1:5, b = 6:10) )
## {"a":[1,2,3,4,5],"b":[6,7,8,9,10]}[#{“a”的:[1,2,3,4,5]中,“b”:[6,7,8,9,10]}]

json( list(a = 5, b = 1:10, c = data.frame(a = 1:2, b = 3:4)) )
## {"a":5,"b":[1,2,3,4,5,6,7,8,9,10],"c":{"a":[1,2],"b":[3,4]}}[#{“a”的:5中,“b”:[1,2,3,4,5,6,7,8,9,10],的“c”:{“一个”:[1,2],“ b“的:[3,4]}}]


转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-26 00:37 , Processed in 0.019835 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表