1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
## RProtoBuf: R Interface to [Google Protocol Buffers](https://protobuf.dev/)
[](https://github.com/eddelbuettel/rprotobuf/actions?query=workflow%3Aci)
[](https://www.gnu.org/licenses/gpl-2.0.html)
[](https://cran.r-project.org/package=RProtoBuf)
[](https://cran.r-project.org/package=RProtoBuf)
[](https://www.r-pkg.org/pkg/RProtoBuf)
[](https://github.com/eddelbuettel/rprotobuf)
[](https://doi.org/10.18637/jss.v071.i02)
### What are Protocol Buffers?
A serialization format developed by [Google](https://www.google.com) and used
widely within Google, and by numerous other projects. Quoting from the
[official website](https://protobuf.dev/):
> Protocol buffers are Google's language-neutral, platform-neutral,
extensible mechanism for serializing structured data – think XML, but
smaller, faster, and simpler. You define how you want your data to be
structured once, then you can use special generated source code to easily
write and read your structured data to and from a variety of data streams and
using a variety of languages.
[Protocol Buffers](https://protobuf.dev/) natively
support C++, C#, Go, Java and Python. Many other languages are supported via
contributed extensions. This package adds support for
[R](https://www.r-project.org).
### Installation
You can either install from source via this repo, or install
[the CRAN package](https://cran.r-project.org/package=RProtoBuf)
the usual way from [R](https://www.r-project.org) via
```r
install.packages("RProtoBuf")
```
but do make sure you have the system requirements covered when building from
source.
Under Debian/Ubuntu you may need
```bash
sudo apt-get install protobuf-compiler libprotobuf-dev libprotoc-dev
```
with similar commands on other operating systems or distributions.
### Documentation
The package contains two pdf vignettes; the second one corresponds to
[our JSS paper](https://doi.org/10.18637/jss.v071.i02).
### Authors
Romain Francois, Dirk Eddelbuettel, Murray Stokely and Jeroen Ooms
### License
GPL (>= 2)
|