-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28d8d80
commit ca9d7f0
Showing
4 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,3 +122,5 @@ r/LICENSE.md | |
r/NAMESPACE | ||
r/.Rbuildignore | ||
r/arrow.Rproj | ||
r/README.md | ||
r/README.Rmd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^README\.Rmd$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
output: github_document | ||
--- | ||
|
||
<!-- README.md is generated from README.Rmd. Please edit that file --> | ||
|
||
```{r setup, include = FALSE} | ||
knitr::opts_chunk$set( | ||
collapse = TRUE, | ||
comment = "#>", | ||
fig.path = "man/figures/README-", | ||
out.width = "100%" | ||
) | ||
``` | ||
# arrow | ||
|
||
Low level bindings to the C++ Apache Arrow library | ||
|
||
## Installation | ||
|
||
First install a release build of the C++ bindings to arrow. | ||
|
||
```shell | ||
git clone https://github.com/apache/arrow.git | ||
cd arrow/cpp && mkdir release && cd release | ||
|
||
# It is important to statically link to boost libraries | ||
cmake .. -DCMAKE_BUILD_TYPE=Release -DARROW_BOOST_USE_SHARED:BOOL=Off | ||
make install | ||
``` | ||
|
||
Then the R package: | ||
|
||
```r | ||
devtools::install_github("apache/arrow/r") | ||
``` | ||
|
||
## Example | ||
|
||
(not yet) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
<!-- README.md is generated from README.Rmd. Please edit that file --> | ||
|
||
# arrow | ||
|
||
Low level bindings to the C++ Apache Arrow library | ||
|
||
## Installation | ||
|
||
First install a release build of the C++ bindings to arrow. | ||
|
||
``` shell | ||
git clone https://github.com/apache/arrow.git | ||
cd arrow/cpp && mkdir release && cd release | ||
|
||
# It is important to statically link to boost libraries | ||
cmake .. -DCMAKE_BUILD_TYPE=Release -DARROW_BOOST_USE_SHARED:BOOL=Off | ||
make install | ||
``` | ||
|
||
Then the R package: | ||
|
||
``` r | ||
devtools::install_github("apache/arrow/r") | ||
``` | ||
|
||
## Example | ||
|
||
(not yet) |