-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move arrow to Suggests to appease CRAN #20
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ | |
*.png | ||
*.rec | ||
*.csv | ||
*.Rcheck/* | ||
inst/tools/starvz_fast_csv_split | ||
starvz_*.tar.gz |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -246,7 +246,7 @@ While the ~arrow~ installation is straightforward in many systems | |
(pre-compiled binaries), it may be hard to obtain an installation with | ||
compression support in Debian systems. See [[https://issues.apache.org/jira/browse/ARROW-8556][this link for more | ||
information]]. A possible fix is do the following (install everything by | ||
hand [[https://cran.r-project.org/web/packages/arrow/vignettes/install.html][following a combination of these instructions]]). See below for | ||
hand [[https://arrow.apache.org/docs/r/articles/install.html][following a combination of these instructions]]). See below for | ||
details. | ||
|
||
*** Install the Apache Arrow C++ | ||
|
@@ -291,16 +291,12 @@ your R session: | |
|
||
#+begin_src R :results output :session :exports both | ||
library(arrow) | ||
arrow_available() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unrelated, but this isn't needed anymore: https://github.com/apache/arrow/blob/main/r/R/arrow-info.R#L78-L81 |
||
arrow::CompressionType | ||
#+end_src | ||
|
||
Confirm the output is something like this: | ||
|
||
#+BEGIN_EXAMPLE | ||
> arrow_available() | ||
[1] TRUE | ||
|
||
> arrow::CompressionType | ||
$UNCOMPRESSED | ||
[1] 0 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CRAN acknowledges this field but doesn't use it.
install.packages()
does not use it.remotes::install_*()
does use it, butpak::pak()
does not (yet) 🤷This PPPM repo is pinned to the current arrow release version. Alternatively, you can instead get the latest pre-release version of arrow by instead using
Additional_repositories: https://apache.r-universe.dev/
orAdditional_repositories: https://nightlies.apache.org/arrow/r
.