You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 'SciViews::R' - Read and Write Data in Different Formats <ahref="https://www.sciviews.org/data.io"><imgsrc="man/figures/logo.png"align="right"height="138" /></a>
{data.io} main functions are `read()` and `write()`. They are made super-easy to import and export data in various formats in an unified way (they use functions from other packages under the hood like {haven}, {readr}, {readxl}, {writexl} ...). They care about metadata, in particular, meaningful labels and units for the variables. Also, a mechanism to preprocess data sets using sidecar files, and to translate them into various languages are provided for a subset of R packages data sets.
24
+
25
+
## Installation
26
+
27
+
{data.io} is not available from CRAN yet. You should install it from the [SciViews R-Universe](https://sciviews.r-universe.dev). To install this package and its dependencies, run the following command in R:
You can also install the latest development version. Make sure you have the {remotes} R package installed:
35
+
36
+
```r
37
+
install.packages("remotes")
38
+
```
39
+
40
+
Use `install_github()` to install the {data.io} package from Github (source from **main** branch will be recompiled on your machine):
41
+
42
+
```r
43
+
remotes::install_github("SciViews/data.io")
44
+
```
45
+
46
+
R should install all required dependencies automatically, and then it should compile and install {data.io}.
47
+
48
+
## Further explore {data.io}
49
+
50
+
You can get further help about this package this way. Make the {data.io} package available in your R session:
51
+
52
+
```r
53
+
library("data.io")
54
+
```
55
+
56
+
Get help about this package:
57
+
58
+
```r
59
+
library(help="data.io")
60
+
help("data.io-package")
61
+
vignette("data-io") # None is installed with install_github()
62
+
```
63
+
64
+
For further instructions, please, refer to these help pages at <https://www.sciviews.org/data.io/>.
65
+
66
+
## Code of Conduct
67
+
68
+
Please note that the {data.io} package is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
# Read and Write Data in Different Formats <ahref='https://www.sciviews.org/data.io'><imgsrc='man/figures/logo.png'align='right'height='139'/></a>
2
1
3
-
<!-- badges: start -->
2
+
<!-- README.md is generated from README.Rmd. Please edit that file -->
3
+
4
+
# ‘SciViews::R’ - Read and Write Data in Different Formats <ahref="https://www.sciviews.org/data.io"><imgsrc="man/figures/logo.png"align="right"height="138" /></a>
4
5
5
-
[](https://github.com/SciViews/data.io/actions/workflows/R-CMD-check.yaml)[](https://app.codecov.io/gh/SciViews/data.io?branch=main)[](https://cran.r-project.org/package=data.io)[](https://sciviews.r-universe.dev/data.io)[](https://opensource.org/licenses/MIT)[](https://lifecycle.r-lib.org/articles/stages.html#stable))
{data.io} main functions are `read()` and `write()`. They are made super-easy to import and export data in various formats in an unified way (they use functions from other packages under the hood like {haven}, {readr}, {readxl}, {writexl} ...). They care about metadata, in particular, meaningful labels and units for the variables. Also, a mechanism to preprocess data sets using sidecar files, and to translate them into various languages are provided for a subset of R packages data sets.
20
+
{data.io} main functions are `read()` and `write()`. They are made
21
+
super-easy to import and export data in various formats in an unified
22
+
way (they use functions from other packages under the hood like {haven},
23
+
{readr}, {readxl}, {writexl} …). They care about metadata, in
24
+
particular, meaningful labels and units for the variables. Also, a
25
+
mechanism to preprocess data sets using sidecar files, and to translate
26
+
them into various languages are provided for a subset of R packages data
27
+
sets.
10
28
11
29
## Installation
12
30
13
-
{data.io} is not available from CRAN yet. You should install it from the [SciViews R-Universe](https://sciviews.r-universe.dev). To install this package and its dependencies, run the following command in R:
31
+
{data.io} is not available from CRAN yet. You should install it from the
32
+
[SciViews R-Universe](https://sciviews.r-universe.dev). To install this
33
+
package and its dependencies, run the following command in R:
You can also install the latest development version. Make sure you have the {remotes} R package installed:
40
+
You can also install the latest development version. Make sure you have
41
+
the {remotes} R package installed:
21
42
22
43
```r
23
44
install.packages("remotes")
24
45
```
25
46
26
-
Use `install_github()` to install the {data.io} package from Github (source from **main** branch will be recompiled on your machine):
47
+
Use `install_github()` to install the {data.io} package from Github
48
+
(source from **main** branch will be recompiled on your machine):
27
49
28
50
```r
29
51
remotes::install_github("SciViews/data.io")
30
52
```
31
53
32
-
R should install all required dependencies automatically, and then it should compile and install {data.io}.
54
+
R should install all required dependencies automatically, and then it
55
+
should compile and install {data.io}.
33
56
34
57
## Further explore {data.io}
35
58
36
-
You can get further help about this package this way. Make the {data.io} package available in your R session:
59
+
You can get further help about this package this way. Make the {data.io}
60
+
package available in your R session:
37
61
38
62
```r
39
63
library("data.io")
@@ -47,8 +71,12 @@ help("data.io-package")
47
71
vignette("data-io") # None is installed with install_github()
48
72
```
49
73
50
-
For further instructions, please, refer to these help pages at <https://www.sciviews.org/data.io/>.
74
+
For further instructions, please, refer to these help pages at
75
+
<https://www.sciviews.org/data.io/>.
51
76
52
77
## Code of Conduct
53
78
54
-
Please note that the {data.io} package is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
79
+
Please note that the {data.io} package is released with a [Contributor
0 commit comments