diff options
author | tota <tota@FreeBSD.org> | 2011-09-04 20:53:56 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2011-09-04 20:53:56 +0800 |
commit | 8c8e15e36d9ceddd980c25a7a42b181770a2cb60 (patch) | |
tree | a234d41128c57d1711fa37397818595304b44ae9 /converters/Makefile | |
parent | c6de729ab8af7305c4e7f776fd044cd00e9c0105 (diff) | |
download | freebsd-ports-gnome-8c8e15e36d9ceddd980c25a7a42b181770a2cb60.tar.gz freebsd-ports-gnome-8c8e15e36d9ceddd980c25a7a42b181770a2cb60.tar.zst freebsd-ports-gnome-8c8e15e36d9ceddd980c25a7a42b181770a2cb60.zip |
- Add a new port: converters/R-cran-RJSONIO
This is a package that allows conversion to and from data in
Javascript object notation (JSON) format. This allows R objects to
be inserted into Javascript/ECMAScript/ActionScript code and allows
R programmers to read and convert JSON content to R objects. This
is an alternative to rjson package. That version was too slow for
converting large R objects to JSON and is not extensible, but a
very useful prototype. It is fast for parsing. This package uses
methods, vectorized operations and C code and callbacks to R functions
for deserializing JSON objects to R. Verison 0.4 of this package
uses a new native parser, implements the transformation code in C
and allocates memory efficiently (rather than concatenating because
of event driven parsing). The result is a significantly faster
parsing of large JSON documents.
WWW: http://cran.r-project.org/web/packages/RJSONIO/
Diffstat (limited to 'converters/Makefile')
-rw-r--r-- | converters/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/converters/Makefile b/converters/Makefile index fb7c73eaaac6..a546ec5e67bc 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -3,6 +3,7 @@ COMMENT = Character code converters + SUBDIR += R-cran-RJSONIO SUBDIR += aish SUBDIR += ascii2binary SUBDIR += asr10 |