This is an automated email from the ASF dual-hosted git repository.
thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-cookbook.git
The following commit(s) were added to refs/heads/main by this push:
new 672a81e Aesthetic improvements to intro page (#101)
672a81e is described below
commit 672a81e8afe2822af53fcb8db9a75ef48fb7c623
Author: Nic Crane <[email protected]>
AuthorDate: Wed Nov 3 12:49:32 2021 +0000
Aesthetic improvements to intro page (#101)
* Add arrow logo
* Use includegraphics and add link to dplyr
---
r/content/images/arrow.png | Bin 0 -> 21636 bytes
r/content/index.Rmd | 11 +++++++++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/r/content/images/arrow.png b/r/content/images/arrow.png
new file mode 100644
index 0000000..72104b0
Binary files /dev/null and b/r/content/images/arrow.png differ
diff --git a/r/content/index.Rmd b/r/content/index.Rmd
index 2d72408..8e3d4bc 100644
--- a/r/content/index.Rmd
+++ b/r/content/index.Rmd
@@ -1,7 +1,8 @@
---
-title: "Arrow Cookbook"
+title: Apache Arrow R Cookbook
params:
inline_test_output: FALSE
+
---
```{r setup, include = FALSE}
@@ -16,8 +17,14 @@ knitr::opts_template$set(test = list(
))
```
+
+
# Preface
+```{r, echo=FALSE}
+knitr::include_graphics("images/arrow.png")
+```
+
This cookbook aims to provide a number of recipes showing how to perform
common
tasks using arrow. This version of the cookbook works with arrow >= 6.0.0,
but
in future we will maintain different versions of the cookbook.
@@ -27,7 +34,7 @@ in future we will maintain different versions of the cookbook.
Apache Arrow is a cross-language development platform for in-memory analytics.
The arrow R package provides a low-level interface to much of the
functionality
available in the C++ implementation, as well as a higher-level interface to the
-compute functionality via an implementation of the dplyr API.
+compute functionality via an implementation of the
[dplyr](https://dplyr.tidyverse.org/) API.
## Alternative resources