-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.Rmd
More file actions
36 lines (27 loc) · 715 Bytes
/
README.Rmd
File metadata and controls
36 lines (27 loc) · 715 Bytes
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
---
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%"
)
```
# sparksf
`sparksf` provides acces to spatial functions in [sparklyr](https://github.com/rstudio/sparklyr)
## Installation
You can install the development version of sparksf from [github](https://github.com/etiennebr/sparksf) with:
``` r
# install.packages("remotes")
remotes::install_github("etiennebr/sparksf")
```
## Example
```{r example, message=FALSE}
library(sparksf)
library(sparklyr)
library(dplyr)
sc <- spark_connect(master = "local")
```