Skip to content

Commit 3cc2bf9

Browse files
committed
Add install.packages() in README
1 parent 8bca03e commit 3cc2bf9

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,23 @@ R package that allows to convert databases of different formats (csv, SAS, SPSS,
1414

1515
## Installation
1616

17+
To install `parquetize` from CRAN :
18+
1719
``` r
18-
remotes::install_github("ddotta/parquetize")
20+
install.packages("parquetize")
1921
```
2022

23+
Or alternatively to install the development version from GitHub :
24+
2125
``` r
22-
library(parquetize)
26+
remotes::install_github("ddotta/parquetize")
2327
```
2428

25-
<details>
26-
<summary>For the French Insee agents who want to use the package with AUS</summary>
27-
28-
```r
29-
# install.packages(c("haven","arrow","curl","readr","dplyr","jsonlite","DBI","duckdb","RSQLite"))
30-
install.packages("parquetize",
31-
repos = "https://nexus.insee.fr/repository/r-local",
32-
type = "source")
33-
```
34-
</details>
29+
Then to load it :
3530

31+
``` r
32+
library(parquetize)
33+
```
3634

3735
## Why this package ?
3836

0 commit comments

Comments
 (0)