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
Copy file name to clipboardexpand all lines: README.Rmd
+6-12
Original file line number
Diff line number
Diff line change
@@ -28,21 +28,22 @@ knitr::opts_chunk$set(
28
28
Install the official version from CRAN:
29
29
30
30
```{r, eval=FALSE}
31
-
# install.packages("queuebee")
31
+
# install.packages("bitfield")
32
32
```
33
33
34
34
Install the latest development version from github:
35
35
36
36
```{r, eval=FALSE}
37
-
devtools::install_github("EhrmannS/queuebee")
37
+
devtools::install_github("luckinet/bitfield")
38
38
```
39
39
40
40
41
41
## Examples
42
42
43
43
```{r example}
44
+
library(bitfield)
45
+
44
46
library(dplyr, warn.conflicts = FALSE)
45
-
library(queuebee)
46
47
library(CoordinateCleaner)
47
48
library(stringr)
48
49
```
@@ -146,6 +147,8 @@ This example here shows how to compute quality bits for tabular data, but this t
146
147
To keep this package as simple as possible, no specific methods for rasters were developed, rasters instead need to be converted to tabular form and joined to the attributes or meta data that should be added to the QB, for example like this
@@ -181,11 +183,3 @@ Using the first two of those bits, we can represent 4 different states of an att
181
183
By growing a bitfield with this package, you decide which information is stored in which location, to represent not only data quality *per se*, but all sort of information and perhaps even meta data.
182
184
183
185
When preparing a publication that contains (FAIR) data, it can therefore be a good solution to provide not only the data table/layer, but also a *single* additional column in a table or raster layer that records all of those information, and the bitfield to decode the QB values.
0 commit comments